|
@@ -148,7 +148,7 @@
|
|
|
align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <span class="link" @click="goto('/caseNumber?doctor_name='+ scope.row.key +'&sort=doc_count')" style="color: #004983;">{{ scope.row.doc_count }}例</span> -->
|
|
|
- <span class="link" @click="goto(`/doctor/bl?doctor_name=${scope.row.key}&start_time=${start_time}&end_time=${end_time}`)" style="color: #004983;">{{
|
|
|
+ <span class="link" @click="goto(`/doctor/bl?doctor_name=${scope.row.key}`)" style="color: #004983;">{{
|
|
|
scope.row.doc_count
|
|
|
}}例</span>
|
|
|
</template>
|
|
@@ -218,8 +218,6 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- start_time:'',
|
|
|
- end_time:'',
|
|
|
doctor_rank:[],
|
|
|
formData: {
|
|
|
rangeDate: [],
|
|
@@ -267,12 +265,6 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
- const date = new Date();
|
|
|
- const year = date.getFullYear();
|
|
|
- const month = String(date.getMonth() + 1).padStart(2, "0");
|
|
|
- const day = String(date.getDate()).padStart(2, "0");
|
|
|
- this.start_time = `${year}0101`;
|
|
|
- this.end_time = `${year}${month}${day}`;
|
|
|
|
|
|
this.doctor_rank = JSON.parse(JSON.stringify(this.doctor_tableData)).slice(0, 10)
|
|
|
this.storageSet('start_time', '');
|
|
@@ -320,8 +312,6 @@ export default {
|
|
|
query: {
|
|
|
doctor_name: row.key,
|
|
|
sort,
|
|
|
- start_time: this.start_time,
|
|
|
- end_time: this.end_time,
|
|
|
}
|
|
|
})
|
|
|
},
|