|
@@ -103,6 +103,21 @@
|
103
|
103
|
:value="item.id">
|
104
|
104
|
</el-option>
|
105
|
105
|
</el-select>
|
|
106
|
+ </el-form-item>
|
|
107
|
+ <el-form-item label="单次用量 : " prop="medical_code">
|
|
108
|
+ <el-input v-model="form.single_dose" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
|
109
|
+ </el-form-item>
|
|
110
|
+ <el-form-item label="用法 : " prop="medical_code">
|
|
111
|
+ <el-input v-model="form.delivery_way" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
|
112
|
+ </el-form-item>
|
|
113
|
+ <el-form-item label="频率 : " prop="medical_code">
|
|
114
|
+ <el-input v-model="form.execution_frequency" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
|
115
|
+ </el-form-item>
|
|
116
|
+ <el-form-item label="天数 : " prop="medical_code">
|
|
117
|
+ <el-input v-model="form.number_days" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
|
118
|
+ </el-form-item>
|
|
119
|
+ <el-form-item label="总量 : " prop="medical_code">
|
|
120
|
+ <el-input v-model="form.total" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
106
|
121
|
</el-form-item>
|
107
|
122
|
<el-form-item label="状态 : " prop="medical_status" style="width:100%;">
|
108
|
123
|
<el-radio-group v-model="form.medical_status">
|
|
@@ -237,6 +252,11 @@ export default {
|
237
|
252
|
is_workload:"",
|
238
|
253
|
sort:"",
|
239
|
254
|
is_advice:"",
|
|
255
|
+ single_dose:"",
|
|
256
|
+ delivery_way:"",
|
|
257
|
+ execution_frequency:"",
|
|
258
|
+ number_days:"",
|
|
259
|
+ total:""
|
240
|
260
|
},
|
241
|
261
|
rules: {
|
242
|
262
|
project_name: [{ required: true, message: '请填写项目名称', trigger: 'blur' }],
|
|
@@ -304,6 +324,11 @@ export default {
|
304
|
324
|
this.form.is_workload = projecDetail.is_workload
|
305
|
325
|
this.form.sort = projecDetail.sort
|
306
|
326
|
this.form.is_advice = projecDetail.doctor_advice
|
|
327
|
+ this.form.single_dose = projecDetail.single_dose
|
|
328
|
+ this.form.delivery_way = projecDetail.delivery_way
|
|
329
|
+ this.form.execution_frequency = projecDetail.execution_frequency
|
|
330
|
+ this.form.number_days = projecDetail.number_days
|
|
331
|
+ this.form.total = projecDetail.total
|
307
|
332
|
}
|
308
|
333
|
})
|
309
|
334
|
},
|
|
@@ -336,7 +361,12 @@ export default {
|
336
|
361
|
is_workload:this.form.is_workload,
|
337
|
362
|
sort:this.form.sort,
|
338
|
363
|
is_advice:this.form.is_advice,
|
339
|
|
- is_default:this.form.is_default
|
|
364
|
+ is_default:this.form.is_default,
|
|
365
|
+ single_dose:this.form.single_dose,
|
|
366
|
+ delivery_way:this.form.delivery_way,
|
|
367
|
+ execution_frequency:this.form.execution_frequency,
|
|
368
|
+ number_days:this.form.number_days,
|
|
369
|
+ total:this.form.total,
|
340
|
370
|
}
|
341
|
371
|
|
342
|
372
|
updatedProject(params).then(response=>{
|