|
@@ -43,7 +43,14 @@
|
43
|
43
|
<el-input v-model="form.drug_spec" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
44
|
44
|
</el-form-item>
|
45
|
45
|
<el-form-item label="药品类型 : " prop="drug_type">
|
46
|
|
- <el-input v-model="form.drug_type" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
|
46
|
+ <el-select v-model="form.drug_type" style="width:160px;" placeholder="请选择">
|
|
47
|
+ <el-option
|
|
48
|
+ v-for="item,index in getDictionaryDataConfig('system','drug_type')"
|
|
49
|
+ :key="index"
|
|
50
|
+ :label="item.name"
|
|
51
|
+ :value="item.id">
|
|
52
|
+ </el-option>
|
|
53
|
+ </el-select>
|
47
|
54
|
</el-form-item>
|
48
|
55
|
<el-form-item label="库存警戒:" prop="drug_stock_limit" >
|
49
|
56
|
<el-input v-model="form.drug_stock_limit" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
|
@@ -52,7 +59,14 @@
|
52
|
59
|
<el-input v-model="form.drug_origin_place" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
53
|
60
|
</el-form-item>
|
54
|
61
|
<el-form-item label="药品剂型 : " prop="drug_dosage_form" >
|
55
|
|
- <el-input v-model="form.drug_dosage_form" style="width:160px;" placeholder="" maxlength="30"></el-input>
|
|
62
|
+ <el-select v-model="form.drug_dosage_form" style="width:160px;" placeholder="请选择">
|
|
63
|
+ <el-option
|
|
64
|
+ v-for="item,index in getDictionaryDataConfig('system','drug_dosage_form')"
|
|
65
|
+ :key="index"
|
|
66
|
+ :label="item.name"
|
|
67
|
+ :value="item.id">
|
|
68
|
+ </el-option>
|
|
69
|
+ </el-select>
|
56
|
70
|
</el-form-item>
|
57
|
71
|
<el-form-item label="医保等级 : " prop="medical_insurance_level" >
|
58
|
72
|
<el-select v-model="form.medical_insurance_level" style="width:160px;" placeholder="请选择">
|