更新优化

This commit is contained in:
weipengfei 2023-11-14 10:11:26 +08:00
parent 1ee574eb6e
commit 4b0dbfddc4
3 changed files with 47 additions and 25 deletions

View File

@ -183,6 +183,7 @@
title: "加入成功",
duration: 1000,
})
this.$emit('addCart');
this.close();
}).catch(err => {
uni.showToast({

View File

@ -695,26 +695,30 @@
})
},
goodDetail(item) {
goShopDetail(item, this.uid).then(res => {
if (this.isLogin) {
initiateAssistApi(item.activity_id).then(res => {
let id = res.data.product_assist_set_id;
uni.hideLoading();
uni.navigateTo({
url: '/pages/activity/assist_detail/index?id=' + id
});
}).catch((err) => {
uni.showToast({
title: err,
icon: 'none'
})
});
} else {
this.isAuto = true;
this.isShowAuth = true
}
uni.navigateTo({
url: `/pages/goods_details/index?id=${item.product_id}`
})
// goShopDetail(item, this.uid).then(res => {
// if (this.isLogin) {
// console.log(res);
// initiateAssistApi(item.activity_id).then(res => {
// let id = res.data.product_assist_set_id;
// uni.hideLoading();
// uni.navigateTo({
// url: '/pages/activity/assist_detail/index?id=' + id
// });
// }).catch((err) => {
// uni.showToast({
// title: err,
// icon: 'none'
// })
// });
// } else {
// this.isAuto = true;
// this.isShowAuth = true
// }
// })
},
serch() {
this.getList()

View File

@ -106,6 +106,8 @@
<view class="r_name">{{item.product.store_name}}</view>
<view class="r_type">
<view v-if="item.product.store_info">{{item.product.store_info}}</view>
<view v-else-if="getSkuName(item)">{{getSkuName(item)}}</view>
<view v-else-if="item.unit_name">{{item.unit_name}}</view>
</view>
<view class="r_btn" v-if="item.product && item.product.price">
<view><text style="font-size: 33rpx;">{{ item.product.price.split('.')[0] }}.</text>{{item.product.price.split('.')[1]}}</view>
@ -173,7 +175,7 @@
</view>
</uni-popup>
<shortPopup ref="shortPopupRef"></shortPopup>
<shortPopup ref="shortPopupRef" @addCart="loadCart"></shortPopup>
</view>
</template>
@ -347,7 +349,6 @@
this.storeList = [];
this.showLoading = true;
await this.getCloundShop();
this.cartFn();
if (this.mer_location == 1) {
this.selfLocation()
}
@ -720,7 +721,7 @@
}
townCloud({
street_code: this.street_id,
category_id: this.storeParam.category_id,
// category_id: this.storeParam.category_id,
order: this.storeParam.order,
keyword: this.storeParam.keyword,
page: this.storeParam.page,
@ -790,6 +791,14 @@
})
}
})
},
//
loadCart(){
this.cartFn();
},
//
getSkuName(item){
return Object.keys(item.sku).join('/')||null;
}
},
//
@ -797,7 +806,8 @@
uni.stopPullDownRefresh()
},
onShow() {
this.showSelect = false
this.showSelect = false;
this.cartFn();
},
//
onBackPress() {
@ -1094,13 +1104,20 @@
justify-content: space-between;
.r_name {
height: 3em;
width: 100%;
height: 64rpx;
line-height: 32rpx;
text-overflow: ellipsis;
display: -webkit-box; /* 使用弹性盒子布局 */
-webkit-box-orient: vertical; /* 设置为垂直方向布局 */
overflow: hidden; /* 隐藏超出部分 */
-webkit-line-clamp: 2; /* 限制显示两行文本 */
}
.r_type {
font-size: 22.78rpx;
color: #737373;
width: 280rpx;
width: 300rpx;
view {
height: 39rpx;