Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
E
exhibition_backstage
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
龙菲
exhibition_backstage
Commits
e558ce66
提交
e558ce66
authored
10月 24, 2022
作者:
龙菲
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复角色新增和编辑的数据冲突
上级
729c5f86
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
50 行增加
和
36 行删除
+50
-36
InfoEditDialog.vue
src/views/role/components/InfoEditDialog.vue
+50
-36
没有找到文件。
src/views/role/components/InfoEditDialog.vue
浏览文件 @
e558ce66
...
...
@@ -12,7 +12,12 @@
<div
class=
"label"
>
{{
title
}}
</div>
</div>
<div
class=
"dialog-content"
>
<el-form
:model=
"dialogForm"
class=
"basic-info"
:rules=
"rules"
>
<el-form
:model=
"dialogForm"
class=
"basic-info"
:rules=
"rules"
ref=
"dialogForm"
>
<el-form-item
label=
"角色名称"
:label-width=
"formLabelWidth"
...
...
@@ -138,9 +143,7 @@ export default {
dialogForm
:
{},
formLabelWidth
:
"100px"
,
status
:
true
,
files
:
[],
//文献文件
dialogVisible
:
false
,
// permissionTree: [],
props
:
{
value
:
"id"
,
label
:
"title"
,
...
...
@@ -171,55 +174,66 @@ export default {
// 取消编辑
cancelForm
()
{
this
.
$emit
(
"handleClose"
);
this
.
reload
();
},
async
handleSubmit
()
{
const
{
name
,
remark
}
=
this
.
dialogForm
;
let
status
=
this
.
status
?
1
:
0
;
let
permissions
=
this
.
$refs
.
tree
.
getCheckedKeys
();
handleSubmit
()
{
this
.
$refs
.
dialogForm
.
validate
(
async
(
valid
)
=>
{
if
(
valid
)
{
const
{
name
,
remark
}
=
this
.
dialogForm
;
let
status
=
this
.
status
?
1
:
0
;
let
permissions
=
this
.
$refs
.
tree
.
getCheckedKeys
();
const
params
=
{
name
,
status
,
permissions
,
remark
,
};
let
parentIdArr
=
this
.
$refs
.
roleParentTree
.
getCheckedKeys
();
if
(
parentIdArr
.
length
>
0
)
{
let
pid
=
parentIdArr
.
toString
();
params
.
pid
=
pid
;
}
if
(
this
.
dialogForm
.
id
)
{
params
.
id
=
this
.
dialogForm
.
id
;
let
res
=
await
upadateRole
(
params
);
if
(
res
.
code
==
0
)
{
this
.
$message
.
success
(
"修改成功!"
);
this
.
reload
();
}
}
else
{
params
.
dataScope
=
"5"
;
//默认数据权限为自己
// return
let
res
=
await
addRole
(
params
);
if
(
res
.
code
==
0
)
{
this
.
$message
.
success
(
"添加成功!"
);
this
.
reload
();
const
params
=
{
name
,
status
,
permissions
,
remark
,
};
let
parentIdArr
=
this
.
$refs
.
roleParentTree
.
getCheckedKeys
();
if
(
parentIdArr
.
length
>
0
)
{
let
pid
=
parentIdArr
.
toString
();
params
.
pid
=
pid
;
}
if
(
this
.
dialogForm
.
id
)
{
params
.
id
=
this
.
dialogForm
.
id
;
let
res
=
await
upadateRole
(
params
);
if
(
res
.
code
==
0
)
{
this
.
$message
.
success
(
"修改成功!"
);
this
.
reload
();
}
}
else
{
params
.
dataScope
=
"5"
;
//默认数据权限为自己
// return
let
res
=
await
addRole
(
params
);
if
(
res
.
code
==
0
)
{
this
.
$message
.
success
(
"添加成功!"
);
this
.
reload
();
}
}
}
}
}
);
},
reload
()
{
this
.
$emit
(
"refresh"
);
this
.
$emit
(
"handleClose"
);
this
.
$refs
.
dialogForm
.
resetFields
();
this
.
$emit
(
"refresh"
);
this
.
$nextTick
(()
=>
{
this
.
$refs
.
tree
.
setCheckedKeys
([]);
});
this
.
allRole
=
[];
},
handleClose
(
done
)
{
this
.
$confirm
(
"确认关闭?"
)
.
then
((
_
)
=>
{
done
();
this
.
$emit
(
"handleClose"
);
this
.
reload
();
})
.
catch
((
_
)
=>
{});
},
setPer
()
{
let
checkedIds
=
[];
getCheckedIds
(
this
.
dialogForm
.
permissionRespNodes
);
...
...
@@ -236,7 +250,7 @@ export default {
}
setTimeout
(()
=>
{
if
(
checkedIds
.
length
>
0
)
{
this
.
$refs
[
"tree"
]
.
setCheckedKeys
(
checkedIds
);
this
.
$refs
.
tree
.
setCheckedKeys
(
checkedIds
);
}
},
100
);
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论