Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhouqian
vue-gjjs
Commits
46c8c186
Commit
46c8c186
authored
Jan 11, 2022
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待复核Action码表
parent
3aa8512f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
2 deletions
+24
-2
InftrnpsDetail.vue
src/views/Business/Trnrel/InftrnpsDetail.vue
+24
-2
No files found.
src/views/Business/Trnrel/InftrnpsDetail.vue
View file @
46c8c186
...
...
@@ -394,6 +394,19 @@
<!-- <c-input v-model="model.recpan.trsstm" placeholder="请输入Signatures"></c-input> -->
<c-col
:span=
"24"
>
<c-istream-table
:list=
"SignaturesData.data"
:columns=
"SignaturesData.columns"
:paginationShow=
"false"
style=
"width:100%"
>
<el-table-column
label=
"Action"
width=
"400px"
>
<
template
slot-scope=
"scope"
>
<!--
<span>
{{
JSON
.
stringify
(
scope
.
row
)
}}
</span>
-->
<el-select
v-model=
"action[scope.row.IDX]"
style=
"100%"
disabled
>
<el-option
v-for=
"item in codes.flg"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</
template
>
</el-table-column>
<el-table-column
fixed=
"right"
prop=
"display"
...
...
@@ -522,7 +535,7 @@ export default {
columns
:
[
'1 2:1 "User" 200'
,
'2 3:1 "Date / Time" 200'
,
'3 5:1 "Action" 400'
,
//
'3 5:1 "Action" 400',
'4 1:1 "Type" 200'
],
data
:
[],
...
...
@@ -540,7 +553,9 @@ export default {
],
data
:
[],
},
codes
:
{
infdsp
:
CodeTable
.
infdsp
},
codes
:
{
infdsp
:
CodeTable
.
infdsp
,
flg
:
CodeTable
.
flg
},
action
:[],
}
},
mounted
()
{
...
...
@@ -553,6 +568,13 @@ export default {
this
.
documentsData
.
data
=
this
.
model
.
recpan
.
smhstm
.
rows
;
this
.
SignaturesData
.
data
=
this
.
model
.
recpan
.
trsstm
.
rows
;
this
.
stmData
.
data
=
this
.
model
.
recpan
.
wfestm
.
rows
;
console
.
log
(
this
.
SignaturesData
.
data
)
for
(
let
i
=
0
;
i
<
this
.
SignaturesData
.
data
.
length
;
i
++
)
{
const
d
=
this
.
SignaturesData
.
data
[
i
];
const
items
=
d
.
split
(
"
\
t"
);
this
.
action
[
i
]
=
items
[
items
.
length
-
2
];
}
console
.
log
(
this
.
action
)
},
exit
(){
this
.
$store
.
dispatch
(
"TagsView/delView"
,
this
.
$route
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment