From 81b3c20184fe89b4c8e9bdbe45276748778a1d95 Mon Sep 17 00:00:00 2001 From: 819527061@qq.com <123456> Date: 星期五, 08 三月 2024 15:40:34 +0800 Subject: [PATCH] 添加注释 --- pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue | 27 +++++++++++++++++++-------- 1 files changed, 19 insertions(+), 8 deletions(-) diff --git a/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue b/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue index 81f6902..47a3abb 100644 --- a/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue +++ b/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue @@ -42,7 +42,7 @@ style="color: #475bfd;" @click="streamView" v-show="timeLineStatus===9"> - 鏌ョ湅瀹炴椂杞﹁締 + 鏌ョ湅瑁呰浇鎯呭喌 </view> <view class="weigh-item"> <view class="item"> @@ -205,7 +205,8 @@ @click="cengZhongClick" type="primary" shape="circle" - :disabled="haveInputOrigin&&!isSpecial"></u-button> + :disabled="haveInputOrigin&&!isSpecial" + :loading="weighHouseLoading"></u-button> </view> <view class="weigh-button" v-show='ablePrintInduction&&!(coalDetailsData.skin&&coalDetailsData.hair)'> @@ -286,10 +287,10 @@ this.orderPlanId = value.orderPlanId; this.yyId = value.yyId; this.originInfoVisible = value.orderType === '澶栬喘' - if (value.overTmWaixiao) { - this.overTmWaixiao = value.overTmWaixiao - this.getWeightHouseObj.overTmWaixiao = value.overTmWaixiao - } + // if (value.overTmWaixiao) { + // this.overTmWaixiao = value.overTmWaixiao + // this.getWeightHouseObj.overTmWaixiao = value.overTmWaixiao + // } this.fileList1 = [] this.changeglobalIsFirstWeighing(1) if (this.globalIsFirstWeighing === 1) { @@ -418,6 +419,7 @@ ischeckedDefault: 0, isSpecial: null, //1 鏄壒娈� 0涓嶆槸鐗规畩 printerType: '', //鍒ゆ柇鎵撳嵃鐨勬槸鍑洪棬璇佽繕鏄叆闂ㄨ瘉 + weighHouseLoading: false }; }, watch: { @@ -580,7 +582,12 @@ let endTime = this.coalDetailsData.yuYueSection.slice(0, 10) + ' ' + this .coalDetailsData .yuYueSection.slice(-5); - if (dayjs(this.currentTime).isAfter(endTime) && this.coalDetailsData.status <= 1) { + // 鏈�澶х害鏉熸椂闂� maxRestrainTime + const maxRestrainTime = dayjs().subtract(this.coalDetailsData.flexibleTime, + 'minute') + .format('YYYY-MM-DD HH:mm:ss'); + console.log(maxRestrainTime, this.correctStatus); + if (dayjs(maxRestrainTime).isAfter(endTime) && this.correctStatus <= 1) { // this.$u.toast('宸茶秴鍑洪绾︽椂闂�,鍙偣鍑诲叆鍦虹敵璇烽噸鏂板叆鍦�') this.timeout = '1' } @@ -697,8 +704,10 @@ // 绉伴噸 cengZhongClick() { this.changeglobalIsFirstWeighing(2) + this.weighHouseLoading = true this.$reqGet('getWeighHouse', this.getWeightHouseObj).then(res => { console.log(res, '鑾峰彇纾呮埧'); + this.weighHouseLoading = false if (res.code == 0) { this.weighData.sceneId = res.data.id; this.weighData.gateCameraId = res.data.lastEquipmentId; @@ -722,7 +731,9 @@ } else { this.$u.toast(res.msg ? res.msg : '鏈湪纾呮埧锛岃鍓嶅線纾呮埧鍚庡啀璇曪紒锛�'); } - }); + }).catch(() => { + this.weighHouseLoading = false + }) }, // 鏀剧┖ evacuation() { -- Gitblit v1.9.1