From b3312675f811b3ab607dfb0e9836d706b82bd752 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Wed, 9 Jul 2025 10:56:47 +0800 Subject: [PATCH] 1 --- config.js | 2 +- pages/manager/order-detail.vue | 2 +- pages/manager/order.vue | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config.js b/config.js index 3d994aa..d166eb8 100644 --- a/config.js +++ b/config.js @@ -1,5 +1,5 @@ // config.js -const type = 'dev' +const type = 'prod' const config = { local: { diff --git a/pages/manager/order-detail.vue b/pages/manager/order-detail.vue index 026f2f3..2b994d0 100644 --- a/pages/manager/order-detail.vue +++ b/pages/manager/order-detail.vue @@ -187,7 +187,7 @@ - + diff --git a/pages/manager/order.vue b/pages/manager/order.vue index 4b221b1..5afaee6 100644 --- a/pages/manager/order.vue +++ b/pages/manager/order.vue @@ -296,7 +296,7 @@ export default { phone: order.phone, appointTime: order.goTime, cancelTime: order.state === 3 ? order.updateTime : '', - qualityTime: order.status === 2 && order.state === 1 ? order.updateTime : '', + qualityTime: order.testingTime, statusText: order.isBy === 'Y' ? statusInfo.label : '不包邮', statusClass: statusInfo.class, statusLabel: statusInfo.label, @@ -373,8 +373,8 @@ export default { }, getOrderActions(status, state) { const actions = [] - // 只有待质检状态显示操作按钮 - if (status === 2 && state === 1) { + // 只有待审核状态显示操作按钮 + if (status == 0 && state == 0) { actions.push({ icon: 'undo', text: '驳回' }) actions.push({ icon: 'person', text: '审批' }) }