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
dcd5a962
authored
2023-02-08 16:53:55 +0800
by
yangwei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
字典修改
1 parent
4346028a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
55 deletions
src/views/system/dictionaries/components/editDialog.vue
src/views/system/dictionaries/components/editDialog.vue
View file @
dcd5a96
...
...
@@ -8,8 +8,6 @@
width=
"60%"
v-model=
"myValue"
:isMain=
"true"
:isButton=
"false"
:isSave=
"details.ISENABLE == 1"
title=
"字典信息"
>
<div
class=
"editDialogBox-box "
>
...
...
@@ -29,7 +27,7 @@
</el-form>
<lb-table
:column=
"column"
class=
"loadingtext"
class=
"loadingtext
opacity-input
"
:heightNum=
"600"
:key=
"key"
:expand-row-keys=
"keyList"
...
...
@@ -103,7 +101,6 @@ export default {
<
div
>
<
el
-
input
placeholder
=
"字典项编码"
disabled
=
{
this
.
details
.
isenable
==
2
}
v
-
show
=
{
scope
.
row
.
codeShow
}
v
-
fo
value
=
{
scope
.
row
[
scope
.
column
.
property
]}
...
...
@@ -121,7 +118,6 @@ export default {
<
el
-
input
placeholder
=
"字典项编码"
disabled
=
{
this
.
details
.
isenable
==
2
}
v
-
show
=
{
!
scope
.
row
.
codeShow
}
value
=
{
scope
.
row
[
scope
.
column
.
property
]}
onFocus
=
{()
=>
{
...
...
@@ -147,7 +143,6 @@ export default {
<
div
>
<
el
-
input
placeholder
=
"字典项编码"
disabled
=
{
this
.
details
.
isenable
==
2
}
v
-
show
=
{
scope
.
row
.
nameShow
}
v
-
fo
value
=
{
scope
.
row
[
scope
.
column
.
property
]}
...
...
@@ -164,7 +159,6 @@ export default {
<
el
-
input
placeholder
=
"字典项名称"
disabled
=
{
this
.
details
.
isenable
==
2
}
v
-
show
=
{
!
scope
.
row
.
nameShow
}
value
=
{
scope
.
row
[
scope
.
column
.
property
]}
onFocus
=
{()
=>
{
...
...
@@ -181,54 +175,6 @@ export default {
);
},
},
// {
// prop: 'normcode',
// label: '部标编码',
// width: '100',
// render: (h, scope) => {
// return (
// <div>
// <el-input placeholder="部标编码" disabled={this.details.isenable == 2} v-show={scope.row.normcodeShow} v-fo value={scope.row[scope.column.property]}
// onFocus={() => { this.itemShowFalse(); scope.row.normcodeShow = true; }}
// onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input>
// <el-input placeholder="部标编码" disabled={this.details.isenable == 2} v-show={!scope.row.normcodeShow} value={scope.row[scope.column.property]}
// onFocus={() => { this.itemShowFalse(); scope.row.normcodeShow = true; }}
// onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input>
// </div>
// )
// }
// },
// {
// prop: 'normname',
// label: '部标名称',
// render: (h, scope) => {
// return (
// <div>
// <el-input placeholder="部标名称" disabled={this.details.isenable == 2} v-show={scope.row.normnameShow} v-fo value={scope.row[scope.column.property]}
// onFocus={() => { this.itemShowFalse(); scope.row.normnameShow = true; }}
// onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input>
// <el-input placeholder="部标名称" disabled={this.details.isenable == 2} v-show={!scope.row.normnameShow} value={scope.row[scope.column.property]}
// onFocus={() => { this.itemShowFalse(); scope.row.normnameShow = true; }}
// onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input>
// </div>
// )
// }
// },
// {
// prop: 'isenable',
// width: '160',
// label: '是否禁用',
// render: (h, scope) => {
// return (
// <el-radio-group disabled={this.details.isenable == 2} v-model={scope.row.isenable}>
// <el-radio label="1">启用</el-radio>
// <el-radio label="0">禁用</el-radio>
// </el-radio-group>
// )
// }
// },
{
width
:
"130"
,
label
:
"移动"
,
...
...
@@ -467,4 +413,10 @@ export default {
.editDialogBox-box
{
margin
:
14px
18px
30px
18px
!important
}
.opacity-input
{
/deep/
.el-input__inner{
background-color
:
transparent
;
border
:
1px
solid
#458ACF
;
}
}
</
style
>
...
...
Please
register
or
sign in
to post a comment