From 1fb44496929548b4f07b37796d506dedc494d44a Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期二, 30 七月 2024 17:29:35 +0800
Subject: [PATCH] update 问题修复
---
sub_pages/customer/self/collect.vue | 29 ++++++++++++++++++-----------
1 files changed, 18 insertions(+), 11 deletions(-)
diff --git a/sub_pages/customer/self/collect.vue b/sub_pages/customer/self/collect.vue
index 0dd0f95..490e57f 100644
--- a/sub_pages/customer/self/collect.vue
+++ b/sub_pages/customer/self/collect.vue
@@ -56,9 +56,9 @@
},
methods: {
toDetail(item) {
- if(item.status=='UP'){
-
- }else{
+ if (item.status == 'UP') {
+
+ } else {
this.$message.showToast('已失效,无法查看详情')
return
}
@@ -68,9 +68,9 @@
},
async submitShopping(dto) {
//提交到购物车中
- this.$message.showLoading()
+ // this.$message.showLoading()
await this.$store.dispatch('submitShopping', dto);
- this.$message.hideLoading()
+ // this.$message.hideLoading()
},
select_level(e) {
this.level_show = false
@@ -183,14 +183,21 @@
}
}
- .trade-info-container {
- background-color: #fff;
- border-top-right-radius: 40rpx;
- border-top-left-radius: 40rpx;
- padding: 30rpx;
- overflow: hidden;
+ .trade-list-container {
min-height: calc(100vh - 300rpx);
overflow-y: scroll;
+ border-top-right-radius: 40rpx;
+ border-top-left-radius: 40rpx;
+ padding: 20rpx;
+
+ }
+
+ .trade-info-container {
+ background-color: #fff;
+ border-radius: 40rpx;
+ margin-bottom: 20rpx;
+ padding: 20rpx;
+
.img {
width: 124rpx;
--
Gitblit v1.9.3