|
@@ -15,32 +15,42 @@
|
15
|
15
|
</el-table-column>
|
16
|
16
|
<el-table-column align="center" prop="name" width="50" label="用法">
|
17
|
17
|
<template slot-scope="scope">
|
18
|
|
- <el-input v-model="scope.row.delivery_way" readonly></el-input>
|
|
18
|
+ <!--<el-input v-model="scope.row.delivery_way" readonly></el-input>-->
|
|
19
|
+ <div> {{scope.row.delivery_way}}</div>
|
|
20
|
+
|
19
|
21
|
|
20
|
22
|
</template>
|
21
|
23
|
</el-table-column>
|
22
|
24
|
<el-table-column align="center" prop="name" width="50" label="频率">
|
23
|
25
|
<template slot-scope="scope">
|
24
|
|
- <el-input v-model="scope.row.execution_frequency" readonly></el-input>
|
|
26
|
+ <!--<el-input v-model="scope.row.execution_frequency" readonly></el-input>-->
|
|
27
|
+ <div> {{scope.row.execution_frequency}}</div>
|
|
28
|
+
|
25
|
29
|
</template>
|
26
|
30
|
</el-table-column>
|
27
|
31
|
|
28
|
32
|
<el-table-column align="center" prop="name" width="100" label="总量">
|
29
|
33
|
<template slot-scope="scope">
|
30
|
34
|
<div style="display:flex;">
|
31
|
|
- <el-input v-model="scope.row.prescribing_number" style="width:50%" readonly placeholder=""></el-input>
|
|
35
|
+ <!--<el-input v-model="scope.row.prescribing_number" style="width:50%" readonly placeholder=""></el-input>-->
|
|
36
|
+ <div> {{scope.row.prescribing_number}}</div>
|
|
37
|
+
|
32
|
38
|
<div>{{scope.row.prescribing_number_unit}}</div>
|
33
|
39
|
</div>
|
34
|
40
|
</template>
|
35
|
41
|
</el-table-column>
|
36
|
42
|
<el-table-column align="center" prop="name" width="50" label="单价">
|
37
|
43
|
<template slot-scope="scope">
|
38
|
|
- <el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>
|
|
44
|
+ <div> {{scope.row.retail_price}}</div>
|
|
45
|
+
|
|
46
|
+ <!--<el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>-->
|
39
|
47
|
</template>
|
40
|
48
|
</el-table-column>
|
41
|
49
|
<el-table-column align="center" prop="name" width="50" label="备注">
|
42
|
50
|
<template slot-scope="scope">
|
43
|
|
- <el-input v-model="scope.row.remark" style="width:50%" placeholder="" readonly></el-input>
|
|
51
|
+ <!--<el-input v-model="scope.row.remark" style="width:50%" placeholder="" readonly></el-input>-->
|
|
52
|
+ <div> {{scope.row.remark}}</div>
|
|
53
|
+
|
44
|
54
|
</template>
|
45
|
55
|
</el-table-column>
|
46
|
56
|
</el-table>
|
|
@@ -58,39 +68,53 @@
|
58
|
68
|
</el-table-column>
|
59
|
69
|
<el-table-column align="center" prop="single_dose" width="130" :label="'单次\n用量'">
|
60
|
70
|
<template slot-scope="scope">
|
61
|
|
- <el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>
|
|
71
|
+ <!--<el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>-->
|
|
72
|
+ <div> {{scope.row.single_dose}}</div>
|
|
73
|
+
|
62
|
74
|
</template>
|
63
|
75
|
</el-table-column>
|
64
|
76
|
<el-table-column align="center" prop="delivery_way" width="130" label="用法">
|
65
|
77
|
<template slot-scope="scope">
|
66
|
|
- <el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>
|
|
78
|
+ <!--<el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>-->
|
|
79
|
+ <div> {{scope.row.delivery_way}}</div>
|
|
80
|
+
|
67
|
81
|
</template>
|
68
|
82
|
</el-table-column>
|
69
|
83
|
<el-table-column align="center" prop="execution_frequency" width="130" label="频率">
|
70
|
84
|
<template slot-scope="scope">
|
71
|
|
- <el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>
|
|
85
|
+ <!--<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>-->
|
|
86
|
+ <div> {{scope.row.execution_frequency}}</div>
|
|
87
|
+
|
72
|
88
|
</template>
|
73
|
89
|
</el-table-column>
|
74
|
90
|
<el-table-column align="center" prop="number_days" width="130" label="天数">
|
75
|
91
|
<template slot-scope="scope">
|
76
|
|
- <el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>
|
|
92
|
+ <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
|
|
93
|
+ <div> {{scope.row.number_days}}</div>
|
|
94
|
+
|
77
|
95
|
</template>
|
78
|
96
|
</el-table-column>
|
79
|
97
|
<el-table-column align="center" prop="total" width="100" label="总量">
|
80
|
98
|
<template slot-scope="scope">
|
81
|
99
|
<div style="display:flex;">
|
82
|
|
- <el-input v-model="scope.row.total" style="width:50" placeholder="" readonly></el-input>
|
|
100
|
+ <!--<el-input v-model="scope.row.total" style="width:50" placeholder="" readonly></el-input>-->
|
|
101
|
+ <div> {{scope.row.total}}</div>
|
|
102
|
+
|
83
|
103
|
</div>
|
84
|
104
|
</template>
|
85
|
105
|
</el-table-column>
|
86
|
106
|
<el-table-column align="center" prop="name" width="50" label="单价">
|
87
|
107
|
<template slot-scope="scope">
|
88
|
|
- <el-input v-model="scope.row.price" placeholder="" readonly></el-input>
|
|
108
|
+ <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
|
|
109
|
+ <div> {{scope.row.price}}</div>
|
|
110
|
+
|
89
|
111
|
</template>
|
90
|
112
|
</el-table-column>
|
91
|
113
|
<el-table-column align="center" prop="name" width="120" label="备注">
|
92
|
114
|
<template slot-scope="scope">
|
93
|
|
- <el-input v-model="scope.row.remark" readonly></el-input>
|
|
115
|
+ <!--<el-input v-model="scope.row.remark" readonly></el-input>-->
|
|
116
|
+ <div> {{scope.row.remark}}</div>
|
|
117
|
+
|
94
|
118
|
</template>
|
95
|
119
|
</el-table-column>
|
96
|
120
|
</el-table>
|