|
@@ -29,7 +29,7 @@
|
29
|
29
|
:value="item.id">
|
30
|
30
|
</el-option>
|
31
|
31
|
</el-select>
|
32
|
|
- <button @click="lili">调试</button>
|
|
32
|
+<!-- <button @click="lili">调试</button>-->
|
33
|
33
|
<button @click="">保存</button>
|
34
|
34
|
</div>
|
35
|
35
|
<el-container>
|
|
@@ -208,19 +208,19 @@
|
208
|
208
|
</el-select>
|
209
|
209
|
</template>
|
210
|
210
|
</el-table-column>
|
|
211
|
+ <el-table-column
|
|
212
|
+ label="组"
|
|
213
|
+ width="120">
|
|
214
|
+ <template slot-scope="scope">
|
|
215
|
+ <el-input v-model="scope.row.single_dose" placeholder="请输入内容"></el-input>
|
|
216
|
+ </template>
|
|
217
|
+ </el-table-column>
|
211
|
218
|
<el-table-column
|
212
|
219
|
label="单次用量"
|
213
|
220
|
width="120">
|
214
|
221
|
<template slot-scope="scope">
|
215
|
222
|
<el-input v-model="scope.row.single_dose" placeholder="请输入内容"></el-input>
|
216
|
|
- <el-select v-model="scope.row.single_dose_unit" placeholder="请选择">
|
217
|
|
- <el-option
|
218
|
|
- v-for="item in unit"
|
219
|
|
- :key="item.id"
|
220
|
|
- :label="item.name"
|
221
|
|
- :value="item.id">
|
222
|
|
- </el-option>
|
223
|
|
- </el-select>
|
|
223
|
+ 单位
|
224
|
224
|
</template>
|
225
|
225
|
</el-table-column>
|
226
|
226
|
<el-table-column
|
|
@@ -263,14 +263,7 @@
|
263
|
263
|
width="120">
|
264
|
264
|
<template slot-scope="scope">
|
265
|
265
|
<el-input v-model="scope.row.prescribing_number" placeholder="请输入内容"></el-input>
|
266
|
|
- <el-select v-model="scope.row.prescribing_number_unit" placeholder="请选择">
|
267
|
|
- <el-option
|
268
|
|
- v-for="item in unit"
|
269
|
|
- :key="item.id"
|
270
|
|
- :label="item.name"
|
271
|
|
- :value="item.id">
|
272
|
|
- </el-option>
|
273
|
|
- </el-select>
|
|
266
|
+ 单位
|
274
|
267
|
</template>
|
275
|
268
|
</el-table-column>
|
276
|
269
|
<el-table-column
|