鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.3 KiB

  1. <template>
  2. <view class="category">
  3. <view class="flex flex-column category-item" v-for="item in categoryOptions" :key="item.id">
  4. <image class="img" :src="item.icon" mode="widthFix"></image>
  5. <view>{{ item.label }}</view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. categoryOptions: [],
  14. }
  15. },
  16. created() {
  17. this.getData()
  18. },
  19. methods: {
  20. getData() {
  21. // todo: fetch
  22. this.categoryOptions = [
  23. {
  24. id: '001',
  25. icon: '/static/image/temp-1.png',
  26. label: '主题研学',
  27. },
  28. {
  29. id: '002',
  30. icon: '/static/image/temp-2.png',
  31. label: '社会实践',
  32. },
  33. {
  34. id: '003',
  35. icon: '/static/image/temp-3.png',
  36. label: '研学交流',
  37. },
  38. {
  39. id: '004',
  40. icon: '/static/image/temp-4.png',
  41. label: '周末研学',
  42. },
  43. {
  44. id: '005',
  45. icon: '/static/image/temp-5.png',
  46. label: '假期专项',
  47. },
  48. {
  49. id: '006',
  50. icon: '/static/image/temp-6.png',
  51. label: '研学日记',
  52. },
  53. {
  54. id: '007',
  55. icon: '/static/image/temp-7.png',
  56. label: '研学政策',
  57. },
  58. {
  59. id: '008',
  60. icon: '/static/image/temp-8.png',
  61. label: '本地研学',
  62. },
  63. {
  64. id: '009',
  65. icon: '/static/image/temp-9.png',
  66. label: '公司动态',
  67. },
  68. {
  69. id: '010',
  70. icon: '/static/image/temp-10.png',
  71. label: '全部',
  72. },
  73. ]
  74. },
  75. },
  76. }
  77. </script>
  78. <style scoped lang="scss">
  79. .category {
  80. margin-top: 158rpx;
  81. width: 100%;
  82. padding: 24rpx 32rpx;
  83. box-sizing: border-box;
  84. display: grid;
  85. grid-template-columns: repeat(5, 1fr);
  86. column-gap: 16rpx;
  87. row-gap: 4rpx;
  88. background: linear-gradient(#DAF3FF, #FBFEFF 50rpx, #FBFEFF);
  89. border: 2rpx solid #FFFFFF;
  90. border-radius: 32rpx;
  91. &-item {
  92. padding: 16rpx 0;
  93. row-gap: 12rpx;
  94. font-size: 22rpx;
  95. color: #9B9B9B;
  96. .img {
  97. width: 72rpx;
  98. height: auto;
  99. }
  100. }
  101. }
  102. </style>