|
@@ -21,6 +21,15 @@
|
21
|
21
|
</div>
|
22
|
22
|
</template>
|
23
|
23
|
</el-table-column>
|
|
24
|
+
|
|
25
|
+ <el-table-column align="center" prop="single_dose" width="90" label="规格">
|
|
26
|
+ <template slot-scope="scope">
|
|
27
|
+ <div style="display:flex;align-items:center;">
|
|
28
|
+ <span v-if="scope.row.drug.min_unit != scope.row.drug.dose_unit">{{scope.row.drug.dose}}{{scope.row.drug.dose_unit}} * </span>{{scope.row.drug.min_number}}{{scope.row.drug.min_unit}}/{{scope.row.drug.max_unit}}
|
|
29
|
+ </div>
|
|
30
|
+ </template>
|
|
31
|
+ </el-table-column>
|
|
32
|
+
|
24
|
33
|
<el-table-column align="center" prop="delivery_way" width="100" label="用法">
|
25
|
34
|
<template slot-scope="scope">
|
26
|
35
|
<el-select v-model="scope.row.delivery_way" placeholder="请选择">
|
|
@@ -90,6 +99,11 @@
|
90
|
99
|
<el-table-column align="center" prop="statistical_classification" width="100" label="组">
|
91
|
100
|
<template slot-scope="scope">{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</template>
|
92
|
101
|
</el-table-column>
|
|
102
|
+
|
|
103
|
+ <el-table-column align="center" prop="statistical_classification" width="100" label="规格">
|
|
104
|
+ <template slot-scope="scope">{{scope.row.type == 2?"":scope.row.good_info.specification_name}}</template>
|
|
105
|
+ </el-table-column>
|
|
106
|
+
|
93
|
107
|
<el-table-column align="center" prop="single_dose" width="80" label="单次用量">
|
94
|
108
|
<template slot-scope="scope">
|
95
|
109
|
<el-input v-model="scope.row.single_dose" @input="getProjectSingleDose(scope)" placeholder=""></el-input>
|