functionIntroduction.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <div class="Introduction animate__animated animate__bounceInUp">
  3. <p class="Introduction-title">云厂长功能介绍</p>
  4. <p class="introduction-information">
  5. 多种功能增强包,不同的版本功能,智能的OA系统,总有一款适合您
  6. </p>
  7. <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
  8. <el-tab-pane v-for="item in funData.introductionList" :key="item.id" :label="item.title" :name="item.title" >
  9. <div class="demo-content">
  10. <div>
  11. <p class="demo-title">{{item.content}} <p class="heng"></p></p>
  12. <div v-for="(items,indexs) in item.items" :key="items.id" class="select-list " :class="'list-'+items.id"
  13. @mouseenter="handleMouseEnter('list-'+items.id,items)"
  14. @mouseleave="handleMouseLeave('list-'+items.id)">
  15. <p class="select-title">{{items.title}}</p>
  16. <p class="selext-content">
  17. {{items.content}}
  18. </p>
  19. </div>
  20. </div>
  21. <img
  22. class="demo-img"
  23. :src="itemUrl"
  24. alt=""
  25. />
  26. </div>
  27. </el-tab-pane>
  28. </el-tabs>
  29. <div></div>
  30. </div>
  31. </template>
  32. <script setup lang="ts">
  33. import "animate.css";
  34. import { ref,reactive,onMounted } from "vue";
  35. import { getIntroduction } from '../../../api/home'
  36. import type { TabsPaneContext } from "element-plus";
  37. const activeName = ref("");
  38. const itemUrl = ref('')
  39. interface FunType {
  40. introductionList:any
  41. }
  42. const funData = reactive<FunType>({
  43. introductionList:[]
  44. })
  45. const handleClick = (tab: TabsPaneContext, event: Event) => {
  46. };
  47. const handleMouseEnter = (str:string,item:any)=>{
  48. console.log(str)
  49. const railDom: any = document.getElementsByClassName(str);
  50. railDom[0].style.borderColor = "#0D0FFF";
  51. itemUrl.value = item.image
  52. }
  53. const handleMouseLeave = (str:string)=>{
  54. const railDom: any = document.getElementsByClassName(str);
  55. railDom[0].style.borderColor = "rgba(151, 151, 151, 0.1)";
  56. }
  57. //获取数据
  58. const getInfo = ()=>{
  59. getIntroduction().then(res=>{
  60. funData.introductionList = res.data
  61. activeName.value = res.data[0].title
  62. itemUrl.value = res.data[0].items[0].image
  63. })
  64. }
  65. onMounted(()=>{
  66. getInfo()
  67. })
  68. </script>
  69. <style scoped lang="less">
  70. .demo-tabs > .el-tabs__content {
  71. padding: 32px;
  72. color: #0d0fff;
  73. font-size: 32px;
  74. font-weight: 600;
  75. }
  76. .Introduction {
  77. padding: 80px 0 84px;
  78. .Introduction-title {
  79. font-size: 36px;
  80. font-weight: 600;
  81. color: #222;
  82. text-align: center;
  83. }
  84. .introduction-information {
  85. text-align: center;
  86. font-size: 16px;
  87. color: #525967;
  88. margin-top: 12px;
  89. margin-bottom: 60px;
  90. }
  91. }
  92. .demo-content {
  93. display: flex;
  94. width: 60%;
  95. margin: 0 auto;
  96. margin-top: 50px;
  97. .demo-title {
  98. font-size: 24px;
  99. font-weight: 600;
  100. color: #1a1a1a;
  101. padding-bottom: 17px;
  102. border-bottom: 1px solid rgba(151, 151, 151, 0.1);
  103. margin-bottom: 40px;
  104. position: relative;
  105. .heng{
  106. position: absolute;
  107. bottom: 0;
  108. left: 0;
  109. width: 22px;
  110. height: 3px;
  111. background-color: #222;
  112. }
  113. }
  114. .select-list{
  115. border-left: 1px solid rgba(151, 151, 151, 0.1);
  116. padding-left: 18px;
  117. padding-bottom: 20px;
  118. .select-title{
  119. color: #1a1a1a;
  120. font-size: 16px;
  121. font-weight: 600;
  122. margin-bottom: 10px;
  123. }
  124. .selext-content{
  125. color: #4E5969;
  126. font-size: 14px;
  127. // margin-bottom: 20px;
  128. }
  129. }
  130. .demo-img {
  131. width: 680px;
  132. height: 480px;
  133. }
  134. }
  135. :deep(.el-tabs__item) {
  136. font-size: 18px;
  137. width: 300px;
  138. text-align: center;
  139. }
  140. :deep(.is-active) {
  141. color: #0d0fff;
  142. }
  143. :deep(.el-tabs__active-bar) {
  144. background-color: #0d0fff;
  145. }
  146. :deep(.el-tabs__nav) {
  147. width: 60%;
  148. justify-content: space-around;
  149. float: none;
  150. margin: 0 auto;
  151. }
  152. :deep(.el-tabs__item:hover) {
  153. color: #0d0fff;
  154. cursor: pointer;
  155. }
  156. </style>