Przeglądaj źródła

9月25,排版提醒页面美化

yq1 6 miesięcy temu
rodzic
commit
dbf52d31a1

+ 8 - 7
src/xt_pages/workforce/components/nextTableWeeks.vue Wyświetl plik

98
       }"
98
       }"
99
       style="width: 100%"
99
       style="width: 100%"
100
       @selection-change="handleSelectionChange"
100
       @selection-change="handleSelectionChange"
101
+      height="calc(80vh - 200px)"
101
     >
102
     >
102
      <el-table-column
103
      <el-table-column
103
         align="center"
104
         align="center"
110
           <span v-if="scope.row.prescription.id == 0">未确认</span>
111
           <span v-if="scope.row.prescription.id == 0">未确认</span>
111
         </template>
112
         </template>
112
       </el-table-column>
113
       </el-table-column>
113
-      <el-table-column label="星期" min-width="100" align="center">
114
+      <el-table-column label="星期" width="60" align="center">
114
         <template slot-scope="scope">
115
         <template slot-scope="scope">
115
            <span v-if="scope.row.schedule_week == 0">周日</span>
116
            <span v-if="scope.row.schedule_week == 0">周日</span>
116
            <span v-if="scope.row.schedule_week == 1">周一</span>
117
            <span v-if="scope.row.schedule_week == 1">周一</span>
121
            <span v-if="scope.row.schedule_week == 6">周六</span>
122
            <span v-if="scope.row.schedule_week == 6">周六</span>
122
         </template>
123
         </template>
123
       </el-table-column>
124
       </el-table-column>
124
-      <el-table-column label="姓名" min-width="100" align="center">
125
+      <el-table-column label="姓名" width="70" align="center">
125
         <template slot-scope="scope">
126
         <template slot-scope="scope">
126
           {{ scope.row.patient }}
127
           {{ scope.row.patient }}
127
         </template>
128
         </template>
128
       </el-table-column>
129
       </el-table-column>
129
-      <el-table-column label="分区" min-width="100" align="center">
130
+      <el-table-column label="分区" min-width="110" align="center">
130
         <template slot-scope="scope">
131
         <template slot-scope="scope">
131
           {{ scope.row.zone.name }}({{ getType(scope.row.partition_id)  }})
132
           {{ scope.row.zone.name }}({{ getType(scope.row.partition_id)  }})
132
         </template>
133
         </template>
133
       </el-table-column>
134
       </el-table-column>
134
-      <el-table-column label="班次" min-width="70" align="center">
135
+      <el-table-column label="班次" width="70" align="center">
135
         <template slot-scope="scope">
136
         <template slot-scope="scope">
136
           {{ getSchedulesType(scope.row.schedule_type) }}
137
           {{ getSchedulesType(scope.row.schedule_type) }}
137
         </template>
138
         </template>
138
       </el-table-column>
139
       </el-table-column>
139
-      <el-table-column label="机号" min-width="70" align="center">
140
+      <el-table-column label="机号" width="70" align="center">
140
         <template slot-scope="scope">
141
         <template slot-scope="scope">
141
           {{ scope.row.number.number }}
142
           {{ scope.row.number.number }}
142
         </template>
143
         </template>
143
       </el-table-column>
144
       </el-table-column>
144
-      <el-table-column label="透析模式" min-width="100" align="center">
145
+      <el-table-column label="透析模式" width="100" align="center">
145
         <template slot-scope="scope">
146
         <template slot-scope="scope">
146
           {{
147
           {{
147
             scope.row.mode_id && modeOptions[scope.row.mode_id]
148
             scope.row.mode_id && modeOptions[scope.row.mode_id]
183
           </span> -->
184
           </span> -->
184
         </template>
185
         </template>
185
       </el-table-column>
186
       </el-table-column>
186
-      <el-table-column label="总量" min-width="100" align="center">
187
+      <el-table-column label="总量" width="70" align="center">
187
         <template slot-scope="scope">
188
         <template slot-scope="scope">
188
           <span v-if="scope.row.dialysissolution.anticoagulant == 1">{{
189
           <span v-if="scope.row.dialysissolution.anticoagulant == 1">{{
189
             scope.row.dialysissolution.anticoagulant_zongliang
190
             scope.row.dialysissolution.anticoagulant_zongliang

+ 17 - 16
src/xt_pages/workforce/components/tableWeeks.vue Wyświetl plik

151
         </el-table>
151
         </el-table>
152
 
152
 
153
         <el-table
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
           <el-table-column
166
           <el-table-column
166
             align="center"
167
             align="center"
173
                     <span v-if="scope.row.prescription.id == 0">未确定</span>
174
                     <span v-if="scope.row.prescription.id == 0">未确定</span>
174
                 </template>
175
                 </template>
175
             </el-table-column>
176
             </el-table-column>
176
-            <el-table-column label="星期" min-width="100" align="center">
177
+            <el-table-column label="星期" width="60" align="center">
177
                 <template slot-scope="scope">
178
                 <template slot-scope="scope">
178
                     <span v-if="scope.row.schedule_week == 0">周日</span>
179
                     <span v-if="scope.row.schedule_week == 0">周日</span>
179
                     <span v-if="scope.row.schedule_week == 1">周一</span>
180
                     <span v-if="scope.row.schedule_week == 1">周一</span>
184
                     <span v-if="scope.row.schedule_week == 6">周六</span>
185
                     <span v-if="scope.row.schedule_week == 6">周六</span>
185
                 </template>
186
                 </template>
186
             </el-table-column>
187
             </el-table-column>
187
-            <el-table-column label="姓名" min-width="100" align="center">
188
+            <el-table-column label="姓名" width="80" align="center">
188
                 <template slot-scope="scope">
189
                 <template slot-scope="scope">
189
                     {{ scope.row.patient.name }}
190
                     {{ scope.row.patient.name }}
190
                 </template>
191
                 </template>
194
                     {{ scope.row.zone.name }} ({{ getType(scope.row.partition_id)  }})
195
                     {{ scope.row.zone.name }} ({{ getType(scope.row.partition_id)  }})
195
                 </template>
196
                 </template>
196
             </el-table-column>
197
             </el-table-column>
197
-            <el-table-column label="班次" min-width="70" align="center">
198
+            <el-table-column label="班次" width="70" align="center">
198
                 <template slot-scope="scope">
199
                 <template slot-scope="scope">
199
                     {{ getSchedulesType(scope.row.schedule_type) }}
200
                     {{ getSchedulesType(scope.row.schedule_type) }}
200
                 </template>
201
                 </template>
201
             </el-table-column>
202
             </el-table-column>
202
-            <el-table-column label="机号" min-width="70" align="center">
203
+            <el-table-column label="机号" width="70" align="center">
203
                 <template slot-scope="scope">
204
                 <template slot-scope="scope">
204
                     {{ scope.row.number.number }}
205
                     {{ scope.row.number.number }}
205
                 </template>
206
                 </template>
206
             </el-table-column>
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
                 <template slot-scope="scope">
209
                 <template slot-scope="scope">
209
                     {{
210
                     {{
210
                     scope.row.mode_id && modeOptions[scope.row.mode_id]
211
                     scope.row.mode_id && modeOptions[scope.row.mode_id]
249
           </span>
250
           </span>
250
                 </template>
251
                 </template>
251
             </el-table-column>
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
                 <template slot-scope="scope">
254
                 <template slot-scope="scope">
254
           <span v-if="scope.row.dialysissolution.anticoagulant == 1">{{
255
           <span v-if="scope.row.dialysissolution.anticoagulant == 1">{{
255
             scope.row.dialysissolution.anticoagulant_zongliang
256
             scope.row.dialysissolution.anticoagulant_zongliang