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
60136777
Commit
60136777
authored
Sep 21, 2022
by
nanrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
infcld按钮组显示bug处理以及cltset,clttra字段验证问题
parent
3fd715f0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
9 deletions
+24
-9
index.js
src/model/Cltsel/index.js
+1
-0
Pattern.js
src/model/Cltset/Pattern.js
+1
-1
Pattern.js
src/model/Clttra/Pattern.js
+3
-2
BusNavbar.vue
src/views/Business/Infcld/BusNavbar.vue
+12
-1
Infsea.vue
src/views/Business/Infcld/Infsea.vue
+7
-5
No files found.
src/model/Cltsel/index.js
View file @
60136777
...
...
@@ -32,6 +32,7 @@ export default class Cltsel{
chktyp
:
""
,
// Type of Draft .cldgrp.rec.chktyp
colflg
:
""
,
// Payemnt Disposition .cldgrp.rec.colflg
inr
:
""
,
opndat
:
""
,
},
cbs
:{
max
:{
...
...
src/model/Cltset/Pattern.js
View file @
60136777
...
...
@@ -40,7 +40,7 @@ export default {
],
"cldgrp.rec.count"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
//
{max: 3,message:"长度不能超过3"}
],
"setmod.ref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
...
...
src/model/Clttra/Pattern.js
View file @
60136777
...
...
@@ -39,7 +39,7 @@ export default {
// {type: "date", required: false, message: "输入正确的日期"}
],
"cldgrp.rec.count"
:[
{
type
:
"
string
"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
{
type
:
"
number
"
,
required
:
false
,
message
:
"必输项"
},
//
{max: 3,message:"长度不能超过3"}
],
}
\ No newline at end of file
src/views/Business/Infcld/BusNavbar.vue
View file @
60136777
...
...
@@ -54,7 +54,15 @@
amt
:
{
required
:
false
,
default
:
0
,
}
},
inr
:
{
required
:
false
,
default
:
''
,
},
opndat
:
{
required
:
false
,
default
:
0.000
,
},
},
components
:
{},
mixins
:
[
commonProcess
],
// 里面包含了Default、Check等的公共处理
...
...
@@ -100,6 +108,9 @@
this
.
$nextTick
(
function
()
{
this
.
$on
(
"childmethods"
,
async
function
()
{
this
.
model
.
cldgrp
.
cbs
.
opn1
.
amt
=
this
.
amt
;
this
.
model
.
cldgrp
.
rec
.
inr
=
this
.
inr
;
this
.
model
.
cldgrp
.
rec
.
ownref
=
this
.
ownref
;
this
.
model
.
cldgrp
.
rec
.
opndat
=
this
.
opndat
;
let
res
=
await
this
.
executeRule
(
`cfgfil.hotreg
${
this
.
tabIndex
}
`
);
if
(
res
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
res
.
data
);
...
...
src/views/Business/Infcld/Infsea.vue
View file @
60136777
...
...
@@ -165,14 +165,14 @@
slot=
"reference"
>
详情
</c-button>
</el-popover>
<c-button
style=
"margin-left: 0"
size=
"small"
type=
"primary"
@
click=
"getButtons(scope.row['Reference'],scope.row['Open Amount'])"
>
处理
@
click=
"getButtons(scope.row['Reference'],scope.row['Open Amount']
, scope.row['INR'],scope.row['Opened']
)"
>
处理
</c-button>
</template>
</el-table-column>
</c-istream-table>
</c-col>
<m-busbtn
ref=
"childs"
:ownref=
"ownref"
:amt=
"amt"
:model=
"CltselModel"
ownrefPath=
"cldgrp"
trnCode=
"cltsel"
<m-busbtn
ref=
"childs"
:ownref=
"ownref"
:amt=
"amt"
:model=
"CltselModel"
ownrefPath=
"cldgrp"
trnCode=
"cltsel"
:inr=
"inr"
:opndat=
"opndat"
@
onChoose=
"onChoose"
>
11
</m-busbtn>
...
...
@@ -197,6 +197,8 @@ export default {
data
()
{
return
{
amt
:
''
,
inr
:
''
,
opndat
:
''
,
CltselModel
:
new
CltselModel
().
data
,
ownref
:
""
,
initdialog
:
false
,
...
...
@@ -241,13 +243,13 @@ export default {
},
methods
:
{
...
Event
,
async
getButtons
(
ownref
,
amt
)
{
async
getButtons
(
ownref
,
amt
,
inr
,
opndat
)
{
this
.
$refs
.
childs
.
initdialog
=
true
this
.
executeDefault
(
'executeNotify'
);
this
.
ownref
=
ownref
this
.
amt
=
amt
;
this
.
inr
=
inr
;
this
.
opndat
=
opndat
;
console
.
log
(
"ownref:"
+
ownref
);
console
.
log
(
amt
);
},
async
onChoose
(
code
)
{
//跳转交易
...
...
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