wlzboy
2025-10-25 a5b842f1f6ab32f1af39f4bcb7e45217e94db761
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 = [];
        }
      });
    },
    // 取消按钮