From ded34e37fca5e2e05e17693d2524c3d664ebf017 Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期三, 14 八月 2024 11:20:18 +0800
Subject: [PATCH] update 搜索历史
---
sub_pages/customer/shopping/shopping.vue | 106 ++++++++++++++++++++++++++++++++++++++++++----------
1 files changed, 85 insertions(+), 21 deletions(-)
diff --git a/sub_pages/customer/shopping/shopping.vue b/sub_pages/customer/shopping/shopping.vue
index a9f17ef..766613d 100644
--- a/sub_pages/customer/shopping/shopping.vue
+++ b/sub_pages/customer/shopping/shopping.vue
@@ -22,13 +22,14 @@
{{ item.supplierName || '-' }}
</view>
<u-divider></u-divider>
- <view v-for="(dto,j) of item.flowerList" :key="j">
+ <view v-for="(dto,j) of item.flowerList" :key="dto.id">
<u-divider v-if="j>0"></u-divider>
<u-swipe-action>
- <u-swipe-action-item :options="options1" @click="(e)=>{clickSwipeButton(dto)}">
+ <u-swipe-action-item :options="options1" @click="(e)=>{clickSwipeButton(dto,true)}">
<view class="item-each flex">
<radio :checked="ids.indexOf(dto.id)>=0" @click="changeItem(dto,'flower')"></radio>
- <image class="img img100 m-r-6 br-4" :src="dto.url||dto.cover"></image>
+ <image class="img img100 m-r-6 br-4" :class="[!dto.stock?'component-stock-zero':'']"
+ :src="dto.url||dto.cover"></image>
<view class="flex1">
<view class="title" @click.stop="toDetail(dto)"><span class="m-r-5"
style="display: inline-block;">{{dto.categoryStr||''}}</span><span
@@ -46,7 +47,8 @@
<view class="button-icons flex m-l-a m-r-0">
<uni-icons v-if="dto.num&&dto.num>=1" type="minus" size="32"
@click.stop="addnum(dto,-1)"></uni-icons>
- <view class="curnums" v-if="dto.num&&dto.num>=1">{{ dto.num }}</view>
+ <view class="curnums" @click.stop="updateItemNum(dto)"
+ v-if="dto.num&&dto.num>=1">{{ dto.num }}</view>
<uni-icons type="plus-filled" size="32"
@click.stop="addnum(dto,1)"></uni-icons>
</view>
@@ -97,12 +99,17 @@
}
},
onShow() {
- if (this.sign['shopping']) {
- this.init()
- }
+ // if (this.sign['shopping']) {
+
+ // }
+ this.init()
},
mounted() {
- this.init()
+ // this.init()
+ },
+ async onPullDownRefresh() {
+ await this.init()
+ uni.stopPullDownRefresh()
},
computed: {
totalprice() {
@@ -140,38 +147,53 @@
}
if (arr.length < 1) {
console.log('请选择商品', arr, this.ids)
+ this.$message.showToast('请选择商品')
return
}
this.$message.showLoading()
const {
code,
data
- } = await http.request('post', '/api/customer/flower/order/confirm/info', {
+ } = await this.$http.request('post', '/api/customer/flower/order/confirm/info', {
data: {
flowers: arr,
}
})
- this.$message.hideLoading()
+ let that = this
if (code === 0) {
- this.$storage.setItem('_cache_shopping_dto', JSON.stringify(data))
+ that.$message.hideLoading()
+ that.$storage.setItem('_cache_shopping_dto', JSON.stringify(data))
uni.navigateTo({
url: '/sub_pages/customer/shopping/confirm'
})
+ } else {
+ //提示消失快
+ setTimeout(() => {
+ that.$message.hideLoading()
+ }, 2000)
}
+
},
- async clickSwipeButton(item) {
+ async clickSwipeButton(item, check) {
+ // console.log('clickSwipeButton', e)
//删除商品,重新加载数据?
+ if (check) {
+ await this.$message.confirm('是否删除商品')
+
+ }
this.$message.showLoading()
const {
code
- } = await http.request('get', '/api/customer/flower/cart/delete', {
+ } = await this.$http.request('get', '/api/customer/flower/cart/delete', {
params: {
id: item.id,
}
})
this.$message.hideLoading()
if (code === 0) {
+ this.$store.dispatch('sign_add', 'shopnum');
+
if (this.ids.indexOf(item.id) >= 0) {
this.ids.splice(this.ids.indexOf(item.id), 1)
}
@@ -199,7 +221,17 @@
break
}
}
- console.log('this.list', this.list)
+ // console.log('this.list', this.list)
+ // 解决滑动的swipe不自动关闭的问题
+ if (check) {
+ let arr = this.list
+ this.list = []
+ this.$nextTick(() => {
+ this.list = arr
+ })
+ }
+
+
}
},
@@ -289,23 +321,47 @@
}
},
+ async updateItemNum(item) {
+ const res = await this.$message.confirm('', {
+ editable: true,
+ title: '请输入想要购买的数量'
+ })
+ if (res.content && res.confirm) {
+ // 发送请求
+ var t = parseInt(res.content)
+ if (isNaN(t) || t < 0) {
+ this.$message.showToast('数目需要大于等于0')
+
+ } else {
+ if (!item.stock || t > item.stock) {
+ this.$message.showToast('库存不足无法修改')
+ return
+ }
+ this.addnum(item, (t - item.num))
+
+ }
+ } else {
+
+ }
+ },
async addnum(dto, addnum) {
if (dto.num + addnum >= 0) {
} else {
+ console.log('addnum', dto, addnum)
return
}
if (!dto.stock) {
dto.stock = 0
}
- if (dto.num + addnum > dto.stock) {
- this.$message.showToast('库存不足,无法添加')
+ if (addnum > 0 && dto.num + addnum > dto.stock) {
+ this.$message.showToast('库存不足,无法修改')
return
}
this.$message.showLoading()
const {
code
- } = await http.request('post', '/api/customer/flower/cart/change-num', {
+ } = await this.$http.request('post', '/api/customer/flower/cart/change-num', {
data: {
id: dto.id,
num: addnum
@@ -316,12 +372,18 @@
dto.num += addnum
if (dto.num < 1) {
//id删除清空,并且
- await this.clickSwipeButton(dto)
+ await this.clickSwipeButton(dto, false)
// await this.init()
}
+ this.$store.dispatch('sign_add', 'shopnum');
+ this.$forceUpdate()
}
},
async init() {
+
+ this.ids = []
+ this.checkall = false
+
if (!this.currentInfo.id) {
this.$message.showToast('请先登录')
return
@@ -363,7 +425,9 @@
left: 0rpx;
padding: 20rpx;
right: 0rpx;
- bottom: 160rpx;
+ // bottom: 160rpx;
+ bottom: 130rpx;
+ z-index: 11;
}
.shopping-item {
@@ -417,8 +481,8 @@
line-height: 40rpx;
.curnums {
- margin-left: 10rpx;
- margin-right: 10rpx;
+ padding-left: 20rpx;
+ padding-right: 20rpx;
}
}
}
--
Gitblit v1.9.3