From 5bd778d9a1899422ba1e9b67fbe578d759c86685 Mon Sep 17 00:00:00 2001 From: yangan <yangan0921@163.com> Date: 星期四, 21 十二月 2023 10:19:16 +0800 Subject: [PATCH] 点击称重完成,修改提示信息 --- pages/driver-page/appointment/appointment.vue | 30 ++++++++++++++++++++++++------ 1 files changed, 24 insertions(+), 6 deletions(-) diff --git a/pages/driver-page/appointment/appointment.vue b/pages/driver-page/appointment/appointment.vue index 80923af..7c46132 100644 --- a/pages/driver-page/appointment/appointment.vue +++ b/pages/driver-page/appointment/appointment.vue @@ -1,6 +1,6 @@ <template> <view class="appointment"> - <combined-title :title="yuYueData.length != 0?yuYueData[0].filedName + '鈥斺��' + yuYueData[0].sendDate:'鏆傛棤棰勭害鍒楄〃'"></combined-title> + <combined-title :title="yuYueData.length != 0 ? yuYueData[0].filedName + '鈥斺��' + yuYueData[0].sendDate : '鏆傛棤棰勭害鍒楄〃'"></combined-title> <view class="appointment-table"> <uni-table border stripe emptyText="鏆傛棤鏇村鏁版嵁"> <uni-tr> @@ -13,7 +13,7 @@ <uni-td align="center">{{ (item.startTime || '') + '-' + (item.endTime || '') }}</uni-td> <uni-td align="center">{{ item.carNum || '' }}</uni-td> <uni-td align="center">{{ item.carNum1 || '' }}</uni-td> - <uni-td><u-button text="棰勭害" type="primary" :disabled="item.carNum == item.carNum1" @click="yuYueBtnClick(item)"></u-button></uni-td> + <uni-td><u-button text="閫夋嫨" type="primary" :disabled="item.carNum == item.carNum1" @click="yuYueBtnClick(item)"></u-button></uni-td> </uni-tr> </uni-table> </view> @@ -22,21 +22,22 @@ <script> import combinedTitle from '@/components/combined-title/combined-title.vue'; -import { BigNumber } from 'bignumber.js'; export default { components: { combinedTitle }, data() { return { + // 棰勭害鍒楄〃璇锋眰鍙傛暟 yuYueListParams: { filedId: '', deptId: '', sendDate: '' }, - yuYuePostParams:{ + // 棰勭害璇锋眰鍙傛暟 + yuYuePostParams: { takeCoalId: null, - yuYueId: null, + yuYueId: null }, yuYueData: [], isRCSQ: false, // 鍏ュ満鐢宠鎺ュ彛鎺у埗 @@ -77,6 +78,8 @@ uni.hideLoading(); if (res.code == 0) { this.yuYueData = res.data; + } else { + this.$u.toast('鍔犺浇澶辫触'); } }); }, @@ -95,6 +98,13 @@ this.$reqPost('yuYue', { takeCoalId: this.yuYuePostParams.takeCoalId, yuYueId: this.yuYuePostParams.yuYueId }, 'params').then(res => { if (res.code == 0) { this.$u.toast('棰勭害鎴愬姛锛�'); + let timer = setTimeout(() => { + uni.navigateBack({ + delta: 1 + }); + }, 500); + } else { + this.$u.toast(res.msg ? res.msg : '棰勭害澶辫触'); } setTimeout(() => { this.yuYueList(); @@ -108,7 +118,15 @@ this.rcsqData.filedId = value.filedId; this.$reqPost('saveRCSQ', this.rcsqData, 'json').then(res => { if (res.code == 0) { - this.$u.toast('鏂板缓鍏ュ満鐢宠鎴愬姛銆�'); + this.$u.toast('鍏ュ満鐢宠鎴愬姛'); + uni.navigateBack({ + delta: 1 + }); + } else { + this.$u.toast(res.msg ? res.msg : '鍏ュ満鐢宠澶辫触锛岃绋嶅悗閲嶈瘯'); + uni.navigateBack({ + delta: 1 + }); } }); } -- Gitblit v1.9.1