From 68296459009ac6cd1f254ad100dffdb763b858a1 Mon Sep 17 00:00:00 2001 From: aihe <961836564@qq.com> Date: Fri, 21 Jun 2024 13:12:04 +0800 Subject: [PATCH] uu --- pages/deliveryDeal/pickUp.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/deliveryDeal/pickUp.vue b/pages/deliveryDeal/pickUp.vue index d8aad45..0907324 100644 --- a/pages/deliveryDeal/pickUp.vue +++ b/pages/deliveryDeal/pickUp.vue @@ -83,7 +83,7 @@ }, data() { return { - orderNo: '', + billCode: '', pageLoading: true, queryOption: { billCode: '', // 运单id @@ -112,8 +112,8 @@ }, methods: { initData() { - this.orderNo = this.queryOption.billCode || this.queryOption.orderSn - this.orderNo && (this.queryOrderDetail(this.queryOption)) + this.billCode = this.queryOption.billCode || this.queryOption.orderSn + this.billCode && (this.queryOrderDetail(this.queryOption)) }, async queryOrderDetail(params) { let res = await apiService.getOrderDetail({...params, _loading: true}) @@ -140,7 +140,7 @@ }, resetForm() { this.submitParam = {} - this.orderNo = '' + this.billCode = '' } } }