|
@@ -122,6 +122,16 @@
|
122
|
122
|
<el-form-item label="默认开药数量:" prop="prescribing_number">
|
123
|
123
|
<el-input v-model="form.prescribing_number" style="width:160px;" placeholder=""
|
124
|
124
|
maxlength="30"></el-input>
|
|
125
|
+ </el-form-item>
|
|
126
|
+ <el-form-item label="开药数量单位:" prop="prescribing_number">
|
|
127
|
+ <el-select v-model="form.prescribing_number_unit" style="width:160px;" placeholder="开药数量单位">
|
|
128
|
+ <el-option
|
|
129
|
+ v-for="(item,index) in getDataConfig('hemodialysis','units')"
|
|
130
|
+ :key="index"
|
|
131
|
+ :label="item.name"
|
|
132
|
+ :value="item.name">
|
|
133
|
+ </el-option>
|
|
134
|
+ </el-select>
|
125
|
135
|
</el-form-item>
|
126
|
136
|
<el-form-item label="默认开药天数:" prop="prescribing_number">
|
127
|
137
|
<el-input v-model="form.drug_day" style="width:160px;" placeholder=""
|
|
@@ -534,6 +544,7 @@
|
534
|
544
|
min_price:"",//拆零零售价
|
535
|
545
|
dose_unit:"",//剂量
|
536
|
546
|
dose:"",//剂量单位
|
|
547
|
+ prescribing_number_unit:"",
|
537
|
548
|
},
|
538
|
549
|
|
539
|
550
|
rules: {
|
|
@@ -725,6 +736,7 @@
|
725
|
736
|
this.form.min_unit = ""
|
726
|
737
|
this.form.max_unit = ""
|
727
|
738
|
this.form.min_price = ""
|
|
739
|
+ this.form.prescribing_number_unit = ""
|
728
|
740
|
this.visible = false
|
729
|
741
|
},
|
730
|
742
|
getValue: function() {
|
|
@@ -788,6 +800,7 @@
|
788
|
800
|
form['dose'] = this.form.dose,
|
789
|
801
|
form['dose_unit'] = this.form.dose_unit
|
790
|
802
|
form['min_price'] = this.form.min_price
|
|
803
|
+ form['prescribing_number_unit'] = this.form.prescribing_number_unit
|
791
|
804
|
return form
|
792
|
805
|
},
|
793
|
806
|
getlist() {
|