diff --git a/src/views/driverCaseList/driverCaseList.vue b/src/views/driverCaseList/driverCaseList.vue index 43021b9c..92bf3774 100644 --- a/src/views/driverCaseList/driverCaseList.vue +++ b/src/views/driverCaseList/driverCaseList.vue @@ -99,7 +99,7 @@ export default { pageSize:10, total: 0, isCheck:false, - driverId: 78948, + driverId: '',//78948 submitData:[], noClick:true, loading:false, @@ -115,6 +115,8 @@ export default { }, }, async mounted() { + const urlParams = new URLSearchParams(window.location.search); + this.driverId = urlParams.get('driverId'); await this.getMonth(); await this.getList() },