diff --git a/public/img/chahua.png b/public/img/chahua.png new file mode 100644 index 0000000..1958a0b Binary files /dev/null and b/public/img/chahua.png differ diff --git a/public/img/qiye.png b/public/img/qiye.png new file mode 100644 index 0000000..641b8fc Binary files /dev/null and b/public/img/qiye.png differ diff --git a/public/img/wuxu.png b/public/img/wuxu.png new file mode 100644 index 0000000..71beb64 Binary files /dev/null and b/public/img/wuxu.png differ diff --git a/public/img/xuanchuan.mp4 b/public/img/xuanchuan.mp4 new file mode 100644 index 0000000..cb4d755 Binary files /dev/null and b/public/img/xuanchuan.mp4 differ diff --git a/public/img/yici.png b/public/img/yici.png new file mode 100644 index 0000000..7c695d5 Binary files /dev/null and b/public/img/yici.png differ diff --git a/src/views/withmind/assets/img/chahua.png b/src/views/withmind/assets/img/chahua.png new file mode 100644 index 0000000..1958a0b Binary files /dev/null and b/src/views/withmind/assets/img/chahua.png differ diff --git a/src/views/withmind/assets/img/qiye.png b/src/views/withmind/assets/img/qiye.png new file mode 100644 index 0000000..641b8fc Binary files /dev/null and b/src/views/withmind/assets/img/qiye.png differ diff --git a/src/views/withmind/assets/img/wuxu.png b/src/views/withmind/assets/img/wuxu.png new file mode 100644 index 0000000..71beb64 Binary files /dev/null and b/src/views/withmind/assets/img/wuxu.png differ diff --git a/src/views/withmind/assets/img/xuanchuan.mp4 b/src/views/withmind/assets/img/xuanchuan.mp4 new file mode 100644 index 0000000..cb4d755 Binary files /dev/null and b/src/views/withmind/assets/img/xuanchuan.mp4 differ diff --git a/src/views/withmind/assets/img/yici.png b/src/views/withmind/assets/img/yici.png new file mode 100644 index 0000000..7c695d5 Binary files /dev/null and b/src/views/withmind/assets/img/yici.png differ diff --git a/src/views/withmind/assets/index.rem.css b/src/views/withmind/assets/index.rem.css index edc3696..8628dcc 100644 --- a/src/views/withmind/assets/index.rem.css +++ b/src/views/withmind/assets/index.rem.css @@ -2094,3 +2094,8 @@ html { .text_nav_practice.nav-active { color: rgba(25, 140, 255, 1) !important; } + +/* footer 创作平台列 — AI 创作项向左挪 1rem(只这一项,不影响 知识库/Agent) */ +.text_41_ai_create { + margin-left: -1rem; +} diff --git a/src/views/withmind/index.vue b/src/views/withmind/index.vue index 8f348c0..6fd692b 100644 --- a/src/views/withmind/index.vue +++ b/src/views/withmind/index.vue @@ -181,7 +181,7 @@
- 新媒体应用: + AI创作: 让传播精准触达
@@ -239,6 +239,73 @@ 24小时新员工培训导师
+ +
+
+ + 无需设计功底,一键生成品牌视觉 +
+
+
+ +
+
+ 一次可创作多图文/视频 +
+
+ + 企业品牌海报 +
+
+
+ +
+
+ 企业宣传视频 +
+
+ + + +
+
+ + +
+
+
+
@@ -423,13 +490,14 @@
知识库 Agent - 新媒体应用 + AI创作
获取秘钥 @@ -557,11 +625,18 @@ export default { return { constants: {}, activeSection: 'top', - scrollLocked: false + scrollLocked: false, + videoModalOpen: false, + videoModalSrc: '', + videoModalKey: '' }; }, mounted() { this.initScrollSpy(); + window.addEventListener('keydown', this.onModalKeydown); + }, + beforeDestroy() { + window.removeEventListener('keydown', this.onModalKeydown); }, methods: { initScrollSpy() { @@ -620,6 +695,45 @@ export default { } setTimeout(() => this.scrollTo('about'), 200); }, + openVideo(key) { + // 视频文件与封面映射集中放这里,以后加视频就在这加分支 + const map = { + xuanchuan: { + src: '/img/xuanchuan.mp4' + } + }; + const cfg = map[key]; + if (!cfg) return; + this.videoModalKey = key; + this.videoModalSrc = cfg.src; + this.videoModalOpen = true; + // 锁住页面滚动,避免背景跟着滚 + document.body.style.overflow = 'hidden'; + // 等