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
9eca0a30
authored
2022-09-09 14:49:40 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:系统管理
1 parent
f71561e3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
13 deletions
src/views/system/dictionaries/dictionaries.vue
src/views/system/qtjfjmb/components/editDialog.vue
src/views/system/qtjfjmb/qtjfjmb.vue
src/views/system/sqywgz/sqywgz.vue
src/views/system/dictionaries/dictionaries.vue
View file @
9eca0a3
...
...
@@ -71,23 +71,20 @@ export default {
fetchData
()
{
getQlxxDictList
({
...
this
.
ruleForm
,
...
this
.
pageData
}).
then
(
res
=>
{
let
{
records
,
total
}
=
res
.
result
this
.
tableData
.
data
=
records
this
.
tableData
.
total
=
total
this
.
tableData
.
data
=
records
?
records
:
[]
this
.
tableData
.
total
=
total
?
total
:
0
})
},
handleRefresh
()
{
this
.
$store
.
dispatch
(
'dict/generateDic'
)
},
editClick
(
row
,
val
)
{
this
.
details
.
rowData
=
{}
this
.
details
.
rowData
=
row
this
.
details
.
isenable
=
val
console
.
log
(
this
.
details
.
isenable
);
getChildDictList
(
row
.
bsmDict
).
then
(
res
=>
{
this
.
isDialog
=
true
let
{
result
}
=
res
this
.
details
.
dataList
=
[]
this
.
details
.
dataList
=
result
this
.
details
.
dataList
=
result
?
result
:
[]
})
}
}
...
...
src/views/system/qtjfjmb/components/editDialog.vue
View file @
9eca0a3
...
...
@@ -129,7 +129,6 @@ export default {
details
:
{
handler
(
newValue
,
oldValue
)
{
this
.
ruleForm
=
newValue
console
.
log
(
this
.
ruleForm
);
},
deep
:
true
}
...
...
src/views/system/qtjfjmb/qtjfjmb.vue
View file @
9eca0a3
...
...
@@ -69,14 +69,15 @@ export default {
sysSqywmbszSearch
({
...
this
.
pageData
,
...
this
.
queryForm
}).
then
(
res
=>
{
this
.
loading
=
false
let
{
records
,
total
}
=
res
.
result
this
.
tableData
.
data
=
records
this
.
tableData
.
total
=
total
this
.
tableData
.
data
=
records
?
records
:
[]
this
.
tableData
.
total
=
total
?
total
:
0
})
},
editClick
(
row
)
{
getSysSqywmbszDetailById
(
row
.
bsmMb
).
then
(
res
=>
{
this
.
isDialog
=
true
this
.
details
=
res
.
result
let
{
result
}
=
res
this
.
details
=
result
?
result
:
{}
})
}
},
...
...
src/views/system/sqywgz/sqywgz.vue
View file @
9eca0a3
...
...
@@ -77,8 +77,8 @@ export default {
getSysSqdjywBysearch
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
this
.
tableData
.
total
=
total
this
.
tableData
.
data
=
records
this
.
tableData
.
total
=
total
?
total
:
0
this
.
tableData
.
data
=
records
?
records
:
[]
}
})
},
...
...
@@ -90,7 +90,8 @@ export default {
this
.
isDialog
=
true
}
else
{
getDjlxInfo
(
row
.
bsmSqyw
).
then
(
res
=>
{
this
.
detailList
=
res
.
result
let
{
result
}
=
res
this
.
detailList
=
result
?
result
:
[]
this
.
isDialog
=
true
})
}
...
...
Please
register
or
sign in
to post a comment