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
bd208a6f
authored
2023-04-11 11:22:31 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:系统管理
1 parent
524a0a70
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
src/views/system/dictionaries/components/editDialog.vue
src/views/system/dictionaries/dictionaries.js
src/views/system/dictionaries/dictionaries.vue
src/views/system/dictionaries/components/editDialog.vue
View file @
bd208a6
This diff is collapsed.
Click to expand it.
src/views/system/dictionaries/dictionaries.js
View file @
bd208a6
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-04-11 10:49:40
*/
import
filter
from
'@/utils/filter.js'
let
vm
=
null
...
...
@@ -32,7 +37,6 @@ class data extends filter {
},
{
label
:
"是否允许修改"
,
width
:
'110'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
...
...
@@ -47,9 +51,7 @@ class data extends filter {
},
{
label
:
'操作'
,
width
:
'150'
,
align
:
'center'
,
fixed
:
'right'
,
width
:
'80'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
...
...
@@ -64,7 +66,6 @@ class data extends filter {
}
]
}
}
let
datas
=
new
data
()
export
{
...
...
src/views/system/dictionaries/dictionaries.vue
View file @
bd208a6
...
...
@@ -30,7 +30,6 @@
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
</div>
<editDialog
v-model=
"isDialog"
:details=
"details"
/>
</div>
</
template
>
<
script
>
...
...
@@ -49,7 +48,6 @@ export default {
},
data
()
{
return
{
isDialog
:
false
,
details
:
{
bsmDict
:
''
,
isenable
:
1
,
...
...
@@ -103,11 +101,12 @@ export default {
});
});
},
// 修改
editClick
(
row
,
val
)
{
this
.
details
.
rowData
=
row
this
.
details
.
isenable
=
val
this
.
details
.
bsmDict
=
row
.
bsmDict
this
.
isDialog
=
true
this
.
$popupDialog
(
"字典信息"
,
"system/dictionaries/components/editDialog"
,
this
.
details
)
}
}
}
...
...
Please
register
or
sign in
to post a comment