| | |
| | | <text class="currency">¥</text> |
| | | <text class="amount">{{ item.price }}</text> |
| | | </view> |
| | | <text class="book-count">预约量{{ item.bookCount }}+</text> |
| | | <text class="book-count">预约量{{ item.bookCount || 0 }}</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | |
| | | |
| | | |
| | | //点击重置按钮 |
| | | resetChoosedList() { |
| | | this.choosedList = [] |
| | | this.$refs.selectPopup.close() |
| | | }, |
| | | resetChoosedList() { |
| | | this.choosedList = [] |
| | | this.categoryId = "" // 如果你需要也把筛选条件清空 |
| | | this.getList() // 重新获取数据 |
| | | this.$refs.selectPopup.close() |
| | | }, |
| | | //点击确定按钮 |
| | | submit() { |
| | | if (this.choosedList.length == 1) { |