|
|
|
|
@ -468,7 +468,7 @@
|
|
|
|
|
<el-option label="M01" value="M01"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="模式" prop="modeIds">
|
|
|
|
|
<el-form-item label="模式" prop="modeIdsValue">
|
|
|
|
|
<template>
|
|
|
|
|
<el-select v-model="form.modeIdsValue" multiple placeholder="请选择模式">
|
|
|
|
|
<el-option
|
|
|
|
|
@ -1067,6 +1067,9 @@ export default {
|
|
|
|
|
model: [
|
|
|
|
|
{required: true, message: '仪器型号不能为空', trigger: 'change'},
|
|
|
|
|
],
|
|
|
|
|
modeIdsValue: [
|
|
|
|
|
{required: true, message: '仪器模式不能为空', trigger: 'change'},
|
|
|
|
|
],
|
|
|
|
|
nursingTime: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
@ -1398,7 +1401,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
console.log(this.nurseList);
|
|
|
|
|
console.log(this.form.modeIdsValue);
|
|
|
|
|
this.form.nurseList = this.nurseList;
|
|
|
|
|
this.form.introduceList = this.introduceList;
|
|
|
|
|
this.$refs['form'].validate((valid) => {
|
|
|
|
|
|