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
05635de4
Commit
05635de4
authored
Jan 06, 2022
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待复核列表详情页
parent
5f40d21a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
366 additions
and
13 deletions
+366
-13
Pattern.js
src/model/Ditdck/Pattern.js
+3
-9
Event.js
src/model/Trnrel/Event.js
+5
-0
Litdckp.vue
src/views/Business/Ditdck/Litdckp.vue
+1
-1
index.vue
src/views/Business/Ditdck/index.vue
+12
-2
Inftrnps.vue
src/views/Business/Trnrel/Inftrnps.vue
+345
-1
No files found.
src/model/Ditdck/Pattern.js
View file @
05635de4
...
...
@@ -17,7 +17,7 @@ export default {
],
"didgrp.cbs.nom1.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
required
:
true
,
message
:
"必输项"
,
trigger
:
'blur'
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
...
...
@@ -30,7 +30,7 @@ export default {
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"didgrp.cbs.opn1.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
required
:
true
,
message
:
"必输项"
,
trigger
:
'blur'
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
...
...
@@ -95,7 +95,7 @@ export default {
"bddgrp.cbs.max.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
required
:
true
,
message
:
"必输项"
,
trigger
:
'blur'
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
...
...
@@ -174,12 +174,6 @@ export default {
],
"bddgrp.cbs.max.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"bddgrp.cbs.opn1.cur"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
...
...
src/model/Trnrel/Event.js
View file @
05635de4
...
...
@@ -99,6 +99,11 @@ export default {
this
.
$router
.
push
({
path
:
viewurl
,
query
:
{
routeParams
:
{
process
:
"1"
,
commitFlag
:
"1"
},
trn
:
row
[
'INR'
],
idx
:
idx
,
operateId
:
operateId
}
});
},
async
onDetail
(
idx
,
row
)
{
this
.
Trnp0Visible
=
true
;
},
async
onRelrow
(
idx
)
{
this
.
$confirm
(
'您确定复核该笔交易?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
...
...
src/views/Business/Ditdck/Litdckp.vue
View file @
05635de4
...
...
@@ -735,7 +735,7 @@ export default {
});
},
isShowDocpre
(
val
){
this
.
$emit
(
"changeShowDocpre"
,
val
)
this
.
$emit
(
"changeShowDocpre"
,
val
)
;
},
},
created
:
function
()
{},
...
...
src/views/Business/Ditdck/index.vue
View file @
05635de4
<
template
>
<c-page
title=
"到单"
>
<div
class=
"eContainer"
>
<c-bus-button
:
$
pntvm=
"this"
></c-bus-button>
<!--
<c-bus-button
:
$
pntvm=
"this"
></c-bus-button>
-->
<c-function-btn
:handleSubmit=
"handleSubmit"
:handleCheck=
"handleCheck"
:handleStash=
"handleStash"
>
</c-function-btn>
<el-form
:model=
"model"
:rules=
"rules"
...
...
@@ -76,6 +82,7 @@ import Utils from "~/utils/index";
import
CodeTable
from
"~/config/CodeTable"
;
import
Ditdck
from
"~/model/Ditdck"
;
import
CommonProcess
from
"~/mixin/CommonProcess"
;
import
CommonFuncs
from
"~/mixin/CommonFuncs"
;
import
Pattern
from
"~/model/Ditdck/Pattern"
;
import
Default
from
"~/model/Ditdck/Default"
;
import
Check
from
"~/model/Ditdck/Check"
;
...
...
@@ -113,7 +120,7 @@ export default {
root
:
this
,
};
},
mixins
:
[
CommonProcess
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
CommonProcess
,
CommonFuncs
],
// 里面包含了Default、Check等的公共处理
data
()
{
return
{
isShowDocpre
:
false
,
...
...
@@ -158,6 +165,9 @@ export default {
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
if
(
this
.
model
.
bddgrp
.
rec
.
dscinsflg
==
"X"
){
this
.
isShowDocpre
=
true
;
}
},
methods
:
{
changeShowDocpre
(
val
)
{
...
...
src/views/Business/Trnrel/Inftrnps.vue
View file @
05635de4
...
...
@@ -396,7 +396,7 @@
> -->
<el-row>
<c-col
:span=
"24"
>
<c-istream-table
:list=
"stmData.data"
:columns=
"stmData.columns"
>
<c-istream-table
:list=
"stmData.data"
:columns=
"stmData.columns"
style=
"width:100%"
>
<el-table-column
fixed=
"right"
prop=
"display"
...
...
@@ -424,6 +424,8 @@
<c-button
style=
"margin-left: 0"
size=
"small"
type=
"primary"
@
click=
"onDetail(scope.$index,scope.row)"
>
详情
</c-button>
...
...
@@ -452,6 +454,347 @@
</el-table-column>
</c-istream-table>
</c-col>
<el-dialog
:title=
"title"
:visible
.
sync=
"Trnp0Visible"
width=
"70%"
modal=
true
center
>
<
template
>
<div
class=
"eibs-tab"
>
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
>
<c-input
v-model=
"model.recpan.recget.sdamod.dadsnd"
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
-->
<c-col
:span=
"24"
>
<c-col
:span=
"8"
>
<el-form-item
label=
"Reference"
>
<c-input
v-model=
"model.trn.ownref"
maxlength=
"16"
placeholder=
"请输入Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"1"
>
<c-button
size=
"small"
type=
"primary"
>
i
</c-button>
</c-col>
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Reference"
>
<c-input
v-model=
"model.recpan.con"
placeholder=
"请输入Reference"
></c-input>
</el-form-item>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Transaction Key"
>
<c-input
v-model=
"model.trn.inr"
maxlength=
"8"
placeholder=
"请输入Transaction Key"
></c-input>
</el-form-item>
</c-col>
-->
<c-col
:span=
"6"
>
<el-form-item
label-width=
"30%"
label=
"Ident No."
>
<c-input
v-model=
"model.recpan.recget.sdamod.seainf"
placeholder=
"请输入Ident No."
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"1"
>
</c-col>
<c-col
:span=
"1"
>
<c-button
size=
"small"
type=
"primary"
>
i
</c-button>
</c-col>
<c-col
:span=
"6"
>
<c-input
v-model=
"model.trn.objnam"
maxlength=
"40"
placeholder=
"请输入External Readable Object Identification"
></c-input>
</c-col>
</c-col>
<!--
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onRecpanDet"
>
详情
</c-button>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
>
<c-input
v-model=
"model.recpan.atpget.sdamod.dadsnd"
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
-->
<c-col
:span=
"24"
>
<c-col
:span=
"8"
>
<el-form-item
label=
"Transaction ID"
>
<c-input
v-model=
"model.recpan.atp.cod"
maxlength=
"6"
placeholder=
"请输入Transaction ID"
></c-input>
</el-form-item>
</c-col>
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Transaction"
>
<c-input
v-model=
"model.recpan.atpget.sdamod.seainf"
placeholder=
"请输入Transaction"
></c-input>
</el-form-item>
</c-col>
-->
<c-col
:span=
"1"
>
<c-button
size=
"small"
type=
"primary"
>
i
</c-button>
</c-col>
<c-col
:span=
"14"
>
<c-input
v-model=
"model.recpan.atp.cod"
maxlength=
"6"
placeholder=
"请输入Transaction ID"
></c-input>
</c-col>
</c-col>
<!--
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onSyswrnButshw"
>
&
Warning
</c-button>
</c-col>
-->
<c-col
:span=
"12"
>
<c-row>
<c-col
:span=
"12"
>
<el-form-item
label=
"Relevant Amount"
>
<c-input
v-model=
"model.trn.reloricur"
maxlength=
"3"
placeholder=
"请输入Relevant Amount"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<c-input
v-model=
"model.trn.reloriamt"
placeholder=
"请输入Relevant Amount for Release in Original Currency"
></c-input>
</c-col>
</c-row>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label-width=
"40%"
label=
"Release Status of Transaction"
>
<c-select
v-model=
"model.trn.relflg"
style=
"width:100%"
placeholder=
"请选择Release Status of Transaction"
>
</c-select>
</el-form-item>
</c-col>
<!--
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onRecpanNotmap"
>
Unmapped
</c-button>
</c-col>
-->
<c-col
:span=
"6"
>
<el-form-item
label=
"Responsible"
>
<c-input
v-model=
"model.trn.usr"
maxlength=
"8"
placeholder=
"请输入Responsible"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"6"
>
<el-form-item
label-width=
"35%"
label=
"Group"
>
<c-input
v-model=
"model.trn.usg"
maxlength=
"6"
placeholder=
"请输入Responsible Group"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label-width=
"40%"
label=
"Signatures Required/Obtained"
>
<c-cow>
<c-col
:span=
"11"
>
<c-input
v-model=
"model.trn.relreq"
maxlength=
"3"
placeholder=
"请输入Signatures Required/Obtained"
></c-input>
</c-col>
<c-col
:span=
"2"
>
<span
style=
"margin-left:40%"
>
/
</span>
</c-col>
<c-col
:span=
"11"
>
<c-input
v-model=
"model.trn.relres"
maxlength=
"3"
placeholder=
"请输入Applied Signatures"
></c-input>
</c-col>
</c-cow>
</el-form-item>
</c-col>
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Applied Signatures"
>
<c-input
v-model=
"model.trn.relres"
maxlength=
"3"
placeholder=
"请输入Applied Signatures"
></c-input>
</el-form-item>
</c-col>
-->
<c-col
:span=
"24"
>
<c-col
:span=
"6"
>
<el-form-item
label=
"Based on Ident No."
>
<c-input
v-model=
"model.trn.cortrninr"
maxlength=
"8"
placeholder=
"请输入Based on Ident No."
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"6"
>
<el-form-item
label-width=
"35%"
label=
"Execution Date"
>
<c-date-picker
type=
"date"
v-model=
"model.trn.exedat"
style=
"width:100%"
placeholder=
"请选择Execution Date"
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item>
<span
style=
"text-align:center;display:block;"
v-text=
"model.recpan.cpltxt"
data-path=
".recpan.cpltxt"
>
</span>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"6"
>
<el-form-item
label=
"Entered by"
>
<c-input
v-model=
"model.recpan.cretrs.usr"
maxlength=
"8"
placeholder=
"请输入Entered by"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"6"
>
<el-form-item
label-width=
"35%"
label=
"Timestamp"
>
<c-input
v-model=
"model.recpan.cretrs.dattim"
placeholder=
"请输入Timestamp"
></c-input>
</el-form-item>
</c-col>
</c-col>
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"Send to SOP/CASmf reference"
>
<c-input
v-model=
"model.recpan.ackgrp.rec.sndref"
maxlength=
"40"
placeholder=
"请输入Send to SOP/CASmf reference"
></c-input>
</el-form-item>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<span
v-text=
"model.recpan.spt.sta"
data-path=
".recpan.spt.sta"
>
</span>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onRecpanButspt"
>
Pending Item
</c-button>
</c-col>
-->
<c-col
:span=
"24"
>
<el-form-item
label=
"Documents"
>
<!--
<c-input
v-model=
"model.recpan.smhstm"
placeholder=
"请输入Documents"
></c-input>
-->
<el-table
size=
"mini"
border=
"1"
>
<el-table-column
property=
"type"
label=
"type"
width=
"130"
sortable
></el-table-column>
<el-table-column
property=
"ExternalKey"
label=
"External Key"
width=
"230"
sortable
></el-table-column>
<el-table-column
property=
"Document"
label=
"Document"
width=
"270"
sortable
></el-table-column>
<el-table-column
property=
"nam1"
label=
" "
width=
"120"
></el-table-column>
<el-table-column
property=
"nam2"
label=
" "
width=
"120"
></el-table-column>
</el-table>
</el-form-item>
</c-col>
<!--
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onRecpanInc"
>
Show
&
Incoming
</c-button>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onRecpanButord"
>
Order
</c-button>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<span
v-text=
"model.recpan.ord.sta"
data-path=
".recpan.ord.sta"
>
</span>
</c-col>
-->
<!--
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onImgmod1Image"
>
imgyge
</c-button>
</c-col>
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onRecpanIncben"
>
Inc to Ben
</c-button>
</c-col>
-->
<c-col
:span=
"24"
>
<c-col
:span=
"16"
>
<el-form-item
label=
"Infotext"
>
<c-input
type=
"textarea"
v-model=
"model.trn.inftxt"
maxlength=
"65"
show-word-limit
placeholder=
"请输入Infotext"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"1"
>
<c-button
size=
"small"
type=
"primary"
>
...
</c-button>
</c-col>
<c-col
:span=
"6"
>
<el-form-item
label-width=
"20%"
label=
"Infoflag"
>
<c-input
v-model=
"model.trn.infdsp"
style=
"width:100%"
placeholder=
"请选择Infoflag"
>
</c-input>
</el-form-item>
</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>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
""
>
<c-input
v-model=
"model.recpan.usrget.sdamod.seainf"
placeholder=
"请输入"
></c-input>
</el-form-item>
</c-col>
-->
<c-col
:span=
"24"
>
<c-col
:span=
"18"
>
<el-form-item
label=
"Signatures"
>
<!--
<c-input
v-model=
"model.recpan.trsstm"
placeholder=
"请输入Signatures"
></c-input>
-->
<el-table
size=
"mini"
border=
"1"
>
<el-table-column
property=
"type"
label=
"type"
width=
"130"
sortable
></el-table-column>
<el-table-column
property=
"User"
label=
"User"
width=
"230"
sortable
></el-table-column>
<el-table-column
property=
"date"
label=
"Date/TIme"
width=
"270"
sortable
></el-table-column>
<el-table-column
property=
"Action"
label=
"Action"
width=
"120"
sortable
></el-table-column>
</el-table>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"12"
>
<el-form-item
label=
"Object"
>
<c-col
:span=
"10"
>
<c-input
v-model=
"model.wfmmod.wfs.objtyp"
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"
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"
placeholder=
"请输入External Readable Object Identification"
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
>
<el-form-item>
<!--
<c-input
v-model=
"model.recpan.wfestm"
placeholder=
"请输入WFEs for transaction for display"
></c-input>
-->
<el-table
size=
"mini"
border=
"1"
>
<el-table-column
property=
"type"
label=
"ID"
width=
"130"
sortable
></el-table-column>
<el-table-column
property=
"User"
label=
"Service"
width=
"230"
sortable
></el-table-column>
<el-table-column
property=
"date"
label=
"Status"
width=
"270"
sortable
></el-table-column>
<el-table-column
property=
"Action"
label=
"Last Update"
width=
"120"
sortable
></el-table-column>
<el-table-column
property=
"Action"
label=
"Retries"
width=
"120"
sortable
></el-table-column>
<el-table-column
property=
"Action"
label=
"Text"
width=
"120"
sortable
></el-table-column>
</el-table>
</el-form-item>
</c-col>
</div>
</
template
>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"Trnp0Visible = false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"Trnp0Visible = false"
>
确 定
</el-button>
</div>
</el-dialog>
</el-row>
<!-- <el-row style="margin-top: 2rem">
<c-col :span="23">
...
...
@@ -556,6 +899,7 @@ export default {
},
relrowDisabled
:
true
,
relflgCodes
:[],
Trnp0Visible
:
false
,
// multipleSelection: [],
};
},
...
...
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