Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bill-manager-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
bill-manager-ui
Commits
9918ee89
Commit
9918ee89
authored
Jul 17, 2024
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复接入区县编辑保存的时候报错的问题
parent
436c1a46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
admin_2/src/pages/system/access/components/AddAccess.vue
admin_2/src/pages/system/access/components/AddAccess.vue
+8
-6
No files found.
admin_2/src/pages/system/access/components/AddAccess.vue
View file @
9918ee89
...
@@ -190,18 +190,20 @@ export default {
...
@@ -190,18 +190,20 @@ export default {
// 编辑
// 编辑
onEdit
(
row
)
{
onEdit
(
row
)
{
setTimeout
(()
=>
{
setTimeout
(()
=>
{
if
(
row
.
tag
)
{
this
.
form
=
row
;
row
.
tag
=
row
.
tag
.
split
(
"
,
"
);
if
(
this
.
form
.
tag
)
{
this
.
form
.
tag
=
this
.
form
.
tag
.
split
(
"
,
"
);
}
else
{
this
.
form
.
tag
=
[];
}
}
if
(
row
.
bigPath
)
{
if
(
this
.
form
.
bigPath
)
{
this
.
fileList
=
[
this
.
fileList
=
[
{
{
name
:
row
.
bigPath
,
name
:
this
.
form
.
bigPath
,
url
:
row
.
bigPath
,
url
:
this
.
form
.
bigPath
,
},
},
];
];
}
}
this
.
form
=
row
;
},
10
);
},
10
);
},
},
// 重置
// 重置
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment