index.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <Banne :banneImageList="imgList.banneImageList" />
  3. <div class="video-information">
  4. <div class="conetnt">
  5. <div class="video-1">视频</div>
  6. <div>
  7. <p class="brief-introduction">云厂长视频简介</p>
  8. <p class="information">
  9. Hi,各位厂长们,这是我们的第一次会面,我想您一定会对我感到好奇,请花一分钟了解一下我吧~
  10. </p>
  11. <div class="btn-list">
  12. <button class="explanation btn">十分钟详解</button
  13. ><button class="btn">开始试用</button
  14. ><button class="btn">插件介绍</button>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. <SolveQuestion />
  20. <FunctionIntroduction />
  21. <Project />
  22. <WhyFactoryDirector />
  23. <UserSound />
  24. <Increase />
  25. <div class="start">
  26. <p class="start-title">免费试用云厂长的核心功能,开启您的智能制造之旅!</p>
  27. <button class="free">免费体验</button>
  28. </div>
  29. <Bottom />
  30. </template>
  31. <script lang="ts" setup>
  32. import { ref, reactive, onMounted, nextTick } from "vue";
  33. import { getBanneList } from "../../api/home";
  34. import Banne from "../../components/Banne/index.vue";
  35. import SolveQuestion from "./component/solveQuestion.vue";
  36. import Project from "./component/project.vue";
  37. import Bottom from "../../components/Layout/bottom.vue";
  38. import FunctionIntroduction from "./component/functionIntroduction.vue";
  39. import WhyFactoryDirector from "./component/whyFactoryDirector.vue";
  40. import UserSound from "./component/userSound.vue";
  41. import Increase from "./component/increase.vue";
  42. import { useRouter, useRoute } from "vue-router";
  43. import { ElMessage } from "element-plus";
  44. const imgList = reactive({
  45. //banne图需要的数据
  46. banneImageList: [],
  47. });
  48. //获取数据
  49. const getInfo = () => {
  50. getBanneList().then((res) => {
  51. let arr: any = [];
  52. res.data.map((item: any) => {
  53. console.log(item.is_jump);
  54. const obj = {
  55. imgUrl: item.image,
  56. isBtn: item.is_jump == 1 ? true : false,
  57. jump_url: item.jump_url,
  58. btnList: [
  59. {
  60. text: item.title,
  61. backgroundColor: "#0D0FFF",
  62. color: "#fff",
  63. },
  64. ],
  65. };
  66. arr.push(obj);
  67. });
  68. imgList.banneImageList = arr;
  69. console.log(imgList.banneImageList);
  70. });
  71. };
  72. onMounted(() => {
  73. getInfo();
  74. });
  75. </script>
  76. <style lang="less" scoped>
  77. .video-information {
  78. display: flex;
  79. justify-content: center;
  80. padding: 60px 0;
  81. .conetnt {
  82. display: flex;
  83. align-items: center;
  84. width: 60%;
  85. .video-1 {
  86. width: 480px;
  87. height: 270px;
  88. background-color: #ccc;
  89. margin-right: 60px;
  90. text-align: center;
  91. }
  92. .brief-introduction {
  93. font-size: 26px;
  94. margin-bottom: 16px;
  95. color: #222;
  96. }
  97. .information {
  98. font-size: 16px;
  99. color: #444;
  100. margin-bottom: 44px;
  101. }
  102. .btn {
  103. margin-right: 16px;
  104. width: 126px;
  105. height: 48px;
  106. color: #0d0fff;
  107. background-color: #e3e9ff;
  108. border: none;
  109. cursor: pointer;
  110. }
  111. .explanation {
  112. background-color: #0d0fff;
  113. color: #fff;
  114. }
  115. }
  116. }
  117. .start {
  118. height: 360px;
  119. width: 100%;
  120. background-image: url("../../assets/image/mianfeibg.png");
  121. background-repeat: no-repeat;
  122. background-size: 100% 100%;
  123. .start-title {
  124. text-align: center;
  125. font-size: 50px;
  126. font-weight: 600;
  127. padding-top: 100px;
  128. }
  129. .free {
  130. width: 152px;
  131. height: 52px;
  132. border: none;
  133. background-color: #0d0fff;
  134. color: #fff;
  135. display: block;
  136. margin: 70px auto;
  137. font-size: 16px;
  138. }
  139. }
  140. </style>