|
@@ -825,7 +825,6 @@ export default {
|
|
|
...this.formInline,
|
|
|
is_export: 0,
|
|
|
};
|
|
|
- this.doctor_tableData = [];
|
|
|
this.$axios_new.post('/api/bmy/doctorRanking', params).then(res => {
|
|
|
let arr = [];
|
|
|
if (res.data.list.length < 10) {
|
|
@@ -841,9 +840,11 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
- this.doctor_tableData = res.data.list.concat(arr);
|
|
|
+ this.$set(this, 'doctor_tableData', res.data.list.concat(arr))
|
|
|
this.paginationDataDoctor.total = res.data.count;
|
|
|
- this.$refs.barRank.updata();
|
|
|
+ setTimeout(()=> {
|
|
|
+ this.$refs.barRank.updata();
|
|
|
+ }, 500)
|
|
|
});
|
|
|
},
|
|
|
// 导出
|