whyFactoryDirector.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <div class="factory-director animate__animated animate__bounceInUp">
  3. <p class="why">为什么选择云厂长?</p>
  4. <p class="factory-information">
  5. 智能生产,值得信赖;技术驱动,创新引领,助力制造业企业实现数字化转型
  6. </p>
  7. <div class="select-list">
  8. <div
  9. class="select-item"
  10. v-for="item in selectData.numList"
  11. :key="item.id"
  12. >
  13. <img class="select-img" :src="item.image" alt="" />
  14. <div class="information">
  15. <p>
  16. <span class="num">{{ item.number }}</span
  17. ><span class="plus">+</span>
  18. </p>
  19. <p class="introduce">{{ item.title }}</p>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. </template>
  25. <script setup lang="ts">
  26. import "animate.css";
  27. import { reactive, onMounted } from "vue";
  28. import { whySelect } from "../../../api/home";
  29. interface SelectType {
  30. numList: any;
  31. }
  32. const selectData = reactive<SelectType>({
  33. numList: [],
  34. });
  35. const getInfo = () => {
  36. whySelect().then((res) => {
  37. selectData.numList = res.data;
  38. });
  39. };
  40. onMounted(() => {
  41. getInfo();
  42. });
  43. </script>
  44. <style scoped lang="less">
  45. .factory-director {
  46. padding: 80px 0 88px;
  47. .why {
  48. text-align: center;
  49. font-size: 36px;
  50. font-weight: 600;
  51. margin-bottom: 12px;
  52. }
  53. .factory-information {
  54. font-size: 16px;
  55. color: #525967;
  56. text-align: center;
  57. }
  58. .select-list {
  59. display: flex;
  60. justify-content: space-around;
  61. width: 70%;
  62. margin: 0 auto;
  63. margin-top: 64px;
  64. .select-item {
  65. display: flex;
  66. align-items: center;
  67. .select-img {
  68. width: 74px;
  69. height: 90px;
  70. margin-right: 16px;
  71. }
  72. .num {
  73. font-size: 60px;
  74. font-weight: 600;
  75. color: #444444;
  76. }
  77. .plus {
  78. font-size: 20px;
  79. color: #444444;
  80. }
  81. .introduce {
  82. font-size: 14px;
  83. color: #444444;
  84. }
  85. }
  86. }
  87. }
  88. </style>