|
@@ -61,12 +61,12 @@
|
61
|
61
|
<el-table-column align="center" prop="project_name" label="名称">
|
62
|
62
|
<template slot-scope="scope">{{ scope.row.project_name }}</template>
|
63
|
63
|
</el-table-column>
|
64
|
|
- <el-table-column align="center" prop="statistical_classification" width="50" label="组">
|
|
64
|
+ <el-table-column align="center" prop="statistical_classification" width="100" label="组">
|
65
|
65
|
<template slot-scope="scope">
|
66
|
|
- {{getGroup(scope.row.statistical_classification)}}
|
|
66
|
+ <div>{{getGroup(scope.row.statistical_classification)}}</div>
|
67
|
67
|
</template>
|
68
|
68
|
</el-table-column>
|
69
|
|
- <el-table-column align="center" prop="single_dose" width="130" :label="'单次\n用量'">
|
|
69
|
+ <el-table-column align="center" prop="single_dose" width="100" label="单次用量">
|
70
|
70
|
<template slot-scope="scope">
|
71
|
71
|
<!--<el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>-->
|
72
|
72
|
<div> {{scope.row.single_dose}}</div>
|
|
@@ -80,30 +80,26 @@
|
80
|
80
|
|
81
|
81
|
</template>
|
82
|
82
|
</el-table-column>
|
83
|
|
- <el-table-column align="center" prop="execution_frequency" width="130" label="频率">
|
|
83
|
+ <el-table-column align="center" prop="execution_frequency" width="100" label="频率">
|
84
|
84
|
<template slot-scope="scope">
|
85
|
85
|
<!--<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>-->
|
86
|
86
|
<div> {{scope.row.execution_frequency}}</div>
|
87
|
87
|
|
88
|
88
|
</template>
|
89
|
89
|
</el-table-column>
|
90
|
|
- <el-table-column align="center" prop="number_days" width="130" label="天数">
|
|
90
|
+ <el-table-column align="center" prop="number_days" width="100" label="天数">
|
91
|
91
|
<template slot-scope="scope">
|
92
|
92
|
<!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
|
93
|
93
|
<div> {{scope.row.number_days}}</div>
|
94
|
94
|
|
95
|
95
|
</template>
|
96
|
96
|
</el-table-column>
|
97
|
|
- <el-table-column align="center" prop="total" width="100" label="总量">
|
|
97
|
+ <el-table-column align="center" prop="total" width="80" label="总量">
|
98
|
98
|
<template slot-scope="scope">
|
99
|
|
- <div style="display:flex;">
|
100
|
|
- <!--<el-input v-model="scope.row.total" style="width:50" placeholder="" readonly></el-input>-->
|
101
|
99
|
<div> {{scope.row.total}}</div>
|
102
|
|
-
|
103
|
|
- </div>
|
104
|
100
|
</template>
|
105
|
101
|
</el-table-column>
|
106
|
|
- <el-table-column align="center" prop="name" width="50" label="单价">
|
|
102
|
+ <el-table-column align="center" prop="name" width="70" label="单价">
|
107
|
103
|
<template slot-scope="scope">
|
108
|
104
|
<!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
|
109
|
105
|
<div> {{scope.row.price}}</div>
|