|
@@ -139,6 +139,7 @@
|
139
|
139
|
</template>
|
140
|
140
|
</el-table-column>
|
141
|
141
|
</el-table>
|
|
142
|
+
|
142
|
143
|
<el-table
|
143
|
144
|
v-if="prescription.type == 2"
|
144
|
145
|
:data="prescription.project"
|
|
@@ -181,6 +182,13 @@
|
181
|
182
|
: "耗材"
|
182
|
183
|
}}</template>
|
183
|
184
|
</el-table-column>
|
|
185
|
+
|
|
186
|
+ <el-table-column align="center" prop="name" width="80" label="规格/型号">
|
|
187
|
+ <template slot-scope="scope">
|
|
188
|
+ <div>{{ scope.row.spec }}</div>
|
|
189
|
+ </template>
|
|
190
|
+ </el-table-column>
|
|
191
|
+
|
184
|
192
|
<el-table-column
|
185
|
193
|
align="center"
|
186
|
194
|
prop="single_dose"
|
|
@@ -238,11 +246,7 @@
|
238
|
246
|
</template>
|
239
|
247
|
</el-table-column>
|
240
|
248
|
|
241
|
|
- <el-table-column align="center" prop="name" width="80" label="规格/型号">
|
242
|
|
- <template slot-scope="scope">
|
243
|
|
- <div>{{ scope.row.spec }}</div>
|
244
|
|
- </template>
|
245
|
|
- </el-table-column>
|
|
249
|
+
|
246
|
250
|
|
247
|
251
|
<el-table-column align="center" prop="name" width="60" label="金额">
|
248
|
252
|
<template slot-scope="scope">
|