|
@@ -4,22 +4,24 @@
|
4
|
4
|
:row-style="{ color: '#303133' }"
|
5
|
5
|
:header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
|
6
|
6
|
<el-table-column align="center" prop="name" label="名称">
|
7
|
|
- <template slot-scope="scope">{{ scope.row.drug_name }}</template>
|
|
7
|
+ <template slot-scope="scope"><span :title='scope.row.drug_name'>{{ scope.row.drug_name }}</span></template>
|
8
|
8
|
</el-table-column>
|
9
|
9
|
|
10
|
|
- <el-table-column align="center" prop="name" width="50" :label="'单次\n用量'">
|
|
10
|
+ <el-table-column align="center" prop="name" width="90" label="单次用量">
|
11
|
11
|
<template slot-scope="scope">
|
12
|
|
- <el-input v-model="scope.row.single_dose" readonly></el-input>
|
13
|
|
- <div> {{scope.row.min_unit}}</div>
|
|
12
|
+ <div style="display:flex;align-items:center;">
|
|
13
|
+ <el-input v-model="scope.row.single_dose" readonly style="width:65%;"></el-input>
|
|
14
|
+ <div> {{scope.row.min_unit}}</div>
|
|
15
|
+ </div>
|
14
|
16
|
</template>
|
15
|
17
|
</el-table-column>
|
16
|
|
- <el-table-column align="center" prop="name" width="50" label="用法">
|
|
18
|
+ <el-table-column align="center" prop="name" width="100" label="用法">
|
17
|
19
|
<template slot-scope="scope">
|
18
|
20
|
<el-input v-model="scope.row.delivery_way" readonly></el-input>
|
19
|
21
|
|
20
|
22
|
</template>
|
21
|
23
|
</el-table-column>
|
22
|
|
- <el-table-column align="center" prop="name" width="50" label="频率">
|
|
24
|
+ <el-table-column align="center" prop="name" width="100" label="频率">
|
23
|
25
|
<template slot-scope="scope">
|
24
|
26
|
<el-input v-model="scope.row.execution_frequency" readonly></el-input>
|
25
|
27
|
</template>
|
|
@@ -27,20 +29,20 @@
|
27
|
29
|
|
28
|
30
|
<el-table-column align="center" prop="name" width="100" label="总量">
|
29
|
31
|
<template slot-scope="scope">
|
30
|
|
- <div style="display:flex;">
|
31
|
|
- <el-input v-model="scope.row.prescribing_number" style="width:50%" readonly placeholder=""></el-input>
|
|
32
|
+ <div style="display:flex;align-items:center;">
|
|
33
|
+ <el-input v-model="scope.row.prescribing_number" style="width:60%" readonly placeholder=""></el-input>
|
32
|
34
|
<div>{{scope.row.min_unit}}</div>
|
33
|
35
|
</div>
|
34
|
36
|
</template>
|
35
|
37
|
</el-table-column>
|
36
|
|
- <el-table-column align="center" prop="name" width="50" label="单价">
|
|
38
|
+ <el-table-column align="center" prop="name" width="60" label="单价">
|
37
|
39
|
<template slot-scope="scope">
|
38
|
40
|
<el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>
|
39
|
41
|
</template>
|
40
|
42
|
</el-table-column>
|
41
|
43
|
<el-table-column align="center" prop="name" width="50" label="备注">
|
42
|
44
|
<template slot-scope="scope">
|
43
|
|
- <el-input v-model="scope.row.remark" style="width:50%" placeholder="" readonly></el-input>
|
|
45
|
+ <el-input v-model="scope.row.remark" :title="scope.row.remark" placeholder="" readonly></el-input>
|
44
|
46
|
</template>
|
45
|
47
|
</el-table-column>
|
46
|
48
|
</el-table>
|
|
@@ -51,35 +53,35 @@
|
51
|
53
|
<el-table-column align="center" prop="project_name" label="名称">
|
52
|
54
|
<template slot-scope="scope">{{ scope.row.project_name }}</template>
|
53
|
55
|
</el-table-column>
|
54
|
|
- <el-table-column align="center" prop="statistical_classification" width="50" label="组">
|
|
56
|
+ <el-table-column align="center" prop="statistical_classification" width="100" label="组">
|
55
|
57
|
<template slot-scope="scope">
|
56
|
58
|
{{getGroup(scope.row.statistical_classification)}}
|
57
|
59
|
</template>
|
58
|
60
|
</el-table-column>
|
59
|
|
- <el-table-column align="center" prop="single_dose" width="130" :label="'单次\n用量'">
|
|
61
|
+ <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
|
60
|
62
|
<template slot-scope="scope">
|
61
|
63
|
<el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>
|
62
|
64
|
</template>
|
63
|
65
|
</el-table-column>
|
64
|
|
- <el-table-column align="center" prop="delivery_way" width="130" label="用法">
|
|
66
|
+ <el-table-column align="center" prop="delivery_way" width="80" label="用法">
|
65
|
67
|
<template slot-scope="scope">
|
66
|
68
|
<el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>
|
67
|
69
|
</template>
|
68
|
70
|
</el-table-column>
|
69
|
|
- <el-table-column align="center" prop="execution_frequency" width="130" label="频率">
|
|
71
|
+ <el-table-column align="center" prop="execution_frequency" width="80" label="频率">
|
70
|
72
|
<template slot-scope="scope">
|
71
|
73
|
<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>
|
72
|
74
|
</template>
|
73
|
75
|
</el-table-column>
|
74
|
|
- <el-table-column align="center" prop="number_days" width="130" label="天数">
|
|
76
|
+ <el-table-column align="center" prop="number_days" width="50" label="天数">
|
75
|
77
|
<template slot-scope="scope">
|
76
|
78
|
<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>
|
77
|
79
|
</template>
|
78
|
80
|
</el-table-column>
|
79
|
|
- <el-table-column align="center" prop="total" width="100" label="总量">
|
|
81
|
+ <el-table-column align="center" prop="total" width="50" label="总量">
|
80
|
82
|
<template slot-scope="scope">
|
81
|
83
|
<div style="display:flex;">
|
82
|
|
- <el-input v-model="scope.row.total" style="width:50" placeholder="" readonly></el-input>
|
|
84
|
+ <el-input v-model="scope.row.total" placeholder="" readonly></el-input>
|
83
|
85
|
</div>
|
84
|
86
|
</template>
|
85
|
87
|
</el-table-column>
|
|
@@ -88,18 +90,13 @@
|
88
|
90
|
<el-input v-model="scope.row.price" placeholder="" readonly></el-input>
|
89
|
91
|
</template>
|
90
|
92
|
</el-table-column>
|
91
|
|
- <el-table-column align="center" prop="name" width="120" label="备注">
|
|
93
|
+ <el-table-column align="center" prop="name" width="50" label="备注">
|
92
|
94
|
<template slot-scope="scope">
|
93
|
95
|
<el-input v-model="scope.row.remark" readonly></el-input>
|
94
|
96
|
</template>
|
95
|
97
|
</el-table-column>
|
96
|
98
|
</el-table>
|
97
|
99
|
</div>
|
98
|
|
-
|
99
|
|
-
|
100
|
|
-
|
101
|
|
-
|
102
|
|
-
|
103
|
100
|
</template>
|
104
|
101
|
|
105
|
102
|
<script>
|