|
@@ -2,14 +2,14 @@
|
|
|
<Banne :banneImageList="imgList.banneImageList" />
|
|
|
<div class="video-information">
|
|
|
<div class="conetnt">
|
|
|
- <div class="video-1">视频</div>
|
|
|
+ <video class="video-1" :src="introduceVideo.introduction_video"></video>
|
|
|
<div>
|
|
|
<p class="brief-introduction">云厂长视频简介</p>
|
|
|
<p class="information">
|
|
|
- Hi,各位厂长们,这是我们的第一次会面,我想您一定会对我感到好奇,请花一分钟了解一下我吧~
|
|
|
+ {{ introduceVideo.introduction_content }}
|
|
|
</p>
|
|
|
<div class="btn-list">
|
|
|
- <button class="explanation btn">十分钟详解</button
|
|
|
+ <button class="explanation btn" @click="toDocument">十分钟详解</button
|
|
|
><button class="btn">开始试用</button
|
|
|
><button class="btn">插件介绍</button>
|
|
|
</div>
|
|
@@ -26,11 +26,13 @@
|
|
|
<p class="start-title">免费试用云厂长的核心功能,开启您的智能制造之旅!</p>
|
|
|
<button class="free">免费体验</button>
|
|
|
</div>
|
|
|
+ <AnchorPoint />
|
|
|
<Bottom />
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
import { ref, reactive, onMounted, nextTick } from "vue";
|
|
|
import { getBanneList } from "../../api/home";
|
|
|
+import { config } from "../../api/config";
|
|
|
import Banne from "../../components/Banne/index.vue";
|
|
|
import SolveQuestion from "./component/solveQuestion.vue";
|
|
|
import Project from "./component/project.vue";
|
|
@@ -41,14 +43,30 @@ import UserSound from "./component/userSound.vue";
|
|
|
import Increase from "./component/increase.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({
|
|
|
//banne图需要的数据
|
|
|
banneImageList: [],
|
|
|
});
|
|
|
|
|
|
+const introduceVideo: any = ref({});
|
|
|
+
|
|
|
+const toDocument = () => {
|
|
|
+ router.push({
|
|
|
+ path: "/bookinfo",
|
|
|
+ query: {
|
|
|
+ name: "产品文档",
|
|
|
+ index: 0,
|
|
|
+ id: 1,
|
|
|
+ },
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
//获取数据
|
|
|
const getInfo = () => {
|
|
|
+ //获取轮播图
|
|
|
getBanneList().then((res) => {
|
|
|
let arr: any = [];
|
|
|
res.data.map((item: any) => {
|
|
@@ -71,6 +89,11 @@ const getInfo = () => {
|
|
|
imgList.banneImageList = arr;
|
|
|
console.log(imgList.banneImageList);
|
|
|
});
|
|
|
+ //获取简介视频
|
|
|
+ config({ module: "cms" }).then((res) => {
|
|
|
+ console.log(res);
|
|
|
+ introduceVideo.value = res.data;
|
|
|
+ });
|
|
|
};
|
|
|
|
|
|
onMounted(() => {
|
|
@@ -89,7 +112,6 @@ onMounted(() => {
|
|
|
.video-1 {
|
|
|
width: 480px;
|
|
|
height: 270px;
|
|
|
- background-color: #ccc;
|
|
|
margin-right: 60px;
|
|
|
text-align: center;
|
|
|
}
|