Przeglądaj źródła

10月12,质控

yq1 5 miesięcy temu
rodzic
commit
6fe04f0b46

+ 4 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/after_Blood.vue Wyświetl plik

@@ -130,6 +130,7 @@
130 130
               style="width: 100%;"
131 131
               :header-cell-style = "{'text-align':'center'}"
132 132
               :cell-style="{'text-align':'center'}"
133
+              v-loading="loading"
133 134
               height="380">
134 135
               <el-table-column
135 136
                 prop="index"
@@ -217,6 +218,7 @@ import html2canvas from "html2canvas"
217 218
         date_mode_options:[{value:1,label:'按周'},{value:2,label:'按天'},{value:3,label:'按月'},{value:4,label:'按年'}],
218 219
         source_options:[{value:1,label:'以开始透析为准'},{value:2,label:'以排班为准'}],
219 220
         status_id:"",
221
+        loading:false,
220 222
       }
221 223
     },
222 224
     methods:{
@@ -398,6 +400,7 @@ import html2canvas from "html2canvas"
398 400
           page:this.currentPage,
399 401
           limit:this.limit,
400 402
         }
403
+        this.loading =true
401 404
         Getbpdetail(params).then(response =>{
402 405
           if(response.data.state ==1){
403 406
             const list = response.data.data.list
@@ -419,6 +422,7 @@ import html2canvas from "html2canvas"
419 422
               this.total = response.data.data.total
420 423
             }
421 424
           }
425
+          this.loading =false
422 426
           console.log('55555透后',response);
423 427
         })
424 428
       },

+ 4 - 1
src/xt_pages/Dialysisanalysis/weightblood/components/before_Blood.vue Wyświetl plik

@@ -130,6 +130,7 @@
130 130
               style="width: 100%;"
131 131
               :header-cell-style = "{'text-align':'center'}"
132 132
               :cell-style="{'text-align':'center'}"
133
+              v-loading="loading"
133 134
               height="380">
134 135
               <el-table-column
135 136
                 prop="index"
@@ -224,7 +225,7 @@ import html2canvas from "html2canvas"
224 225
         date_mode_options:[{value:1,label:'按周'},{value:2,label:'按天'},{value:3,label:'按月'},{value:4,label:'按年'}],
225 226
         source_options:[{value:1,label:'以开始透析为准'},{value:2,label:'以排班为准'}],
226 227
         status_id:"",
227
-
228
+        loading:false,
228 229
       }
229 230
     },
230 231
     methods:{
@@ -404,6 +405,7 @@ import html2canvas from "html2canvas"
404 405
           page:this.currentPage,
405 406
           limit:this.limit,
406 407
         }
408
+        this.loading =true
407 409
         Getbpdetail(params).then(response =>{
408 410
           console.log('Getbpdetail血压',response.data);
409 411
           if(response.data.state){
@@ -428,6 +430,7 @@ import html2canvas from "html2canvas"
428 430
             }
429 431
           }
430 432
           console.log('55555',response);
433
+          this.loading =false
431 434
         })
432 435
       },
433 436
       // 选择日期

+ 4 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/blood_table.vue Wyświetl plik

@@ -77,6 +77,7 @@
77 77
         <el-table :data="tableData" border style="width: 100%"
78 78
         :header-cell-style="{textAlign: 'center'}"
79 79
         :cell-style="{ textAlign: 'center' }"
80
+        v-loading="loading"
80 81
         height="380">
81 82
           <el-table-column
82 83
             prop="index"
@@ -197,6 +198,7 @@ import html2canvas from "html2canvas"
197 198
 
198 199
 
199 200
         input:'',
201
+        loading:true
200 202
       }
201 203
     },
202 204
     methods:{
@@ -309,6 +311,7 @@ import html2canvas from "html2canvas"
309 311
           page:this.currentPage,
310 312
           limit:this.limit,
311 313
         }
314
+        this.loading =true
312 315
         Getbpdetail(params).then(response =>{
313 316
           if(response.data.state == 1){
314 317
             const list = response.data.data.list
@@ -336,6 +339,7 @@ import html2canvas from "html2canvas"
336 339
               this.total = response.data.data.total
337 340
             }
338 341
           }
342
+          this.loading =false
339 343
           console.log('77777血压表格',response);
340 344
         })
341 345
       },

+ 4 - 1
src/xt_pages/Dialysisanalysis/weightblood/components/dialyze_after.vue Wyświetl plik

@@ -152,6 +152,7 @@
152 152
           <el-table :data="tableData" border style="width: 100%"
153 153
           :header-cell-style="{textAlign: 'center'}"
154 154
           :cell-style="{ textAlign: 'center' }"
155
+          v-loading="loading"
155 156
           height="380">
156 157
             <el-table-column
157 158
               prop="index"
@@ -255,7 +256,6 @@ import html2canvas from "html2canvas"
255 256
         dry_value:0,
256 257
         after_value:0,
257 258
         after_options:[],
258
-        Patient_name:'',
259 259
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
260 260
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
261 261
         ],
@@ -266,6 +266,7 @@ import html2canvas from "html2canvas"
266 266
         source_options:[{value:1,label:'以开始透析为准'},{value:2,label:'以排班为准'}],
267 267
 
268 268
         Patient_name:'',
269
+        loading:false,
269 270
       }
270 271
     },
271 272
     methods:{
@@ -505,6 +506,7 @@ import html2canvas from "html2canvas"
505 506
           page:this.currentPage,
506 507
           limit:this.limit,
507 508
         }
509
+        this.loading = true
508 510
         Getweightdetail(params).then(response =>{
509 511
           if(response.data.state == 1){
510 512
             const list = response.data.data.list
@@ -530,6 +532,7 @@ import html2canvas from "html2canvas"
530 532
               this.total = response.data.data.total
531 533
             }
532 534
           }
535
+          this.loading = false
533 536
           console.log('77777',response);
534 537
         })
535 538
       },

+ 4 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/dry_denominator.vue Wyświetl plik

@@ -153,6 +153,7 @@
153 153
           <el-table :data="tableData" border style="width: 100%"
154 154
           :header-cell-style="{textAlign: 'center'}"
155 155
           :cell-style="{ textAlign: 'center' }"
156
+          v-loading="loading"
156 157
           height="380">
157 158
             <el-table-column
158 159
               prop="index"
@@ -268,6 +269,7 @@ import html2canvas from "html2canvas"
268 269
 
269 270
 
270 271
         input:'',
272
+        loading:false
271 273
       }
272 274
     },
273 275
     methods:{
@@ -507,6 +509,7 @@ import html2canvas from "html2canvas"
507 509
           page:this.currentPage,
508 510
           limit:this.limit,
509 511
         }
512
+        this.loading = true
510 513
         Getweightdetail(params).then(response =>{
511 514
           if(response.data.state == 1){
512 515
             const list = response.data.data.list
@@ -531,6 +534,7 @@ import html2canvas from "html2canvas"
531 534
               this.tableData = table
532 535
               this.total = response.data.data.total
533 536
             }
537
+            this.loading = false
534 538
           }
535 539
           console.log('77777',response);
536 540
         })

+ 7 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/dry_weight.vue Wyświetl plik

@@ -129,6 +129,7 @@
129 129
               style="width: 100%;"
130 130
               :header-cell-style = "{'text-align':'center'}"
131 131
               :cell-style="{'text-align':'center'}"
132
+              v-loading="loading"
132 133
               height="380">
133 134
               <el-table-column
134 135
                 prop="index"
@@ -221,6 +222,7 @@ import html2canvas from "html2canvas"
221 222
         date_mode_options:[{value:1,label:'按周'},{value:2,label:'按天'},{value:3,label:'按月'},{value:4,label:'按年'}],
222 223
         source_options:[{value:1,label:'以开始透析为准'},{value:2,label:'以排班为准'}],
223 224
         status_id:"",
225
+        loading:false,
224 226
       }
225 227
     },
226 228
     methods:{
@@ -338,12 +340,15 @@ import html2canvas from "html2canvas"
338 340
       },
339 341
       // 查询
340 342
       sete_click(){
343
+        
341 344
         this.getecharts()
342 345
       },
343 346
       // 详情查询
344 347
       detil_click(){
348
+        
345 349
         this.currentPage =1
346 350
         this.getdetail(this.status_value)
351
+        
347 352
       },
348 353
        // 下载
349 354
       Download_click(){
@@ -405,6 +410,7 @@ import html2canvas from "html2canvas"
405 410
           page:this.currentPage,
406 411
           limit:this.limit,
407 412
         }
413
+        this.loading = true
408 414
         Getweightdetail(params).then(response =>{
409 415
           if(response.data.state ==1){
410 416
             const list = response.data.data.list
@@ -424,6 +430,7 @@ import html2canvas from "html2canvas"
424 430
               this.tableData = table
425 431
               this.total = response.data.data.total
426 432
             }
433
+            this.loading = false
427 434
           }
428 435
           console.log('555553333干体重',response);
429 436
         })

+ 4 - 1
src/xt_pages/Dialysisanalysis/weightblood/components/list_denominator.vue Wyświetl plik

@@ -152,6 +152,7 @@
152 152
           <el-table :data="tableData" border style="width: 100%"
153 153
           :header-cell-style="{textAlign: 'center'}"
154 154
           :cell-style="{ textAlign: 'center' }"
155
+          v-loading="loading"
155 156
           height="380">
156 157
             <el-table-column
157 158
               prop="index"
@@ -265,8 +266,8 @@ import html2canvas from "html2canvas"
265 266
         date_mode_options:[{value:1,label:'按周'},{value:2,label:'按天'},{value:3,label:'按月'},{value:4,label:'按年'}],
266 267
         source_options:[{value:1,label:'以开始透析为准'},{value:2,label:'以排班为准'}],
267 268
 
268
-
269 269
         input:'',
270
+        loading:false,
270 271
       }
271 272
     },
272 273
     methods:{
@@ -510,6 +511,7 @@ import html2canvas from "html2canvas"
510 511
           page:this.currentPage,
511 512
           limit:this.limit,
512 513
         }
514
+        this.loading = true
513 515
         Getweightdetail(params).then(response =>{
514 516
           console.log('77777',response);
515 517
           if(response.data.state == 1){
@@ -535,6 +537,7 @@ import html2canvas from "html2canvas"
535 537
               this.tableData = table
536 538
               this.total = response.data.data.total
537 539
             }
540
+            this.loading = false
538 541
           }
539 542
 
540 543
         })

+ 4 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/weight_table.vue Wyświetl plik

@@ -92,6 +92,7 @@
92 92
         <el-table :data="tableData" border style="width: 100%"
93 93
           :header-cell-style="{textAlign: 'center'}"
94 94
           :cell-style="{ textAlign: 'center' }"
95
+          v-loading="loading"
95 96
           height="380">
96 97
             <el-table-column
97 98
               prop="index"
@@ -208,6 +209,7 @@ import html2canvas from "html2canvas"
208 209
         weight_value:0,
209 210
         dry_value:0,
210 211
         after_value:0,
212
+        loading:false
211 213
         // after_options:[],
212 214
 
213 215
       }
@@ -359,6 +361,7 @@ import html2canvas from "html2canvas"
359 361
           page:this.currentPage,
360 362
           limit:this.limit,
361 363
         }
364
+        this.loading = true
362 365
         Getweightdetail(params).then(response =>{
363 366
           if(response.data.state == 1){
364 367
             console.log('体重详情分析',response.data.data);
@@ -385,6 +388,7 @@ import html2canvas from "html2canvas"
385 388
               this.total = response.data.data.total
386 389
             }
387 390
           }
391
+          this.loading = false
388 392
           console.log('77777',response);
389 393
         })
390 394
       },