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
6e44ae77
authored
2022-12-01 16:28:45 +0800
by
jiaozeping@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
12
1 parent
33af1f0a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
src/views/workflow/components/qlrCommonTable.vue
src/views/workflow/components/qlrCommonTable.vue
View file @
6e44ae7
...
...
@@ -67,7 +67,17 @@ export default {
},
{
prop
:
"zjzl"
,
label
:
"证件种类"
label
:
"证件种类2"
,
render
:
(
h
,
scope
)
=>
{
alert
(
"2"
)
this
.
dictData
[
'A30'
].
forEach
(
item
=>
{
if
(
item
.
dcode
==
scope
.
row
.
zjzl
)
{
var
varName
=
item
.
dname
alert
(
varName
)
return
<
div
>
varName
<
/div
>
}
})
}
},
{
prop
:
"zjh"
,
...
...
@@ -138,10 +148,10 @@ export default {
},
methods
:
{
updateDetail
(
value
)
{
this
.
tableDataList
[
this
.
dataIndex
]
=
value
;
this
.
tableDataList
[
this
.
dataIndex
]
=
_
.
cloneDeep
(
value
)
;
console
.
log
(
this
.
tableDataList
);
this
.
key
++
this
.
$emit
(
'upDateQlrxxList'
,
this
.
tableDataList
)
//
this
.
$emit
(
'upDateQlrxxList'
,
_
.
cloneDeep
(
this
.
tableDataList
)
)
},
// 新增
...
...
Please
register
or
sign in
to post a comment