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
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
6 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
...
...
@@ -48,7 +48,7 @@
</div>
<ul>
<li
v-for=
"(item, index) in titleList"
@
click=
"handleSelect(index)"
:class=
"
{ 'active': n == index }"
:key="index">
{{
item
.
name
}}
</li>
:key="index">
{{
item
.
name
}}
</li>
</ul>
<el-row
v-if=
"n == 0"
>
<el-col
:span=
"24"
>
...
...
@@ -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
...
...
@@ -4,13 +4,13 @@
<ul
class=
"edit-title-list"
v-if=
"titleList.length > 0"
>
<li
v-for=
"(item, index) in titleList"
@
click=
"handleTitleSelct(item, index)"
:key=
"index"
:class=
"
{ active: index == tn }">
{{
item
.
nodename
item
.
nodename
}}
</li>
</ul>
<div
class=
"sqywgz-edit"
>
<ul
class=
"sqywgz-edit-left"
>
<li
v-for=
"(item, index) in leftList"
:key=
"index"
:class=
"
{ active: index == n }" @click="hanldeItem(index)">
{{
item
.
name
item
.
name
}}
</li>
</ul>
<div
class=
"sqywgz-edit-right"
>
...
...
@@ -261,11 +261,17 @@ export default {
if
(
valid
)
{
this
.
subData
.
ywDetail
=
this
.
ruleForm
saveSqdjyw
(
this
.
subData
).
then
(
res
=>
{
// that.$emit('input', false)
if
(
res
.
code
==
200
)
{
that
.
$message
({
message
:
'修改成功'
,
type
:
'success'
})
// that.$emit('input', false)
}
})
}
else
{
this
.
$message
(
'请检查表单完整性'
)
return
false
;
return
false
}
})
},
...
...
@@ -318,7 +324,7 @@ export default {
}
.active
{
background
:
$
light-blue
!important
;
background
:
$
light-blue
!important
;
color
:
#fff
;
}
...
...
Please
register
or
sign in
to post a comment