1
xuxueyang
2024-07-26 3d1e8016516b1b27def77871c8644be363d4fb88
sub_pages/customer/self/collect.vue
@@ -16,8 +16,7 @@
      </view>
      <view class="flex1" @click.stop="level_show=true">
        {{ this.query.levelStr || '级别' }}
        <image src="../../../static/common/icon-arrow-down.png" class="icon-arrow-down"
        ></image>
            <image src="../../../static/common/icon-arrow-down.png" class="icon-arrow-down"></image>
      </view>
    </view>
    <no-data v-if="!list||list.length===0" style="width: 100%;"></no-data>
@@ -76,10 +75,14 @@
        columnStr: '',
      },
      level_show: false,
      level_columns: [[]],
            level_columns: [
               []
            ],
      order_show: false,
      order_columns: [[]]
            order_columns: [
               []
            ]
    }
  },
  onLoad() {
@@ -113,6 +116,12 @@
    })
  },
  methods: {
         async submitShopping(dto) {
            //提交到购物车中
            this.$message.showLoading()
            await this.$store.dispatch('submitShopping', dto);
            this.$message.hideLoading()
         },
    select_level(e) {
      this.level_show = false
      this.query.levelStr = e.value[0].label
@@ -154,5 +163,4 @@
    }
  }
}
</style>