diff --git a/src/components/order-list/order-list-cell.vue b/src/components/order-list/order-list-cell.vue index 8985b17fcc2709e9aa1e289e344cdc621c445745..fbe8b0f836656e79450f5b82035baa9b3709a33c 100644 --- a/src/components/order-list/order-list-cell.vue +++ b/src/components/order-list/order-list-cell.vue @@ -48,7 +48,9 @@
审核中
审核通过
审核未通过
-订单已取消
+订单已取消
订单编号
@@ -457,19 +457,19 @@ export default { }, nextApply() { let query = {}; - if (this.cellItem.order_type == 1) { + if (this.orderDetail.order_type == 1) { query = { - service_id: parseFloat(this.cellItem.service_id), - spec_id: this.cellItem.svc_spec_id, - duration: this.cellItem.duration, - duration_unit: this.cellItem.duration_unit + service_id: parseFloat(this.orderDetail.service_id), + spec_id: this.orderDetail.svc_spec_id, + duration: this.orderDetail.duration, + duration_unit: this.orderDetail.duration_unit }; - } else if (this.cellItem.order_type == 2) { + } else if (this.orderDetail.order_type == 2) { query = { - app_id: parseFloat(this.cellItem.app_id), - spec_id: this.cellItem.spec_app, - duration: this.cellItem.duration, - duration_unit: this.cellItem.duration_unit + app_id: parseFloat(this.orderDetail.app_id), + spec_id: this.orderDetail.spec_app, + duration: this.orderDetail.duration, + duration_unit: this.orderDetail.duration_unit }; } window.sessionStorage.setItem("shoppingCart", JSON.stringify(query)); @@ -497,9 +497,9 @@ export default { }); }, getMessage() { - if (this.cellItem.order_type == 1) { + if (this.orderDetail.order_type == 1) { this.$api.user - .getServiceEvaluation({ apply_id: this.cellItem.apply_id }) + .getServiceEvaluation({ apply_id: this.orderDetail.apply_id }) .then(response => { if (response.data.success == 1) { this.message = response.data.data; @@ -511,9 +511,9 @@ export default { }); } }); - } else if (this.cellItem.order_type == 2) { + } else if (this.orderDetail.order_type == 2) { this.$api.user - .getAppEvaluation({ apply_id: this.cellItem.apply_id }) + .getAppEvaluation({ apply_id: this.orderDetail.apply_id }) .then(response => { if (response.data.success == 1) { this.message = response.data.data; diff --git a/src/pages/workbench/fwgl/cloud-detail.vue b/src/pages/workbench/fwgl/cloud-detail.vue index a395c0a60a2d27f8c117e9c93e54ac871b846636..35e0706dac7281f7e3338359e44cc6415cfe58ff 100644 --- a/src/pages/workbench/fwgl/cloud-detail.vue +++ b/src/pages/workbench/fwgl/cloud-detail.vue @@ -35,8 +35,14 @@ v-if="apploy_msg.first_level == 0" class="head_right_msg_item apply_wait" >待审批 - 审批通过 - 审批未通过 + 审批通过 + 审批未通过业务系统名: @@ -74,12 +80,12 @@