diff --git a/pages/appointmenttime/appointmenttime.vue b/pages/appointmenttime/appointmenttime.vue index d3018f8..e395194 100644 --- a/pages/appointmenttime/appointmenttime.vue +++ b/pages/appointmenttime/appointmenttime.vue @@ -84,10 +84,10 @@ - + 失能情况 * - + 备注: @@ -153,7 +153,9 @@ patientId: null, useritem: null, //optionsuser信息 consumableTotalPrice: 0, //耗材包总价格 + disablingCondition: null, //是否失能 orderlist: { + disablingCondition: null, orderCount: 1, patientId: '', stationId: '', @@ -169,6 +171,7 @@ consumableTotalPrice: '', totalPrice: '', remark: "", + disablingReason: '', orderConsumableList: [], orderChannel: '', }, @@ -370,7 +373,16 @@ e.checked = true }, // 选中任一checkbox时,由checkbox-group触发 - checkboxGroupChangetwo(e) {}, + checkboxGroupChangetwo(e) { + if (e[0] == '否') { + this.disablingCondition = 'NOT_DISABLED' + } else if (e[0] == '是') { + this.disablingCondition = 'DISABLED' + } else { + this.disablingCondition = null + } + this.orderlist.disablingCondition = this.disablingCondition + }, argAdd(arg1, arg2) { // 加法函数 var _this = this,