xuxueyang
2024-07-25 e998d551df1c96572838bbf661be938aa79d1be8
pages/home/components/home-category.vue
@@ -5,7 +5,7 @@
         <view class="t2">当前在售123435扎</view>
      </view>
      <view class="m-t-12 flex">
         <view class="item" v-for="(item,index) of list" :key="index">
      <view class="item" v-for="(item,index) of list" :key="index" @click.stop="toList(item)">
            <image class="icon img100" :src="item.url"></image>
            <view>{{item.name || '-'}}</view>
         </view>
@@ -16,10 +16,29 @@
<script>
   export default {
      beforeMount() {
         for (var i = 0; i < 10; i++) {
    // for (var i = 0; i < 10; i++) {
    //    this.list.push({
    //       'url': 'https://hmy-flower.oss-cn-shanghai.aliyuncs.com/e2/e2ee2fa7cdef458ba748261305edc57435549b9113807b6fbbfd4bfa456334d.png',
    //       'name': '玫瑰'
    //    })
    // }
    this.$http.request('get', '/api/customer/flower/category/tree', {}).then(res => {
      var data = res.data
      this.list = []
      var arr = data || []
      for (let i = 0; i < arr.length && i < 10; i++) {
            this.list.push({
               'url': 'https://hmy-flower.oss-cn-shanghai.aliyuncs.com/e2/e2ee2fa7cdef458ba748261305edc57435549b9113807b6fbbfd4bfa456334d.png',
               'name': '玫瑰'
          id: arr[i].id,
          name: arr[i].name,
          url: arr[i].imageUrl
        })
      }
    })
  },
  methods: {
    toList(item){
      uni.navigateTo({
        url:'//sub_pages/customer/trade/list?categoryId='+item.id
            })
         }
      },
@@ -42,6 +61,7 @@
         line-height: 40rpx;
         min-width: 20%;
         margin-bottom: 28rpx;
         .icon {
            width: 94rpx;
            height: 94rpx;