From e6c03781edd4b7c66dd3eda68a717703705813b0 Mon Sep 17 00:00:00 2001 From: gcd Date: Sun, 15 Jun 2025 13:52:05 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E6=8B=92?= =?UTF-8?q?=E5=8D=95=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.vue | 2 +- pages/order/order-info.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/index/index.vue b/pages/index/index.vue index a3cfac5..1c61ccd 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -79,7 +79,7 @@ const acceptOrder = (index, id) => { const rejectOrder = (index, id) => { uni.showModal({ - title: '拒接提示', + title: '请您确认是否拒单?多次拒单平台会减少对您的派单量!', confirmText: '确认', editable: true, placeholderText: '请输入拒接原因', diff --git a/pages/order/order-info.vue b/pages/order/order-info.vue index dd91181..4be3701 100644 --- a/pages/order/order-info.vue +++ b/pages/order/order-info.vue @@ -331,7 +331,7 @@ const acceptOrder = () => { const rejectOrder = () => { uni.showModal({ - title: '拒接提示', + title: '请您确认是否拒单?多次拒单平台会减少对您的派单量!', confirmText: '确认', editable: true, placeholderText: '请输入拒接原因', From 229daead924c4701c59ffcbd640b354f6499186e Mon Sep 17 00:00:00 2001 From: gcd Date: Wed, 18 Jun 2025 22:23:25 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=A6=96=E6=AC=A1?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=B7=A5=E5=8D=95=E8=BF=9B=E5=BA=A6=E4=B8=8D?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E4=BB=8A=E6=97=A5=E6=98=AF=E5=90=A6=E5=AE=8C?= =?UTF-8?q?=E6=88=90=E6=97=A0=E6=B3=95=E6=8F=90=E4=BA=A4=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/order/update-progress.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/order/update-progress.vue b/pages/order/update-progress.vue index 5893518..f49ccf8 100644 --- a/pages/order/update-progress.vue +++ b/pages/order/update-progress.vue @@ -91,7 +91,7 @@ const submit = throttle(() => { const init = () => { api.orderInfo({order_dispatch_id: id.value}).then(res => { - submitData.is_finish_today = res.is_finish_today + submitData.is_finish_today = res.is_finish_today === null ? 1 : res.is_finish_today submitData.estimated_finish_time = res.estimated_finish_time submitData.work_progress = res.work_progress