|
@@ -25,10 +25,10 @@
|
25
|
25
|
<el-form-item label="处方类型: " prop="name" label-position="right">
|
26
|
26
|
<el-select style="width:100%;" v-model="register_type" placeholder="">
|
27
|
27
|
<el-option
|
28
|
|
- v-for="(item,index) in getDictionaryDataConfig('system','prescription_type')"
|
|
28
|
+ v-for="(item,index) in register"
|
29
|
29
|
:key="index"
|
30
|
|
- :label="item.name"
|
31
|
|
- :value="item.id">
|
|
30
|
+ :label="item.label"
|
|
31
|
+ :value="item.value">
|
32
|
32
|
</el-option>
|
33
|
33
|
</el-select>
|
34
|
34
|
</el-form-item>
|
|
@@ -102,7 +102,7 @@
|
102
|
102
|
</div>
|
103
|
103
|
</div>
|
104
|
104
|
|
105
|
|
-
|
|
105
|
+
|
106
|
106
|
|
107
|
107
|
<prescription-table ref="prescription_tables" :prescription="curPrescriptions" :preDrugs="preDrugs"
|
108
|
108
|
:activeType="customTabIndex"></prescription-table>
|
|
@@ -1524,7 +1524,7 @@
|
1524
|
1524
|
}
|
1525
|
1525
|
}
|
1526
|
1526
|
},
|
1527
|
|
-
|
|
1527
|
+
|
1528
|
1528
|
}
|
1529
|
1529
|
</script>
|
1530
|
1530
|
|