【删除】前端部门角色权限的代码直接删除

This commit is contained in:
zer0Black
2022-04-17 18:01:45 +08:00
parent 7ad8d6792e
commit 80f0921d60
7 changed files with 0 additions and 760 deletions
@@ -70,9 +70,6 @@
更多 <a-icon type="down"/>
</a>
<a-menu slot="overlay">
<!-- <a-menu-item>-->
<!-- <a href="javascript:;" @click="handleDeptRole(record)">部门角色</a>-->
<!-- </a-menu-item>-->
<a-menu-item>
<a href="javascript:;" @click="handleDetail(record)">用户详情</a>
@@ -95,7 +92,6 @@
<!-- 表单区域 -->
<user-modal ref="modalForm" @ok="modalFormOk"></user-modal>
<Select-User-Modal ref="selectUserModal" @selectFinished="selectOK"></Select-User-Modal>
<!-- <dept-role-user-modal ref="deptRoleUser"></dept-role-user-modal>-->
</a-card>
</template>
@@ -104,13 +100,11 @@
import {getAction, postAction, deleteAction} from '@/api/manage'
import SelectUserModal from './SelectUserModal'
import UserModal from './UserModal'
// import DeptRoleUserModal from './DeptRoleUserModal'
export default {
name: "DeptUserInfo",
mixins: [JeroListMixin],
components: {
// DeptRoleUserModal,
SelectUserModal,
UserModal
},
@@ -254,7 +248,6 @@
});
},
open(record) {
//console.log(record);
this.currentDeptId = record.id;
this.currentDept = record;
this.loadData(1);
@@ -311,14 +304,6 @@
}
})
},
// handleDeptRole(record){
// if(this.currentDeptId != ''){
// this.$refs.deptRoleUser.add(record,this.currentDeptId);
// this.$refs.deptRoleUser.title = "部门角色分配";
// }else{
// this.$message.warning("请先选择一个部门!");
// }
// }
}
}
</script>