wl
2022-12-21 61ce61386bbb5ac886fb1f577b1acd2d7a4fb0df
fix:修改部门bug和对齐违规违建
3个文件已修改
15 ■■■■ 已修改文件
src/views/layout/components/Header/index.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/disposal/casepool/pool/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/systemSetting/baseSetting/user/components/updateUser/index.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/layout/components/Header/index.vue
@@ -115,7 +115,7 @@
          label: '执法管理',
          checked: true,
          url: '',
          if: '3f',
          id: '3f',
        },
      ],
      flag: {
@@ -215,7 +215,9 @@
      if (data.id === '2f') {
        this.$router.push({path: "/home/video"})
      }
      if (data.id === '3f') {
        this.$router.push({path: "/home/operate/casepool/pool"})
      }
    }
  }
};
src/views/operate/disposal/casepool/pool/index.vue
@@ -562,8 +562,8 @@
        .type-nav {
            display: flex;
            line-height: 40px;
            margin-left: 30px;
            margin-top: 2px;
            // margin-left: 30px;
            // margin-top: 2px;
            .type-item {
                width: 80px;
src/views/systemSetting/baseSetting/user/components/updateUser/index.vue
@@ -60,8 +60,8 @@
    },
    created() {
        this.user = JSON.parse(JSON.stringify(this.userInfo));
        this.tempName = this.user.departName;
        this.selectOrg.orgsid.push(this.user.departmentId);
        this.tempName = this.user.depart[0].departName;
        this.selectOrg.orgsid.push(this.user.depart[0].id);
        // 获取所有角色列表
        this.getRoleList();
        // 获取当前用户角色列表
@@ -175,7 +175,6 @@
        },
        // 部门修改
        handleCheck(data, checked) {
            console.log(this.selectOrg.orgsid[0])
            this.user.departName = data.departName;
            // 获取当前选择的id在数组中的索引
            const indexs = this.selectOrg.orgsid.indexOf(data.id);