Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-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
8b7ddd2d
authored
2023-04-04 14:49:20 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' into dev
2 parents
9f18d6c8
8a948318
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
src/styles/sbPublic.scss
src/utils/operation.js
src/views/system/dictionaries/components/editDialog.vue
src/styles/sbPublic.scss
View file @
8b7ddd2
...
...
@@ -255,13 +255,13 @@
}
}
.el-textarea.is-disabled
.el-textarea__inner
{
background-color
:
transparent
!
important
;
color
:
#4a4a4a
;
}
// 登簿日志弹出框
.commonDialog
{
.el-textarea.is-disabled
.el-textarea__inner
{
background-color
:
none
!
important
;
color
:
#4a4a4a
;
}
.el-dialog__headerbtn
.el-dialog__close
{
font-size
:
20px
;
color
:
#4162D8
...
...
@@ -304,8 +304,6 @@
.el-textarea.is-disabled
.el-textarea__inner
{
@include
borderColor
(
"border"
);
background-color
:
none
!
important
;
color
:
#4a4a4a
;
}
.editXML
{
...
...
src/utils/operation.js
View file @
8b7ddd2
import
{
Message
}
from
"element-ui"
;
export
function
removeTreeListItem
(
treeList
,
dictId
,
idName
=
'bsmDict'
)
{
export
function
removeTreeListItem
(
treeList
,
dictId
,
idName
=
'dictid'
)
{
if
(
!
treeList
||
!
treeList
.
length
)
{
return
}
...
...
src/views/system/dictionaries/components/editDialog.vue
View file @
8b7ddd2
...
...
@@ -287,6 +287,7 @@
});
},
handleMinus
(
index
,
row
)
{
console
.
log
(
this
.
tableData
,
row
.
dictid
,
'dictid'
);
removeTreeListItem
(
this
.
tableData
,
row
.
dictid
,
'dictid'
);
this
.
tableData
=
judgeSort
(
this
.
tableData
)
this
.
key
++
;
...
...
Please
register
or
sign in
to post a comment