|
@@ -38,7 +38,8 @@ export default {
|
|
|
orderInfo: {
|
|
|
appointmentTime: '',
|
|
|
appointmentEndTime: '',
|
|
|
- recordSelected: []
|
|
|
+ recordSelected: [],
|
|
|
+ remark: ''
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -139,6 +140,19 @@ export default {
|
|
|
prop: 'appointmentEndTime',
|
|
|
rules: this.formOptions.appointmentTime.isRules
|
|
|
}
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'el-input',
|
|
|
+ md: 24,
|
|
|
+ attributes: {
|
|
|
+ type: 'textarea',
|
|
|
+ rows: 3,
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '备注',
|
|
|
+ prop: 'remark'
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|
|
@@ -159,7 +173,8 @@ export default {
|
|
|
changeOrderChangeAppointmentTime({
|
|
|
ids: this.orderInfo.recordSelected.map(item => item.id),
|
|
|
appointmentTime: this.orderInfo.appointmentTime,
|
|
|
- appointmentEndTime: this.orderInfo.appointmentEndTime
|
|
|
+ appointmentEndTime: this.orderInfo.appointmentEndTime,
|
|
|
+ remark: this.orderInfo.remark
|
|
|
}).then(res => {
|
|
|
this.$message({
|
|
|
type: 'success',
|