| | |
| | | </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> |
| | |
| | | columnStr: '', |
| | | }, |
| | | level_show: false, |
| | | level_columns: [[]], |
| | | level_columns: [ |
| | | [] |
| | | ], |
| | | |
| | | order_show: false, |
| | | order_columns: [[]] |
| | | order_columns: [ |
| | | [] |
| | | ] |
| | | } |
| | | }, |
| | | onLoad() { |
| | |
| | | }) |
| | | }, |
| | | 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 |
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | </style> |