parent
2a11d27c7e
commit
776e9ef996
3
web/.env
3
web/.env
|
@ -6,6 +6,9 @@ VUE_APP_TITLE=D2Admin
|
|||
# 网络请求公用地址
|
||||
VUE_APP_API=/api/
|
||||
|
||||
# websocket地址
|
||||
VUE_APP_WEBSOCKET=""
|
||||
|
||||
# 仓库地址
|
||||
VUE_APP_REPO=https://github.com/d2-projects/d2-admin-start-kit
|
||||
|
||||
|
|
|
@ -197,7 +197,7 @@ export default {
|
|||
},
|
||||
destroyed () {
|
||||
// 离开路由之后断开websocket连接
|
||||
this.$websocket.close()
|
||||
this.$websocket.closeWebsocket()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -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: '部门名称',
|
||||
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: '负责人',
|
||||
key: 'owner',
|
||||
|
|
Loading…
Reference in New Issue