From f880863b9292a4cc4c0a484f721bb87bf42e57ed Mon Sep 17 00:00:00 2001 From: yangan <yangan0921@163.com> Date: 星期五, 10 十一月 2023 17:32:32 +0800 Subject: [PATCH] 质检完成修改为处理完成 --- pages/driver-page/driver-index/driver-index.vue | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/pages/driver-page/driver-index/driver-index.vue b/pages/driver-page/driver-index/driver-index.vue index b196c50..6cedf3a 100644 --- a/pages/driver-page/driver-index/driver-index.vue +++ b/pages/driver-page/driver-index/driver-index.vue @@ -104,7 +104,7 @@ <view class="appointment-form-item" v-for="(item, index) in driverBillOfLoadingData.list3" :key="index" - @click="list3CardIconClick(item)" + @click.stop="list3CardIconClick(item)" > <view class="main-divider"></view> @@ -166,7 +166,7 @@ </view> </view> <view class="fourth-line" - @click="toAppointmentClick(item)"> + @click.stop="toAppointmentClick(item)"> <view class="button-img">绔嬪嵆棰勭害</view> </view> </view> @@ -269,7 +269,8 @@ import { onlineurl } from '@/api/request.js' import { BaseUrl } from '@/api/publicInterface.js' import previewImage from '@/components/kxj-previewImage/kxj-previewImage.vue'; - import { mapState } from 'vuex' + import { mapState } from 'vuex'; + import { Debounce } from '../../../utils/util'; export default { components: { combinedTitle, @@ -311,14 +312,16 @@ fleetId: '', xsUserId: '', customerId: '', - coalStatus: ['鏈О閲�', '绉伴噸涓�', '楠岃川涓�', '绉伴噸瀹屾垚', '楠岃川瀹屾垚'], + coalStatus: ['鏈О閲�', '绉伴噸涓�', '楠岃川涓�', '绉伴噸瀹屾垚', '澶勭悊瀹屾垚'], onlineurl, phone: "", isFirstLogin: true //鏄惁鏄涓�娆$櫥褰� }; }, - onLoad() { - this.TourImgList = TourImgList + mounted() { + // this.TourImgList = TourImgList + this.getLogOn() + }, onShow() { this.init(); @@ -334,7 +337,6 @@ }, init() { this.qiangDanList(); - this.getLogOn() }, // 鍙告満棣栭〉鍒楄〃 qiangDanList() { @@ -347,7 +349,7 @@ }); }, // 鎶㈠崟鎸夐挳 - qiangDanBtn(value) { + qiangDanBtn:Debounce(function(value){ if (value.tmcCount == '0') { this.qiangDan(value.orderPlanId, value.fleetId, value.customerId === null ? '0' : value.customerId, value.xsUserId === null ? '0' : value.xsUserId); @@ -359,7 +361,9 @@ this.qiangDanShow = true; this.qiangDanContent = `宸叉姠${value.tmcCount}鍗曪紝纭畾鎶㈠崟锛焋; } - }, + } ,500) + + , // 鎶㈠崟妯℃�佹 qiangDanConfirm() { this.qiangDanContent = ''; -- Gitblit v1.9.1