From 3efc1c3337127f2836eaf0a2d641c5adafcd3a26 Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期五, 02 八月 2024 10:09:12 +0800
Subject: [PATCH] update
---
sub_pages/customer/trade/detail.vue | 157 ++++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 133 insertions(+), 24 deletions(-)
diff --git a/sub_pages/customer/trade/detail.vue b/sub_pages/customer/trade/detail.vue
index 34afd53..5b10de5 100644
--- a/sub_pages/customer/trade/detail.vue
+++ b/sub_pages/customer/trade/detail.vue
@@ -13,7 +13,7 @@
</view>
<view class="icon-container">
<image src="../../../static/common/icon-shop.png" @click="toShopping(dto)" class="icon-shop">
- <view class="image-shop-number">{{shopnum||'1'}}</view>
+ <view class="image-shop-number" v-if="shopnum">{{shopnum||''}}</view>
</image>
</view>
@@ -39,9 +39,19 @@
<image src="../../../static/common/icon-kf.png" class="icon-kf m-l-15 img100"></image>
</view>
- <view class="m-r-0 gwc" @click="submitShopping(dto)">
+ <view class="m-r-0 gwc" @click="submitShopping(dto)" v-if="!dto.shopnum">
+ 购物车
</view>
+ <view class="m-r-0 button-icons flex" v-if="dto.shopnum">
+ <uni-icons v-if="dto.shopnum&&dto.shopnum>=1" type="minus" size="32"
+ @click.stop="addnum(dto,-1)"></uni-icons>
+ <view class="curnums" @click.stop="updateItemNum(dto)" v-if="dto.shopnum&&dto.shopnum>=1">
+ {{ dto.shopnum }}
+ </view>
+ <uni-icons v-if="!dto.shopnum||dto.shopnum<=99" type="plus-filled" size="32"
+ @click.stop="addnum(dto,1)"></uni-icons>
+ </view>
+
</view>
</view>
<view class="line">
@@ -53,7 +63,12 @@
<view class="label">{{ param.name}}:</view>
<view class="value">{{ param.value || '-'}}</view>
</view>
- <!-- <view class="flex m-t-8">-->
+ <view v-if="!dto.params">
+ <view class="flex m-t-8">
+ <view class="label">暂无</view>
+ </view>
+ </view>
+ <!-- <view class="flex m-t-8">
<!-- <view class="label">枝粗:</view>-->
<!-- <view class="value">中等粗细</view>-->
<!-- </view>-->
@@ -133,6 +148,12 @@
shopnum: 0,
}
},
+ onShow() {
+ if (this.id) {
+ this.getDetail()
+ }
+ this.refreshShopNum()
+ },
onLoad(options) {
this.id = options.id || ''
if (this.id) {
@@ -141,10 +162,79 @@
this.refreshShopNum()
},
methods: {
+ 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.shopnum))
+
+ }
+ } else {
+
+ }
+ },
+ async addnum(item, addnum) {
+ if (!this.currentInfo.id) {
+ await this.$message.confirm('请前往登录')
+ uni.navigateTo({
+ url: '/pages/user/supplier-user'
+ })
+ return
+ }
+ if (!item.shopnum) {
+ item.shopnum = 0
+ }
+ if (!item.stock) {
+ item.stock = 0
+ }
+ if (addnum > 0 & item.shopnum + addnum > item.stock) {
+ this.$message.showToast('库存不足,无法修改')
+ return
+ }
+ if (item.shopnum + addnum >= 0) {
+
+ } else {
+ return
+ }
+ this.$message.showLoading()
+ const {
+ code
+ } = await this.$http.request('post', '/api/customer/flower/cart/change-num', {
+ data: {
+ id: item.id,
+ num: addnum
+ }
+ })
+ this.$message.hideLoading()
+ if (code === 0) {
+ item.shopnum += addnum
+ this.refreshShopNum()
+ this.$forceUpdate()
+ }
+ },
+
async refreshShopNum() {
- this.shopnum = await this.$store.dispatch('submitShopping', dto);
+ this.shopnum = await this.$store.dispatch('countShopping');
+ this.$store.dispatch('sign_add','shopnum')
+
},
async collectItem(dto) {
+ if (!this.currentInfo.id) {
+ this.$message.showToast('请先登录')
+ return
+ }
await this.$message.confirm(`是否${dto.collection?'移除':'添加到'}收藏`)
this.$message.showLoading()
const {
@@ -156,7 +246,7 @@
flowerId: dto.id
},
params: {
- id: dto.id
+ flowerId: dto.id
}
})
if (code === 0) {
@@ -169,10 +259,18 @@
},
async submitShopping(dto) {
//提交到购物车中
- this.$message.showLoading()
- await this.$store.dispatch('submitShopping', dto);
- this.$message.hideLoading()
- this.refreshShopNum()
+ // this.$message.showLoading()
+ const {
+ code,
+ data
+ } = await this.$store.dispatch('submitShopping', dto);
+ // this.$message.hideLoading()
+ if (code == 0) {
+ dto.shopnum = data || 0
+ this.refreshShopNum()
+ this.$forceUpdate()
+
+ }
},
async getDetail() {
this.$message.showLoading()
@@ -209,20 +307,22 @@
<style lang="scss" scoped>
.trade-detail {
- background-color: #FFFFFF;
- .image-shop-number {
- width: 30rpx;
- height: 30rpx;
- background: #F20000;
- line-height: 30rpx;
- text-align: center;
- position: absolute;
- right: 0rpx;
- top: -6rpx;
- color: #FFFFFF;
- border-radius: 50%;
- font-size: 24rpx;
+ background-color: #FFFFFF;
+
+ .image-shop-number {
+ width: 30rpx;
+ height: 30rpx;
+ background: #F20000;
+ line-height: 30rpx;
+ text-align: center;
+ position: absolute;
+ right: 0rpx;
+ top: -6rpx;
+ color: #FFFFFF;
+ border-radius: 50%;
+ font-size: 24rpx;
}
+
.trade-info-container {
padding: 46rpx 30rpx;
@@ -236,6 +336,15 @@
.level {
color: #20613D;
+ }
+ }
+
+ .button-icons {
+ line-height: 40rpx;
+
+ .curnums {
+ padding-left: 20rpx;
+ padding-right: 20rpx;
}
}
@@ -408,10 +517,10 @@
height: 54rpx;
margin: 0 auto;
margin-top: 12rpx;
- display: inline-block;
+ display: inline-block;
margin-left: 12rpx;
position: relative;
-
+
}
.num {
--
Gitblit v1.9.3