瀏覽代碼

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

yq1 6 月之前
父節點
當前提交
dbf52d31a1
共有 2 個文件被更改,包括 25 次插入23 次删除
  1. 8 7
      src/xt_pages/workforce/components/nextTableWeeks.vue
  2. 17 16
      src/xt_pages/workforce/components/tableWeeks.vue

+ 8 - 7
src/xt_pages/workforce/components/nextTableWeeks.vue 查看文件

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

+ 17 - 16
src/xt_pages/workforce/components/tableWeeks.vue 查看文件

@@ -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