From f27e0eae38502d40a187dedc3710ff4a291b05ed Mon Sep 17 00:00:00 2001
From: rk <94314517@qq.com>
Date: 星期五, 07 十一月 2025 13:49:56 +0800
Subject: [PATCH] 111
---
bicycle/pages/operationList/operationList.vue | 32 +++++++++++++++++++++++---------
1 files changed, 23 insertions(+), 9 deletions(-)
diff --git a/bicycle/pages/operationList/operationList.vue b/bicycle/pages/operationList/operationList.vue
index 9a0ef1f..e9a5b52 100644
--- a/bicycle/pages/operationList/operationList.vue
+++ b/bicycle/pages/operationList/operationList.vue
@@ -296,9 +296,16 @@
that.$u.api.updateLockStatus({
ids: id,
lockStatus: lockStatus === 0 ? 1 : 0
- }).then(res => {
- if (res.code === 200) {
- that.getList(1)
+ }).then(res1 => {
+ if (res1.code === 200) {
+ uni.showToast({
+ title: res1.data,
+ icon: 'none',
+ mask: true
+ })
+ setTimeout(() => {
+ that.getList(1)
+ }, 1500)
}
})
} else if (res.cancel) {
@@ -317,11 +324,18 @@
that.$u.api.updateLockStatus({
ids: that.selectIds.join(','),
lockStatus: lockStatus === 0 ? 1 : 0
- }).then(res => {
- if (res.code === 200) {
- that.show1 = false
- that.selectIds = []
- that.getList(1)
+ }).then(res1 => {
+ if (res1.code === 200) {
+ uni.showToast({
+ title: res1.data,
+ icon: 'none',
+ mask: true
+ })
+ setTimeout(() => {
+ that.show1 = false
+ that.selectIds = []
+ that.getList(1)
+ }, 1500)
}
})
} else if (res.cancel) {
@@ -437,7 +451,7 @@
}
.shaixuan_footer {
width: 100%;
- height: 96rpx;
+ height: 140rpx;
padding: 0 20rpx;
box-sizing: border-box;
display: flex;
--
Gitblit v1.9.3