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: '审批' })
}