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
131c1cea
Commit
131c1cea
authored
Sep 21, 2022
by
liyixun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getamt (bug870)
parent
e03530ab
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
70 additions
and
20 deletions
+70
-20
Amedat20.vue
src/views/Business/Getame/Amedat20.vue
+50
-7
Ameps20.vue
src/views/Business/Getame/Ameps20.vue
+0
-0
Ovwp.vue
src/views/Business/Getame/Ovwp.vue
+0
-0
Ptyp.vue
src/views/Business/Getame/Ptyp.vue
+9
-5
Amedat20.vue
src/views/Business/Gitame/Amedat20.vue
+8
-6
Ameps20.vue
src/views/Business/Gitame/Ameps20.vue
+3
-2
No files found.
src/views/Business/Getame/Amedat20.vue
View file @
131c1cea
...
...
@@ -91,12 +91,12 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"Old appr. Expiry Date"
prop=
"
trnmod.swiadd.new
dtaappexpdat"
prop=
"
oldgidgrp.blk.
dtaappexpdat"
>
<c-date-picker
disabled
type=
"date"
v-model=
"model.
trnmod.swiadd.new
dtaappexpdat"
v-model=
"model.
oldgidgrp.blk.
dtaappexpdat"
style=
"width: 100%"
placeholder=
"请选择"
></c-date-picker>
...
...
@@ -122,7 +122,11 @@
prop=
"trnmod.swiadd.newexpdat"
>
<c-date-picker
disabled
:disabled=
"
model.trnmod.swiadd.exptyp == 'OPEN' ||
(model.trnmod.swiadd.exptyp == '' &&
model.oldgidgrp.rec.expdat == '')
"
type=
"date"
v-model=
"model.trnmod.swiadd.newexpdat"
style=
"width: 100%"
...
...
@@ -137,12 +141,19 @@
prop=
"trnmod.swiadd.exptxt"
>
<c-input
:disabled=
"model.trnmod.swiadd.exptyp != 'COND'"
:disabled=
"
!(model.trnmod.swiadd.exptyp == 'COND') &&
!(
model.oldgidgrp.blk.exptxt != '' &&
model.trnmod.swiadd.exptyp == ''
)
"
type=
"textarea"
v-model=
"model.trnmod.swiadd.exptxt"
maxlength=
"65"
show-word-limit
placeholder=
"请输入New Expiry Condition"
@
blur=
"exptxtBlur"
></c-input>
</c-form-item>
</c-col>
...
...
@@ -154,6 +165,10 @@
prop=
"trnmod.swiadd.liatypc"
>
<c-select
:disabled=
"
model.gidgrp.rec.hndtyp != 'OC' &&
model.gidgrp.rec.purpos != 'CO'
"
:code=
"codes.exptyp"
v-model=
"model.trnmod.swiadd.liatypc"
style=
"width: 100%"
...
...
@@ -189,7 +204,11 @@
prop=
"trnmod.swiadd.newliadat"
>
<c-date-picker
disabled
:disabled=
"
model.trnmod.swiadd.liatypc == 'OPEN' ||
(model.trnmod.swiadd.liatypc == '' &&
model.oldgidgrp.rec.liadat == '')
"
type=
"date"
v-model=
"model.trnmod.swiadd.newliadat"
style=
"width: 100%"
...
...
@@ -204,7 +223,13 @@
prop=
"trnmod.swiadd.liatxtc"
>
<c-input
:disabled=
"model.trnmod.swiadd.liatypc != 'COND'"
:disabled=
"
!(model.trnmod.swiadd.liatypc == 'COND') &&
!(
model.oldgidgrp.blk.liatxtc != '' &&
model.trnmod.swiadd.liatypc == ''
)
"
type=
"textarea"
v-model=
"model.trnmod.swiadd.liatxtc"
maxlength=
"65"
...
...
@@ -237,6 +262,10 @@
prop=
"trnmod.swiadd.newdtaappexpdat"
>
<c-date-picker
:disabled=
"
model.trnmod.swiadd.exptyp != 'OPEN' &&
model.oldgidgrp.rec.exptyp != 'OPEN'
"
type=
"date"
v-model=
"model.trnmod.swiadd.newdtaappexpdat"
style=
"width: 100%"
...
...
@@ -254,6 +283,7 @@ import Api from "~/service/Api";
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Getame/Event"
;
import
Utils
from
"~/utils"
;
export
default
{
inject
:
[
"root"
],
...
...
@@ -262,7 +292,20 @@ export default {
data
()
{
return
{};
},
methods
:
{
...
Event
},
methods
:
{
...
Event
,
async
exptxtBlur
()
{
let
rtnmsg
=
await
this
.
executeDefault
(
"gidgrp.blk.exptxt"
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
);
}
let
rtnmsg1
=
await
this
.
executeDefault
(
"gidgrp.blk.atxexptxt"
);
if
(
rtnmsg1
.
respCode
==
SUCCESS
)
{
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg1
.
data
);
}
},
},
created
:
function
()
{},
};
</
script
>
...
...
src/views/Business/Getame/Ameps20.vue
View file @
131c1cea
This diff is collapsed.
Click to expand it.
src/views/Business/Getame/Ovwp.vue
View file @
131c1cea
This diff is collapsed.
Click to expand it.
src/views/Business/Getame/Ptyp.vue
View file @
131c1cea
...
...
@@ -204,9 +204,13 @@
</c-row>
<c-col
:span=
"24"
>
<el-form-item
label=
"Additional Parties"
>
<c-edit-table
:model=
"model"
v-bind=
"ptsaddg"
style=
"margin-left:-120px"
>
<el-table-column
label=
"操作"
>
<el-form-item
label=
"Additional Parties"
>
<c-edit-table
:model=
"model"
v-bind=
"ptsaddg"
style=
"margin-left: -120px"
>
<el-table-column
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
...
...
@@ -217,8 +221,8 @@
</
template
>
</el-table-column>
</c-edit-table>
</el-form-item>
</c-col>
</el-form-item>
</c-col>
</div>
</template>
<
script
>
...
...
src/views/Business/Gitame/Amedat20.vue
View file @
131c1cea
...
...
@@ -91,12 +91,12 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"Old appr. Expiry Date"
prop=
"
trnmod.swiadd.new
dtaappexpdat"
prop=
"
oldgidgrp.blk.
dtaappexpdat"
>
<c-date-picker
disabled
type=
"date"
v-model=
"model.
trnmod.swiadd.new
dtaappexpdat"
v-model=
"model.
oldgidgrp.blk.
dtaappexpdat"
style=
"width: 100%"
placeholder=
"请选择"
></c-date-picker>
...
...
@@ -122,9 +122,10 @@
prop=
"trnmod.swiadd.newexpdat"
>
<c-date-picker
:disabled=
"
:disabled=
"
model.trnmod.swiadd.exptyp == 'OPEN' ||
model.oldgidgrp.rec.expdat == ''
(model.trnmod.swiadd.exptyp == '' &&
model.oldgidgrp.rec.expdat == '')
"
type=
"date"
v-model=
"model.trnmod.swiadd.newexpdat"
...
...
@@ -182,9 +183,10 @@
prop=
"trnmod.swiadd.newliadat"
>
<c-date-picker
:disabled=
"
:disabled=
"
model.trnmod.swiadd.liatypc == 'OPEN' ||
model.oldgidgrp.rec.liadat == ''
(model.trnmod.swiadd.liatypc == '' &&
model.oldgidgrp.rec.liadat == '')
"
type=
"date"
v-model=
"model.trnmod.swiadd.newliadat"
...
...
src/views/Business/Gitame/Ameps20.vue
View file @
131c1cea
...
...
@@ -287,14 +287,15 @@
v-model=
"model.trnmod.swiadd.purposame"
style=
"width: 100%"
placeholder=
"请输入Purpose of amend."
:code=
"getValues('trnmod.swiadd.purposame')"
>
<el-option
<
!--
<
el-option
v-for=
"item in codes.purposame"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-option>
-->
</c-select>
</el-form-item>
</c-col>
...
...
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