Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
079f16be
authored
2022-09-09 14:36:03 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:修改提示
1 parent
54b26e2c
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletions
src/views/system/dictionaries/components/editDialog.vue
src/views/system/dictionaries/dictionaries.vue
src/views/system/qtjfjmb/components/editDialog.vue
src/views/system/sqywgz/components/editDialog.vue
src/views/system/dictionaries/components/editDialog.vue
View file @
079f16b
...
...
@@ -234,6 +234,10 @@ export default {
children
:
this
.
tableData
}).
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
({
message
:
'修改成功'
,
type
:
'success'
})
this
.
$emit
(
'input'
,
false
)
}
})
...
...
src/views/system/dictionaries/dictionaries.vue
View file @
079f16b
...
...
@@ -79,11 +79,13 @@ export default {
this
.
$store
.
dispatch
(
'dict/generateDic'
)
},
editClick
(
row
,
val
)
{
this
.
details
.
rowData
=
{}
this
.
details
.
rowData
=
row
this
.
details
.
isenable
=
val
getChildDictList
(
row
.
bsmDict
).
then
(
res
=>
{
this
.
isDialog
=
true
let
{
result
}
=
res
this
.
details
.
dataList
=
[]
this
.
details
.
dataList
=
result
})
}
...
...
src/views/system/qtjfjmb/components/editDialog.vue
View file @
079f16b
...
...
@@ -207,6 +207,10 @@ export default {
let
that
=
this
updateSysSqywmbsz
(
this
.
ruleForm
).
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
that
.
$message
({
message
:
'修改成功'
,
type
:
'success'
})
that
.
$emit
(
'input'
,
false
)
}
})
...
...
src/views/system/sqywgz/components/editDialog.vue
View file @
079f16b
...
...
@@ -261,11 +261,17 @@ export default {
if
(
valid
)
{
this
.
subData
.
ywDetail
=
this
.
ruleForm
saveSqdjyw
(
this
.
subData
).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
that
.
$message
({
message
:
'修改成功'
,
type
:
'success'
})
// that.$emit('input', false)
}
})
}
else
{
this
.
$message
(
'请检查表单完整性'
)
return
false
;
return
false
}
})
},
...
...
Please
register
or
sign in
to post a comment