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
627896a9
authored
2024-03-08 14:03:47 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev'
2 parents
ee3a36ee
b6fdd9b3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
9 deletions
src/views/workflow/components/tdytTable.vue
src/views/workflow/main/slsqxx/jsydsyq/slxx.vue
src/views/workflow/components/tdytTable.vue
View file @
627896a
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-0
1-18 14:13:02
* @LastEditTime: 2024-0
3-08 14:02:15
-->
<
template
>
<div>
...
...
@@ -172,18 +172,30 @@
<
/div
>
);
},
// 修改事件
/**
* @description: 修改事件
* @author: renchao
*/
getTreeName
(
list
,
dcode
)
{
let
_this
=
this
for
(
let
i
=
0
;
i
<
list
.
length
;
i
++
)
{
let
a
=
list
[
i
]
if
(
a
.
dcode
===
dcode
)
{
return
a
.
dname
}
else
{
if
(
a
.
children
&&
a
.
children
.
length
>
0
)
{
let
res
=
_this
.
getTreeName
(
a
.
children
,
dcode
)
if
(
res
)
{
return
res
}
}
}
}
},
addrow
(
a
)
{
// this.tableDataList = this.tableDataList.map((item) => {
// return {
// ...item,
// yt: a.yt,
// };
// });
this
.
tableDataList
.
forEach
(
item
=>
{
item
.
ytmc
=
this
.
getTreeName
(
this
.
dictData
[
'tdyt'
],
item
.
yt
)
})
this
.
$emit
(
"upDateTdytxxList"
,
this
.
tableDataList
);
},
/**
...
...
src/views/workflow/main/slsqxx/jsydsyq/slxx.vue
View file @
627896a
...
...
@@ -2,7 +2,7 @@
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-0
1-31 10:14:22
* @LastEditTime: 2024-0
3-08 14:03:28
-->
<
template
>
<!-- 受理信息 -->
...
...
Please
register
or
sign in
to post a comment