|
@@ -151,16 +151,17 @@
|
151
|
151
|
</el-table>
|
152
|
152
|
|
153
|
153
|
<el-table
|
154
|
|
- v-loading="isloading"
|
155
|
|
- :row-style="{ color: '#303133' }"
|
156
|
|
- :data="scheduleData"
|
157
|
|
- border
|
158
|
|
- :header-cell-style="{
|
159
|
|
- backgroundColor: 'rgb(245, 247, 250)',
|
160
|
|
- color: '#606266'
|
161
|
|
- }"
|
162
|
|
- style="width: 100%"
|
163
|
|
- @selection-change="handleSelectionChange"
|
|
154
|
+ v-loading="isloading"
|
|
155
|
+ :row-style="{ color: '#303133' }"
|
|
156
|
+ :data="scheduleData"
|
|
157
|
+ border
|
|
158
|
+ :header-cell-style="{
|
|
159
|
+ backgroundColor: 'rgb(245, 247, 250)',
|
|
160
|
+ color: '#606266'
|
|
161
|
+ }"
|
|
162
|
+ style="width: 100%"
|
|
163
|
+ @selection-change="handleSelectionChange"
|
|
164
|
+ height="calc(100vh - 200px)"
|
164
|
165
|
>
|
165
|
166
|
<el-table-column
|
166
|
167
|
align="center"
|
|
@@ -173,7 +174,7 @@
|
173
|
174
|
<span v-if="scope.row.prescription.id == 0">未确定</span>
|
174
|
175
|
</template>
|
175
|
176
|
</el-table-column>
|
176
|
|
- <el-table-column label="星期" min-width="100" align="center">
|
|
177
|
+ <el-table-column label="星期" width="60" align="center">
|
177
|
178
|
<template slot-scope="scope">
|
178
|
179
|
<span v-if="scope.row.schedule_week == 0">周日</span>
|
179
|
180
|
<span v-if="scope.row.schedule_week == 1">周一</span>
|
|
@@ -184,7 +185,7 @@
|
184
|
185
|
<span v-if="scope.row.schedule_week == 6">周六</span>
|
185
|
186
|
</template>
|
186
|
187
|
</el-table-column>
|
187
|
|
- <el-table-column label="姓名" min-width="100" align="center">
|
|
188
|
+ <el-table-column label="姓名" width="80" align="center">
|
188
|
189
|
<template slot-scope="scope">
|
189
|
190
|
{{ scope.row.patient.name }}
|
190
|
191
|
</template>
|
|
@@ -194,17 +195,17 @@
|
194
|
195
|
{{ scope.row.zone.name }} ({{ getType(scope.row.partition_id) }})
|
195
|
196
|
</template>
|
196
|
197
|
</el-table-column>
|
197
|
|
- <el-table-column label="班次" min-width="70" align="center">
|
|
198
|
+ <el-table-column label="班次" width="70" align="center">
|
198
|
199
|
<template slot-scope="scope">
|
199
|
200
|
{{ getSchedulesType(scope.row.schedule_type) }}
|
200
|
201
|
</template>
|
201
|
202
|
</el-table-column>
|
202
|
|
- <el-table-column label="机号" min-width="70" align="center">
|
|
203
|
+ <el-table-column label="机号" width="70" align="center">
|
203
|
204
|
<template slot-scope="scope">
|
204
|
205
|
{{ scope.row.number.number }}
|
205
|
206
|
</template>
|
206
|
207
|
</el-table-column>
|
207
|
|
- <el-table-column label="透析模式" min-width="100" align="center">
|
|
208
|
+ <el-table-column label="透析模式" min-width="60" align="center">
|
208
|
209
|
<template slot-scope="scope">
|
209
|
210
|
{{
|
210
|
211
|
scope.row.mode_id && modeOptions[scope.row.mode_id]
|
|
@@ -249,7 +250,7 @@
|
249
|
250
|
</span>
|
250
|
251
|
</template>
|
251
|
252
|
</el-table-column>
|
252
|
|
- <el-table-column label="总量" min-width="100" align="center">
|
|
253
|
+ <el-table-column label="总量" min-width="70" align="center">
|
253
|
254
|
<template slot-scope="scope">
|
254
|
255
|
<span v-if="scope.row.dialysissolution.anticoagulant == 1">{{
|
255
|
256
|
scope.row.dialysissolution.anticoagulant_zongliang
|