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
fukai
vue-gjjs
Commits
1d4cfd4a
Commit
1d4cfd4a
authored
Jan 12, 2022
by
潘际乾
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://114.115.138.98:8900/fukai/vue-gjjs
parents
2eccd764
83caacbf
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
272 additions
and
262 deletions
+272
-262
common.css
src/assets/css/common.css
+6
-0
Event.js
src/model/Diasel/Event.js
+1
-0
Event.js
src/model/Sptsel/Event.js
+2
-0
Event.js
src/model/Trnrel/Event.js
+11
-0
Status.js
src/store/Status.js
+1
-0
index.vue
src/views/Business/Diasel/index.vue
+9
-2
Infsea.vue
src/views/Business/Infdid/Infsea.vue
+1
-1
index.vue
src/views/Business/Sptsel/index.vue
+1
-1
Inftrnps.vue
src/views/Business/Trnrel/Inftrnps.vue
+1
-1
InftrnpsDetail.vue
src/views/Business/Trnrel/InftrnpsDetail.vue
+112
-126
Inftrnps.vue
src/views/Business/Trnrel/Trnfnd/Inftrnps.vue
+2
-2
TrnfndsDetail.vue
src/views/Business/Trnrel/Trnfnd/TrnfndsDetail.vue
+112
-126
index.vue
src/views/TaskList/index.vue
+13
-3
No files found.
src/assets/css/common.css
View file @
1d4cfd4a
...
...
@@ -289,4 +289,9 @@
}
.el-table--border
td
.lastColumn
{
border-right
:
0
!important
;
}
.el-table__fixed
,
.el-table__fixed-right
{
height
:
100%
!important
;
bottom
:
17px
;
}
\ No newline at end of file
src/model/Diasel/Event.js
View file @
1d4cfd4a
...
...
@@ -102,6 +102,7 @@ export default {
this
.
executeDefault
(
"dspstm"
).
then
(
res
=>
{
//TODO 处理数据逻辑
this
.
stmData
.
data
=
res
.
data
.
dspstm
.
rows
;
this
.
$store
.
commit
(
"setTaskList"
,
{
key
:
"diasel"
,
val
:
this
.
stmData
.
data
.
length
});
})
},
...
...
src/model/Sptsel/Event.js
View file @
1d4cfd4a
...
...
@@ -114,6 +114,7 @@ export default {
const
res
=
await
this
.
executeDefault
(
"sptstm"
)
//TODO 处理数据逻辑
this
.
stmData
.
data
=
res
.
data
.
sptstm
.
rows
;
this
.
$store
.
commit
(
"setTaskList"
,
{
key
:
"sptsel"
,
val
:
this
.
stmData
.
data
.
length
});
// if(res.data.sptstm.rows.length == 0){
// this.$notify({
// title: '成功',
...
...
@@ -150,6 +151,7 @@ export default {
// })
const
res
=
await
this
.
executeDefault
(
"sptstm"
)
this
.
stmData
.
data
=
res
.
data
.
sptstm
.
rows
;
this
.
$store
.
commit
(
"setTaskList"
,
{
key
:
"sptbrk"
,
val
:
this
.
stmData
.
data
.
length
});
// if(res.data.sptstm.rows.length == 0){
// this.$notify({
// title: '成功',
...
...
src/model/Trnrel/Event.js
View file @
1d4cfd4a
...
...
@@ -391,6 +391,7 @@ export default {
const
res
=
await
this
.
executeRule
(
"searow"
)
that
.
$refs
.
inftrnps
.
stmData
.
data
=
res
.
data
.
trncorco_trnstm
.
rows
;
this
.
model
.
trncorco
.
trnstm
=
res
.
data
.
trncorco_trnstm
;
this
.
$store
.
commit
(
"setTaskList"
,
{
key
:
"trnrel"
,
val
:
this
.
stmData
.
data
.
length
});
// if (res.data.trncorco_trnstm.rows.length == 0) {
// this.$notify({
// title: '成功',
...
...
@@ -401,6 +402,16 @@ export default {
this
.
$refs
.
paramsForm
.
clearValidate
();
Utils
.
positioningErrorMsg
(
res
.
fieldErrors
,
this
.
$refs
.
paramsForm
.
fields
)
},
async
trnfndhandleSearch
()
{
const
that
=
this
.
root
;
const
res
=
await
this
.
executeRule
(
"searow"
)
that
.
$refs
.
inftrnps
.
stmData
.
data
=
res
.
data
.
trncorco_trnstm
.
rows
;
this
.
model
.
trncorco
.
trnstm
=
res
.
data
.
trncorco_trnstm
;
this
.
$store
.
commit
(
"setTaskList"
,
{
key
:
"trnfnd"
,
val
:
this
.
stmData
.
data
.
length
});
this
.
$refs
.
paramsForm
.
clearValidate
();
Utils
.
positioningErrorMsg
(
res
.
fieldErrors
,
this
.
$refs
.
paramsForm
.
fields
)
},
async
handleReset
()
{
this
.
model
.
bchcon
=
""
;
...
...
src/store/Status.js
View file @
1d4cfd4a
...
...
@@ -26,6 +26,7 @@ const Status = {
taskList
:
{
sptsel
:
0
,
trnrel
:
0
,
trnfnd
:
0
,
bopsel
:
0
,
sptbrk
:
0
,
diasel
:
0
,
...
...
src/views/Business/Diasel/index.vue
View file @
1d4cfd4a
...
...
@@ -18,6 +18,7 @@ import Api from "~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Diasel
from
"~/model/Diasel"
import
CommonProcess
from
"~/mixin/CommonProcess"
import
Utils
from
"~/utils/index"
import
Check
from
"~/model/Diasel/Check"
import
Default
from
"~/model/Diasel/Default"
import
Pattern
from
"~/model/Diasel/Pattern"
...
...
@@ -70,7 +71,7 @@ export default {
}
});
let
rtnmsg
=
await
this
.
init
({})
/*
let rtnmsg = await this.init({})
if(rtnmsg.respCode == SUCCESS)
{
...
...
@@ -80,7 +81,13 @@ export default {
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
} */
const
that
=
this
;
that
.
init
(
that
.
model
).
then
(
res
=>
{
//TODO 处理数据逻辑
that
.
model
=
Utils
.
copyValueFromVO
(
that
.
model
,
res
.
data
)
this
.
$refs
.
diaselp
.
handleSearch
();
})
}
}
</
script
>
...
...
src/views/Business/Infdid/Infsea.vue
View file @
1d4cfd4a
...
...
@@ -302,7 +302,7 @@
<!-- <el-row> -->
<c-col
:span=
"24"
>
<c-istream-table
:list=
"stmData.data"
:columns=
"stmData.columns"
>
<el-table-column
fixed=
"right"
prop=
"op"
label=
"操作"
width=
"
20
0px"
>
<el-table-column
fixed=
"right"
prop=
"op"
label=
"操作"
width=
"
15
0px"
>
<
template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align: left"
><span>
操作
</span></c-col
...
...
src/views/Business/Sptsel/index.vue
View file @
1d4cfd4a
...
...
@@ -60,7 +60,7 @@ export default {
//TODO 处理数据逻辑
that
.
model
=
Utils
.
copyValueFromVO
(
that
.
model
,
res
.
data
)
// that.$refs.Menu.stmData.columns = res.data.sptstm.rows;
this
.
$refs
.
Menu
.
handleSearch
()
this
.
$refs
.
Menu
.
handleSearch
()
;
})
}
}
...
...
src/views/Business/Trnrel/Inftrnps.vue
View file @
1d4cfd4a
...
...
@@ -401,7 +401,7 @@
fixed=
"right"
prop=
"display"
label=
"操作"
width=
"
auto
"
width=
"
150px
"
>
<
template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align:left"
><span>
操作
</span></c-col>
...
...
src/views/Business/Trnrel/InftrnpsDetail.vue
View file @
1d4cfd4a
...
...
@@ -2,13 +2,13 @@
<c-page
title=
""
>
<div
class=
"eContainer"
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"23"
>
<
!--
<
c-col
:span=
"23"
>
<div
style=
"float:right;margin-bottom:10px"
>
<el-button
size=
"small"
>
交易快照
</el-button>
<el-button
size=
"small"
>
智能提示
</el-button>
<el-button
size=
"small"
@
click=
"exit"
>
退出
</el-button>
<el-button
size=
"small"
@
click=
"exit"
>
返回
</el-button>
</div>
</c-col>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
>
...
...
@@ -26,19 +26,33 @@
style=
"margin-left:15px"
>
<c-content>
<c-col
:span=
"13"
style=
"height:24px"
>
<el-form-item
label=
"基本信息"
class=
"messageLabel"
>
</el-form-item>
</c-col>
<c-col
:span=
"10"
style=
"text-align:right"
>
<el-button
size=
"small"
>
交易快照
</el-button>
<el-button
size=
"small"
>
智能提示
</el-button>
<c-button
size=
"small"
@
click=
"exit"
>
返回
</c-button>
</c-col>
<c-col
:span=
"23"
style=
"height: 10px;margin-bottom:10px"
>
<el-divider></el-divider>
</c-col>
<!-- -------------------基础信息------------------- -->
<!-- ========================= Left ========================= -->
<c-col
:span=
"1
0
"
>
<c-col
:span=
"1
1
"
>
<c-col
:span=
"24"
>
<c-col
:span=
"22"
>
<el-form-item
label=
"Reference"
>
<c-input
v-model=
"model.trn.ownref"
maxlength=
"16"
disabled
placeholder=
"请输入Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
>
<c-col
:span=
"2"
style=
"text-align: right"
>
<c-button
style=
"margin:0
10px
0 10px;padding: 0 12px;"
style=
"margin:0
0
0 10px;padding: 0 12px;"
size=
"small"
type=
"primary"
>
...
...
@@ -53,9 +67,9 @@
<c-input
v-model=
"model.recpan.atp.cod"
maxlength=
"6"
disabled
placeholder=
"请输入Transaction ID"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
>
<c-col
:span=
"2"
style=
"text-align: right"
>
<c-button
style=
"margin:0
10px
0 10px;padding: 0 12px;"
style=
"margin:0
0
0 10px;padding: 0 12px;"
size=
"small"
type=
"primary"
>
...
...
@@ -120,18 +134,34 @@
</c-col>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"22"
>
<el-form-item
label=
"Infotext"
>
<c-input
type=
"textarea"
v-model=
"model.trn.inftxt"
maxlength=
"65"
:rows=
"3"
show-word-limit
placeholder=
"请输入Infotext"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
style=
"text-align: right"
>
<c-button
style=
"margin:0 0 0 10px;padding: 0 10px;"
size=
"small"
icon=
"el-icon-search"
type=
"primary"
></c-button>
</c-col>
</c-col>
</c-col>
<!-- ========================= Right ========================= -->
<c-col
:span=
"1
3
"
>
<c-col
:span=
"1
2
"
>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Ident No."
>
<c-col
:span=
"2
2
"
>
<el-form-item
label-width=
"
3
0%"
label=
"Ident No."
>
<c-col
:span=
"2
1
"
>
<c-input
v-model=
"model.trn.inr"
disabled
placeholder=
"请输入Ident No."
></c-input>
</c-col>
<c-col
:span=
"
2
"
>
<c-col
:span=
"
3"
style=
"text-align: right
"
>
<c-button
style=
"margin:0
10px
0 10px;padding: 0 12px;"
style=
"margin:0
0
0 10px;padding: 0 12px;"
size=
"small"
type=
"primary"
>
...
...
@@ -142,7 +172,7 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Transaction ID"
>
<el-form-item
label-width=
"
3
0%"
label=
"Transaction ID"
>
<el-select
v-model=
"model.recpan.atp.cod"
style=
"width: 100%"
disabled
>
<el-option
v-for=
"item in codes.atptxt"
...
...
@@ -156,20 +186,20 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Drop Receiver"
>
<el-form-item
label-width=
"
3
0%"
label=
"Drop Receiver"
>
<c-input
v-model=
"model.trn.objnam"
maxlength=
"40"
disabled
placeholder=
"请输入External Readable Object Identification"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Release Status of Transaction"
>
<el-form-item
label-width=
"
3
0%"
label=
"Release Status of Transaction"
>
<c-input
v-model=
"model.trn.relflg"
style=
"width:100%"
disabled
placeholder=
"请选择Release Status of Transaction"
>
</c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Signatures Required/Obtained"
>
<el-form-item
label-width=
"
3
0%"
label=
"Signatures Required/Obtained"
>
<c-row>
<c-col
:span=
"11"
>
<c-input
v-model=
"model.trn.relreq"
maxlength=
"3"
disabled
placeholder=
"请输入Signatures Required/Obtained"
></c-input>
...
...
@@ -185,27 +215,50 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Completion text"
>
<el-form-item
label-width=
"
3
0%"
label=
"Completion text"
>
<c-input
style=
"font-weight:bold"
v-model=
"model.recpan.cpltxt"
disabled
placeholder=
"请输入Based on Ident No."
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"30%"
label=
"Infoflag"
>
<el-select
v-model=
"model.trn.infdsp"
style=
"width: 100%"
>
<el-option
v-for=
"item in codes.infdsp"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"30%"
label=
"Send for Repair to"
>
<c-input
v-model=
"model.recpan.usr.extkey"
disabled
style=
"width:100%"
placeholder=
"请选择extkey"
>
</c-input>
</el-form-item>
</c-col>
</c-col>
<!-- -------------------分割线------------------- -->
<c-col
:span=
"23"
>
<
!--
<
c-col
:span=
"23"
>
<div
style=
"border-bottom: 10px solid rgb(232, 232, 232);"
>
</div>
</c-col>
</c-col>
-->
<!--
<c-col
:span=
"23"
style=
"margin-left:9px;height:25px"
>
<el-divider></el-divider>
</c-col>
-->
<!-- -------------------document------------------- -->
<c-col
:span=
"2
3"
style=
"height:14px;margin-top:5
px"
>
<el-form-item
class=
"formItemLabel"
label=
"Documents:
"
>
<c-col
:span=
"2
4"
style=
"height:24
px"
>
<el-form-item
label=
"面函"
class=
"messageLabel
"
>
</el-form-item>
</c-col>
<c-col
:span=
"23"
style=
"height: 10px"
>
<el-divider></el-divider>
</c-col>
<c-col
:span=
"23"
>
<!--
<c-input
v-model=
"model.recpan.smhstm"
placeholder=
"请输入Documents"
></c-input>
-->
<c-col
:span=
"24"
>
...
...
@@ -214,7 +267,7 @@
fixed=
"right"
prop=
"display"
label=
"操作"
width=
"
auto
"
width=
"
200px
"
>
<template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align:left"
><span>
操作
</span></c-col>
...
...
@@ -239,52 +292,7 @@
</c-col>
</c-col>
<c-col
:span=
"23"
style=
"margin-left:9px;height:25px"
>
<el-divider></el-divider>
</c-col>
<!-- -------------------Infotext------------------- -->
<c-col
:span=
"23"
style=
"margin-top:10px"
>
<c-col
:span=
"17"
>
<c-col
:span=
"22"
>
<el-form-item
label=
"Infotext"
>
<c-input
type=
"textarea"
v-model=
"model.trn.inftxt"
maxlength=
"65"
:rows=
"3"
show-word-limit
placeholder=
"请输入Infotext"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
>
<c-button
style=
"margin:0 10px 0 10px;padding: 0 10px;"
size=
"small"
icon=
"el-icon-search"
type=
"primary"
></c-button>
</c-col>
</c-col>
<c-col
:span=
"7"
>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"40%"
>
<!-- <c-input v-model="model.trn.infdsp" style="width:100%" placeholder="请选择Infoflag">
</c-input> -->
<el-select
v-model=
"model.trn.infdsp"
style=
"width: 100%"
>
<el-option
v-for=
"item in codes.infdsp"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"40%"
label=
"Send for Repair to"
>
<c-input
v-model=
"model.recpan.usr.extkey"
disabled
style=
"width:100%"
placeholder=
"请选择extkey"
>
</c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!-- <c-col :span="12">
<el-form-item label="User ID">
<c-input v-model="model.recpan.usr.extkey" maxlength="8" placeholder="请输入User ID"></c-input>
...
...
@@ -297,10 +305,13 @@
</el-form-item>
</c-col>
-->
<c-col
:span=
"2
3"
style=
"height:14px;
"
>
<el-form-item
class=
"formItemLabel"
label=
"Signatures:
"
>
<c-col
:span=
"2
4"
style=
"height:24px;margin-top:10px
"
>
<el-form-item
label=
"Signatures"
class=
"messageLabel
"
>
</el-form-item>
</c-col>
<c-col
:span=
"23"
style=
"height:10px;"
>
<el-divider></el-divider>
</c-col>
<c-col
:span=
"23"
>
<!-- <c-input v-model="model.recpan.trsstm" placeholder="请输入Signatures"></c-input> -->
<c-col
:span=
"24"
>
...
...
@@ -322,58 +333,24 @@
fixed=
"right"
prop=
"display"
label=
"操作"
width=
"
auto
"
width=
"
200px
"
>
<
template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align:left"
><span>
操作
</span></c-col>
<c-col
:span=
"12"
style=
"text-align:right"
><c-button
icon=
"el-icon-s-tools"
></c-button></c-col>
</
template
>
<!-- <template slot-scope="scope">
<c-button
style="margin-left: 0"
size="small"
type="primary"
@click="onDetail(scope.$index,scope.row)"
>
详情
</c-button>
<c-button
style="margin-left: 0"
size="small"
type="primary"
@click="onHandle(scope.$index,scope.row)"
>
处理
</c-button>
</template> -->
</el-table-column>
</c-istream-table>
</c-col>
</c-col>
<c-col
:span=
"23"
style=
"margin-left:9px;height:25px;margin-bottom:10px"
>
<el-divider></el-divider>
</c-col>
<!-- -------------------workflow------------------- -->
<c-col
:span=
"23"
>
<c-col
:span=
"12"
>
<el-form-item
label=
"Object"
>
<c-col
:span=
"10"
>
<c-input
v-model=
"model.wfmmod.wfs.objtyp"
disabled
style=
"width:100%"
placeholder=
"请选择Table Used to Store Associated Object"
></c-input>
</c-col>
<c-col
:span=
"10"
>
<c-input
v-model=
"model.wfmmod.wfs.objinr"
disabled
maxlength=
"8"
placeholder=
"请输入Object"
></c-input>
</c-col>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Object Name"
>
<c-input
v-model=
"model.wfmmod.wfs.objnam"
maxlength=
"40"
disabled
placeholder=
"请输入External Readable Object Identification"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
style=
"height:24px;margin-top:10px"
>
<el-form-item
label=
"Workflow"
class=
"messageLabel"
>
</el-form-item>
</c-col>
<c-col
:span=
"23"
style=
"height:10px;"
>
<el-divider></el-divider>
</c-col>
<c-col
:span=
"23"
>
<c-col
:span=
"24"
>
...
...
@@ -434,18 +411,18 @@ export default {
model
:
new
Trnrel
().
data
,
documentsData
:
{
columns
:
[
"1 1
\"
Type
\"
6
0 1 0:0 1 CORTYP"
,
"2 2
\"
External Key
\"
21
0"
,
"3 3
\"
Document
\"
24
0"
,
"4 4
\"
Show
\"
8
0 5 6:1 0 A"
,
"5 5
\"
GenPDF
\"
8
0 5 6:1 0 B"
"1 1
\"
Type
\"
10
0 1 0:0 1 CORTYP"
,
"2 2
\"
External Key
\"
30
0"
,
"3 3
\"
Document
\"
30
0"
,
"4 4
\"
Show
\"
15
0 5 6:1 0 A"
,
"5 5
\"
GenPDF
\"
15
0 5 6:1 0 B"
],
data
:
[],
},
SignaturesData
:
{
columns
:
[
'1 2:1 "User" 200'
,
'2 3:1 "Date / Time"
2
00'
,
'2 3:1 "Date / Time"
3
00'
,
// '3 5:1 "Action" 400',
'4 1:1 "Type" 200'
],
...
...
@@ -453,14 +430,14 @@ export default {
},
stmData
:
{
columns
:
[
'1 1
"ID" 5
0'
,
'2 2 "Service" 125
1 0:0 1 SRVTXT
'
,
'3 3 "Status"
80 1 0:0 1 WFE:STA
'
,
'4 4
"Last Update" 102
'
,
'5 5 "Retries" 100
1 0:1
'
,
'6 6 "Text"
5
00'
,
'7 7
"Contrary Text" 5
00'
,
'8 8
"Target Time" 200'
'1 1
"ID" 10
0'
,
'2 2 "Service" 125'
,
'3 3 "Status"
100
'
,
'4 4
"Last Update" 125
'
,
'5 5 "Retries" 100'
,
'6 6 "Text"
3
00'
,
'7 7
"Contrary Text" 3
00'
,
'8 8 "Target Time" 200'
],
data
:
[],
},
...
...
@@ -504,4 +481,12 @@ export default {
text-align
:
left
;
font-weight
:
bold
;
}
.el-col
>>>
.el-divider--horizontal
{
margin-top
:
5px
;
}
.messageLabel
>>>
.el-form-item__label
{
text-align
:
left
;
font-weight
:
bold
;
font-size
:
12px
;
}
</
style
>
\ No newline at end of file
src/views/Business/Trnrel/Trnfnd/Inftrnps.vue
View file @
1d4cfd4a
...
...
@@ -189,7 +189,7 @@
type=
"primary"
icon=
"el-icon-search"
size=
"small"
@
click=
"handleSearch"
@
click=
"
trnfnd
handleSearch"
>
查询
</el-button
>
</c-col>
...
...
@@ -390,7 +390,7 @@
fixed=
"right"
prop=
"display"
label=
"操作"
width=
"
auto
"
width=
"
150px
"
>
<
template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align:left"
><span>
操作
</span></c-col>
...
...
src/views/Business/Trnrel/Trnfnd/TrnfndsDetail.vue
View file @
1d4cfd4a
...
...
@@ -2,13 +2,13 @@
<c-page
title=
""
>
<div
class=
"eContainer"
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"23"
>
<
!--
<
c-col
:span=
"23"
>
<div
style=
"float:right;margin-bottom:10px"
>
<el-button
size=
"small"
>
交易快照
</el-button>
<el-button
size=
"small"
>
智能提示
</el-button>
<el-button
size=
"small"
@
click=
"exit"
>
退出
</el-button>
<el-button
size=
"small"
@
click=
"exit"
>
返回
</el-button>
</div>
</c-col>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
>
...
...
@@ -26,19 +26,33 @@
style=
"margin-left:15px"
>
<c-content>
<c-col
:span=
"13"
style=
"height:24px"
>
<el-form-item
label=
"基本信息"
class=
"messageLabel"
>
</el-form-item>
</c-col>
<c-col
:span=
"10"
style=
"text-align:right"
>
<el-button
size=
"small"
>
交易快照
</el-button>
<el-button
size=
"small"
>
智能提示
</el-button>
<c-button
size=
"small"
@
click=
"exit"
>
返回
</c-button>
</c-col>
<c-col
:span=
"23"
style=
"height: 10px;margin-bottom:10px"
>
<el-divider></el-divider>
</c-col>
<!-- -------------------基础信息------------------- -->
<!-- ========================= Left ========================= -->
<c-col
:span=
"1
0
"
>
<c-col
:span=
"1
1
"
>
<c-col
:span=
"24"
>
<c-col
:span=
"22"
>
<el-form-item
label=
"Reference"
>
<c-input
v-model=
"model.trn.ownref"
maxlength=
"16"
disabled
placeholder=
"请输入Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
>
<c-col
:span=
"2"
style=
"text-align: right"
>
<c-button
style=
"margin:0
10px
0 10px;padding: 0 12px;"
style=
"margin:0
0
0 10px;padding: 0 12px;"
size=
"small"
type=
"primary"
>
...
...
@@ -53,9 +67,9 @@
<c-input
v-model=
"model.recpan.atp.cod"
maxlength=
"6"
disabled
placeholder=
"请输入Transaction ID"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
>
<c-col
:span=
"2"
style=
"text-align: right"
>
<c-button
style=
"margin:0
10px
0 10px;padding: 0 12px;"
style=
"margin:0
0
0 10px;padding: 0 12px;"
size=
"small"
type=
"primary"
>
...
...
@@ -120,18 +134,34 @@
</c-col>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"22"
>
<el-form-item
label=
"Infotext"
>
<c-input
type=
"textarea"
v-model=
"model.trn.inftxt"
maxlength=
"65"
:rows=
"3"
show-word-limit
placeholder=
"请输入Infotext"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
style=
"text-align: right"
>
<c-button
style=
"margin:0 0 0 10px;padding: 0 10px;"
size=
"small"
icon=
"el-icon-search"
type=
"primary"
></c-button>
</c-col>
</c-col>
</c-col>
<!-- ========================= Right ========================= -->
<c-col
:span=
"1
3
"
>
<c-col
:span=
"1
2
"
>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Ident No."
>
<c-col
:span=
"2
2
"
>
<el-form-item
label-width=
"
3
0%"
label=
"Ident No."
>
<c-col
:span=
"2
1
"
>
<c-input
v-model=
"model.trn.inr"
disabled
placeholder=
"请输入Ident No."
></c-input>
</c-col>
<c-col
:span=
"
2
"
>
<c-col
:span=
"
3"
style=
"text-align: right
"
>
<c-button
style=
"margin:0
10px
0 10px;padding: 0 12px;"
style=
"margin:0
0
0 10px;padding: 0 12px;"
size=
"small"
type=
"primary"
>
...
...
@@ -142,7 +172,7 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Transaction ID"
>
<el-form-item
label-width=
"
3
0%"
label=
"Transaction ID"
>
<el-select
v-model=
"model.recpan.atp.cod"
style=
"width: 100%"
disabled
>
<el-option
v-for=
"item in codes.atptxt"
...
...
@@ -156,20 +186,20 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Drop Receiver"
>
<el-form-item
label-width=
"
3
0%"
label=
"Drop Receiver"
>
<c-input
v-model=
"model.trn.objnam"
maxlength=
"40"
disabled
placeholder=
"请输入External Readable Object Identification"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Release Status of Transaction"
>
<el-form-item
label-width=
"
3
0%"
label=
"Release Status of Transaction"
>
<c-input
v-model=
"model.trn.relflg"
style=
"width:100%"
disabled
placeholder=
"请选择Release Status of Transaction"
>
</c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Signatures Required/Obtained"
>
<el-form-item
label-width=
"
3
0%"
label=
"Signatures Required/Obtained"
>
<c-row>
<c-col
:span=
"11"
>
<c-input
v-model=
"model.trn.relreq"
maxlength=
"3"
disabled
placeholder=
"请输入Signatures Required/Obtained"
></c-input>
...
...
@@ -185,27 +215,50 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"
4
0%"
label=
"Completion text"
>
<el-form-item
label-width=
"
3
0%"
label=
"Completion text"
>
<c-input
style=
"font-weight:bold"
v-model=
"model.recpan.cpltxt"
disabled
placeholder=
"请输入Based on Ident No."
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"30%"
label=
"Infoflag"
>
<el-select
v-model=
"model.trn.infdsp"
style=
"width: 100%"
>
<el-option
v-for=
"item in codes.infdsp"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"30%"
label=
"Send for Repair to"
>
<c-input
v-model=
"model.recpan.usr.extkey"
disabled
style=
"width:100%"
placeholder=
"请选择extkey"
>
</c-input>
</el-form-item>
</c-col>
</c-col>
<!-- -------------------分割线------------------- -->
<c-col
:span=
"23"
>
<
!--
<
c-col
:span=
"23"
>
<div
style=
"border-bottom: 10px solid rgb(232, 232, 232);"
>
</div>
</c-col>
</c-col>
-->
<!--
<c-col
:span=
"23"
style=
"margin-left:9px;height:25px"
>
<el-divider></el-divider>
</c-col>
-->
<!-- -------------------document------------------- -->
<c-col
:span=
"2
3"
style=
"height:14px;margin-top:5
px"
>
<el-form-item
class=
"formItemLabel"
label=
"Documents:
"
>
<c-col
:span=
"2
4"
style=
"height:24
px"
>
<el-form-item
label=
"面函"
class=
"messageLabel
"
>
</el-form-item>
</c-col>
<c-col
:span=
"23"
style=
"height: 10px"
>
<el-divider></el-divider>
</c-col>
<c-col
:span=
"23"
>
<!--
<c-input
v-model=
"model.recpan.smhstm"
placeholder=
"请输入Documents"
></c-input>
-->
<c-col
:span=
"24"
>
...
...
@@ -214,7 +267,7 @@
fixed=
"right"
prop=
"display"
label=
"操作"
width=
"
auto
"
width=
"
200px
"
>
<template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align:left"
><span>
操作
</span></c-col>
...
...
@@ -239,52 +292,7 @@
</c-col>
</c-col>
<c-col
:span=
"23"
style=
"margin-left:9px;height:25px"
>
<el-divider></el-divider>
</c-col>
<!-- -------------------Infotext------------------- -->
<c-col
:span=
"23"
style=
"margin-top:10px"
>
<c-col
:span=
"17"
>
<c-col
:span=
"22"
>
<el-form-item
label=
"Infotext"
>
<c-input
type=
"textarea"
v-model=
"model.trn.inftxt"
maxlength=
"65"
:rows=
"3"
show-word-limit
placeholder=
"请输入Infotext"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"2"
>
<c-button
style=
"margin:0 10px 0 10px;padding: 0 10px;"
size=
"small"
icon=
"el-icon-search"
type=
"primary"
></c-button>
</c-col>
</c-col>
<c-col
:span=
"7"
>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"40%"
>
<!-- <c-input v-model="model.trn.infdsp" style="width:100%" placeholder="请选择Infoflag">
</c-input> -->
<el-select
v-model=
"model.trn.infdsp"
style=
"width: 100%"
>
<el-option
v-for=
"item in codes.infdsp"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label-width=
"40%"
label=
"Send for Repair to"
>
<c-input
v-model=
"model.recpan.usr.extkey"
disabled
style=
"width:100%"
placeholder=
"请选择extkey"
>
</c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!-- <c-col :span="12">
<el-form-item label="User ID">
<c-input v-model="model.recpan.usr.extkey" maxlength="8" placeholder="请输入User ID"></c-input>
...
...
@@ -297,10 +305,13 @@
</el-form-item>
</c-col>
-->
<c-col
:span=
"2
3"
style=
"height:14px;
"
>
<el-form-item
class=
"formItemLabel"
label=
"Signatures:
"
>
<c-col
:span=
"2
4"
style=
"height:24px;margin-top:10px
"
>
<el-form-item
label=
"Signatures"
class=
"messageLabel
"
>
</el-form-item>
</c-col>
<c-col
:span=
"23"
style=
"height:10px;"
>
<el-divider></el-divider>
</c-col>
<c-col
:span=
"23"
>
<!-- <c-input v-model="model.recpan.trsstm" placeholder="请输入Signatures"></c-input> -->
<c-col
:span=
"24"
>
...
...
@@ -322,58 +333,24 @@
fixed=
"right"
prop=
"display"
label=
"操作"
width=
"
auto
"
width=
"
200px
"
>
<
template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align:left"
><span>
操作
</span></c-col>
<c-col
:span=
"12"
style=
"text-align:right"
><c-button
icon=
"el-icon-s-tools"
></c-button></c-col>
</
template
>
<!-- <template slot-scope="scope">
<c-button
style="margin-left: 0"
size="small"
type="primary"
@click="onDetail(scope.$index,scope.row)"
>
详情
</c-button>
<c-button
style="margin-left: 0"
size="small"
type="primary"
@click="onHandle(scope.$index,scope.row)"
>
处理
</c-button>
</template> -->
</el-table-column>
</c-istream-table>
</c-col>
</c-col>
<c-col
:span=
"23"
style=
"margin-left:9px;height:25px;margin-bottom:10px"
>
<el-divider></el-divider>
</c-col>
<!-- -------------------workflow------------------- -->
<c-col
:span=
"23"
>
<c-col
:span=
"12"
>
<el-form-item
label=
"Object"
>
<c-col
:span=
"10"
>
<c-input
v-model=
"model.wfmmod.wfs.objtyp"
disabled
style=
"width:100%"
placeholder=
"请选择Table Used to Store Associated Object"
></c-input>
</c-col>
<c-col
:span=
"10"
>
<c-input
v-model=
"model.wfmmod.wfs.objinr"
disabled
maxlength=
"8"
placeholder=
"请输入Object"
></c-input>
</c-col>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Object Name"
>
<c-input
v-model=
"model.wfmmod.wfs.objnam"
maxlength=
"40"
disabled
placeholder=
"请输入External Readable Object Identification"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
style=
"height:24px;margin-top:10px"
>
<el-form-item
label=
"Workflow"
class=
"messageLabel"
>
</el-form-item>
</c-col>
<c-col
:span=
"23"
style=
"height:10px;"
>
<el-divider></el-divider>
</c-col>
<c-col
:span=
"23"
>
<c-col
:span=
"24"
>
...
...
@@ -434,18 +411,18 @@ export default {
model
:
new
Trnrel
().
data
,
documentsData
:
{
columns
:
[
"1 1
\"
Type
\"
6
0 1 0:0 1 CORTYP"
,
"2 2
\"
External Key
\"
21
0"
,
"3 3
\"
Document
\"
24
0"
,
"4 4
\"
Show
\"
8
0 5 6:1 0 A"
,
"5 5
\"
GenPDF
\"
8
0 5 6:1 0 B"
"1 1
\"
Type
\"
10
0 1 0:0 1 CORTYP"
,
"2 2
\"
External Key
\"
30
0"
,
"3 3
\"
Document
\"
30
0"
,
"4 4
\"
Show
\"
15
0 5 6:1 0 A"
,
"5 5
\"
GenPDF
\"
15
0 5 6:1 0 B"
],
data
:
[],
},
SignaturesData
:
{
columns
:
[
'1 2:1 "User" 200'
,
'2 3:1 "Date / Time"
2
00'
,
'2 3:1 "Date / Time"
3
00'
,
// '3 5:1 "Action" 400',
'4 1:1 "Type" 200'
],
...
...
@@ -453,14 +430,14 @@ export default {
},
stmData
:
{
columns
:
[
'1 1
"ID" 5
0'
,
'2 2 "Service" 125
1 0:0 1 SRVTXT
'
,
'3 3 "Status"
80 1 0:0 1 WFE:STA
'
,
'4 4
"Last Update" 102
'
,
'5 5 "Retries" 100
1 0:1
'
,
'6 6 "Text"
5
00'
,
'7 7
"Contrary Text" 5
00'
,
'8 8
"Target Time" 200'
'1 1
"ID" 10
0'
,
'2 2 "Service" 125'
,
'3 3 "Status"
100
'
,
'4 4
"Last Update" 125
'
,
'5 5 "Retries" 100'
,
'6 6 "Text"
3
00'
,
'7 7
"Contrary Text" 3
00'
,
'8 8 "Target Time" 200'
],
data
:
[],
},
...
...
@@ -504,4 +481,12 @@ export default {
text-align
:
left
;
font-weight
:
bold
;
}
.el-col
>>>
.el-divider--horizontal
{
margin-top
:
5px
;
}
.messageLabel
>>>
.el-form-item__label
{
text-align
:
left
;
font-weight
:
bold
;
font-size
:
12px
;
}
</
style
>
\ No newline at end of file
src/views/TaskList/index.vue
View file @
1d4cfd4a
...
...
@@ -3,27 +3,33 @@
<c-tabs
:value=
"tabVal"
type=
"card"
@
tab-click=
"tabClick"
>
<el-tab-pane
label=
"待经办列表"
name=
"sptsel"
>
<!--
<c-table
:columnsConfig=
"tableColumns"
:list=
"tableData"
></c-table>
-->
<c-content
:height=
"160"
>
<span
slot=
"label"
>
待经办列表
<el-badge
v-if=
"$store.state.Status.taskList.sptsel>0"
:value=
"$store.state.Status.taskList.sptsel"
:max=
"99"
/>
</span>
<c-content
:height=
"120"
>
<t-sptsel
/>
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"待复核列表"
name=
"trnrel"
>
<c-content
:height=
"160"
>
<span
slot=
"label"
>
待复核列表
<el-badge
v-if=
"$store.state.Status.taskList.trnrel>0"
:value=
"$store.state.Status.taskList.trnrel"
:max=
"99"
/>
</span>
<c-content
:height=
"120"
>
<t-trnrel
/>
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"已完成列表"
name=
"trnfnd"
>
<span
slot=
"label"
>
已完成列表
<el-badge
v-if=
"$store.state.Status.taskList.trnfnd>0"
:value=
"$store.state.Status.taskList.trnfnd"
:max=
"99"
/>
</span>
<c-content
:height=
"120"
>
<t-trnfnd
/>
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"待申报列表"
name=
"bopsel"
>
<t-bopsel
/>
...
...
@@ -36,7 +42,11 @@
<t-sptbrk
/>
</el-tab-pane>
<el-tab-pane
label=
"到期提示"
name=
"diasel"
>
<c-content
:height=
"160"
>
<span
slot=
"label"
>
到期提示
<el-badge
v-if=
"$store.state.Status.taskList.diasel>0"
:value=
"$store.state.Status.taskList.diasel"
:max=
"99"
/>
</span>
<c-content
:height=
"120"
>
<t-diasel/>
</c-content>
</el-tab-pane>
...
...
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