ruoyi-ui/src/views/system/vehicle/index.vue
@@ -301,10 +301,15 @@ this.loading = false; }); }, /** 获取部门列表 */ /** 获取部门列表(只显示分公司:parent_id=100) */ getDeptList() { listDept().then(response => { this.deptList = response.data; listDept({ parentId: 100 }).then(response => { // 过滤出分公司(parent_id=100的部门) if (response.data) { this.deptList = response.data.filter(dept => dept.parentId === 100); } else { this.deptList = []; } }); }, // 取消按钮