|
@@ -2,7 +2,14 @@
|
|
|
<Banne :banneImageList="imgList.banneImageList" />
|
|
|
<div class="video-information">
|
|
|
<div class="conetnt">
|
|
|
- <video class="video-1" :src="introduceVideo.introduction_video"></video>
|
|
|
+ <video
|
|
|
+ class="video-1"
|
|
|
+ :src="introduceVideo.introduction_video"
|
|
|
+ controls
|
|
|
+ autoplay
|
|
|
+ muted
|
|
|
+ loop
|
|
|
+ ></video>
|
|
|
<div>
|
|
|
<p class="brief-introduction">云厂长视频简介</p>
|
|
|
<p class="information">
|
|
@@ -10,8 +17,8 @@
|
|
|
</p>
|
|
|
<div class="btn-list">
|
|
|
<button class="explanation btn" @click="toDocument">十分钟详解</button
|
|
|
- ><button class="btn">开始试用</button
|
|
|
- ><button class="btn">插件介绍</button>
|
|
|
+ ><button class="btn" @click="startTrial">开始试用</button
|
|
|
+ ><button class="btn" @click="toPlugIn">插件介绍</button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -21,12 +28,14 @@
|
|
|
<Project />
|
|
|
<WhyFactoryDirector />
|
|
|
<UserSound />
|
|
|
- <Increase />
|
|
|
+ <Increase @contant="contant" />
|
|
|
<div class="start">
|
|
|
<p class="start-title">免费试用云厂长的核心功能,开启您的智能制造之旅!</p>
|
|
|
- <button class="free">免费体验</button>
|
|
|
+ <button class="free" @click="startTrial">免费体验</button>
|
|
|
</div>
|
|
|
<AnchorPoint />
|
|
|
+ <Form :dialogTableVisible2="dialogTableVisible2" @clos="close" />
|
|
|
+ <ContactExpert :dialogTableVisible="dialogTableVisible" @close="close" />
|
|
|
<Bottom />
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
@@ -41,9 +50,11 @@ import FunctionIntroduction from "./component/functionIntroduction.vue";
|
|
|
import WhyFactoryDirector from "./component/whyFactoryDirector.vue";
|
|
|
import UserSound from "./component/userSound.vue";
|
|
|
import Increase from "./component/increase.vue";
|
|
|
+import Form from "../../components/Form/from.vue";
|
|
|
+import AnchorPoint from "../../components/anchorPoint/index.vue";
|
|
|
+import ContactExpert from "./component/contactExpert.vue";
|
|
|
import { useRouter, useRoute } from "vue-router";
|
|
|
import { ElMessage } from "element-plus";
|
|
|
-import AnchorPoint from "../../components/anchorPoint/index.vue";
|
|
|
const router = useRouter();
|
|
|
|
|
|
const imgList = reactive({
|
|
@@ -51,8 +62,12 @@ const imgList = reactive({
|
|
|
banneImageList: [],
|
|
|
});
|
|
|
|
|
|
+const dialogTableVisible2 = ref(false);
|
|
|
+const dialogTableVisible = ref(false);
|
|
|
+
|
|
|
const introduceVideo: any = ref({});
|
|
|
|
|
|
+//跳转产品文档
|
|
|
const toDocument = () => {
|
|
|
router.push({
|
|
|
path: "/bookinfo",
|
|
@@ -64,22 +79,47 @@ const toDocument = () => {
|
|
|
});
|
|
|
};
|
|
|
|
|
|
+//跳转插件
|
|
|
+const toPlugIn = () => {
|
|
|
+ router.push({
|
|
|
+ path: "/product",
|
|
|
+ query: {
|
|
|
+ index: 3,
|
|
|
+ },
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+//试用
|
|
|
+const startTrial = () => {
|
|
|
+ dialogTableVisible2.value = true;
|
|
|
+};
|
|
|
+
|
|
|
+//联系产品专家
|
|
|
+const contant = () => {
|
|
|
+ dialogTableVisible.value = true;
|
|
|
+};
|
|
|
+
|
|
|
+//关闭弹窗
|
|
|
+const close = () => {
|
|
|
+ dialogTableVisible2.value = false;
|
|
|
+ dialogTableVisible.value = false;
|
|
|
+};
|
|
|
+
|
|
|
//获取数据
|
|
|
const getInfo = () => {
|
|
|
//获取轮播图
|
|
|
- getBanneList().then((res) => {
|
|
|
+ getBanneList("index").then((res) => {
|
|
|
let arr: any = [];
|
|
|
res.data.map((item: any) => {
|
|
|
- console.log(item.is_jump);
|
|
|
const obj = {
|
|
|
imgUrl: item.image,
|
|
|
isBtn: item.is_jump == 1 ? true : false,
|
|
|
- jump_url: item.jump_url,
|
|
|
btnList: [
|
|
|
{
|
|
|
text: item.title,
|
|
|
backgroundColor: "#0D0FFF",
|
|
|
color: "#fff",
|
|
|
+ jump_url: item.jump_url,
|
|
|
},
|
|
|
],
|
|
|
};
|
|
@@ -87,11 +127,9 @@ const getInfo = () => {
|
|
|
});
|
|
|
|
|
|
imgList.banneImageList = arr;
|
|
|
- console.log(imgList.banneImageList);
|
|
|
});
|
|
|
//获取简介视频
|
|
|
config({ module: "cms" }).then((res) => {
|
|
|
- console.log(res);
|
|
|
introduceVideo.value = res.data;
|
|
|
});
|
|
|
};
|