|
@@ -245,7 +245,6 @@ import html2canvas from "html2canvas"
|
245
|
245
|
mode:'',
|
246
|
246
|
date_mode:'',
|
247
|
247
|
source:'',
|
248
|
|
- dialyze_value:0,
|
249
|
248
|
dialyze_dialog:false,
|
250
|
249
|
currentPage:1,
|
251
|
250
|
limit:50,
|
|
@@ -295,7 +294,7 @@ import html2canvas from "html2canvas"
|
295
|
294
|
xAxis.push(list[i].name)
|
296
|
295
|
yAxis.push(list[i].total)
|
297
|
296
|
const obj ={
|
298
|
|
- value:i+1,
|
|
297
|
+ value:(i*1)+1,
|
299
|
298
|
label:list[i].name
|
300
|
299
|
}
|
301
|
300
|
weight.push(obj)
|
|
@@ -351,9 +350,9 @@ import html2canvas from "html2canvas"
|
351
|
350
|
myChart.setOption(option);
|
352
|
351
|
myChart.on('click',params =>{
|
353
|
352
|
this.dialyze_dialog = true
|
354
|
|
- console.log('vvvvv',params);
|
|
353
|
+ console.log('vvvvv',params,this.after_options);
|
355
|
354
|
for(let i in this.after_options){
|
356
|
|
- if(params.name = this.after_options[i].label){
|
|
355
|
+ if(params.name == this.after_options[i].label){
|
357
|
356
|
this.after_value = this.after_options[i].value
|
358
|
357
|
}
|
359
|
358
|
}
|
|
@@ -400,7 +399,8 @@ import html2canvas from "html2canvas"
|
400
|
399
|
},
|
401
|
400
|
// 详情查询
|
402
|
401
|
deil_click(){
|
403
|
|
- this.Getdialyzerdetail(this.getdialyze(this.dialyze_value))
|
|
402
|
+ this.currentPage =1
|
|
403
|
+ this.Getdialyzerdetail(this.after_value)
|
404
|
404
|
},
|
405
|
405
|
// 下载
|
406
|
406
|
Download_click(){
|
|
@@ -635,11 +635,11 @@ import html2canvas from "html2canvas"
|
635
|
635
|
},
|
636
|
636
|
handleCurrentChange(val){
|
637
|
637
|
this.currentPage = val
|
638
|
|
- this.Getdialyzerdetail(this.getdialyze(this.dialyze_value))
|
|
638
|
+ this.Getdialyzerdetail(this.after_value)
|
639
|
639
|
},
|
640
|
640
|
handleSizeChange(val){
|
641
|
641
|
this.limit = val
|
642
|
|
- this.Getdialyzerdetail(this.getdialyze(this.dialyze_value))
|
|
642
|
+ this.Getdialyzerdetail(this.after_value)
|
643
|
643
|
},
|
644
|
644
|
// 性别
|
645
|
645
|
getgender(ids){
|