功能变化:

部门model中加入key字段,可以用于初始化用户
pull/71/MERGE
猿小天 2022-09-07 10:05:13 +08:00
parent 2a11d27c7e
commit 776e9ef996
3 changed files with 20 additions and 41 deletions

View File

@ -6,6 +6,9 @@ VUE_APP_TITLE=D2Admin
# 网络请求公用地址 # 网络请求公用地址
VUE_APP_API=/api/ VUE_APP_API=/api/
# websocket地址
VUE_APP_WEBSOCKET=""
# 仓库地址 # 仓库地址
VUE_APP_REPO=https://github.com/d2-projects/d2-admin-start-kit VUE_APP_REPO=https://github.com/d2-projects/d2-admin-start-kit

View File

@ -197,7 +197,7 @@ export default {
}, },
destroyed () { destroyed () {
// websocket // websocket
this.$websocket.close() this.$websocket.closeWebsocket()
} }
} }
</script> </script>

View File

@ -135,46 +135,6 @@ export const crudOptions = (vm) => {
} }
} }
}, },
// {
// title: '上级部门',
// key: 'parent',
// show: false,
// search: {
// disabled: true
// },
// type: 'cascader',
// dict: {
// cache: false,
// url: deptPrefix,
// isTree: true,
// value: 'id', // 数据字典中value字段的属性名
// label: 'name', // 数据字典中label字段的属性名
// children: 'children', // 数据字典中children字段的属性名
// getData: (url, dict) => { // 配置此参数会覆盖全局的getRemoteDictFunc
// return request({ url: url, params: { limit: 999, status: 1 } }).then(ret => {
// const data = XEUtils.toArrayTree(ret.data.data, { parentKey: 'parent', strict: true })
// return [{ id: null, name: '根节点', children: data }]
// })
// }
// },
// form: {
// component: {
// span: 12,
// props: {
// elProps: {
// clearable: true,
// showAllLevels: false, // 仅显示最后一级
// props: {
// checkStrictly: true, // 可以不需要选到最后一级
// emitPath: false,
// clearable: true
// }
// }
// }
// }
// }
// },
{ {
title: '部门名称', title: '部门名称',
key: 'name', key: 'name',
@ -207,6 +167,22 @@ export const crudOptions = (vm) => {
} }
} }
}, },
{
title: '部门标识',
key: 'key',
sortable: true,
form: {
component: {
props: {
clearable: true
},
placeholder: '请输入标识字符'
},
itemProps: {
class: { yxtInput: true }
}
}
},
{ {
title: '负责人', title: '负责人',
key: 'owner', key: 'owner',