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
8640d117
Commit
8640d117
authored
Oct 11, 2022
by
huangxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
litame,litdla交易bug修改
parent
2280c1c3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
45 additions
and
28 deletions
+45
-28
Pattern.js
src/model/Litame/Pattern.js
+1
-1
Amep.vue
src/views/Business/Litame/Amep.vue
+3
-3
Detp.vue
src/views/Business/Litame/Detp.vue
+21
-19
index.vue
src/views/Business/Litame/index.vue
+12
-0
Amep.vue
src/views/Business/Litdla/Amep.vue
+2
-2
Detp.vue
src/views/Business/Litdla/Detp.vue
+0
-0
Ptyp.vue
src/views/Business/Litdla/Ptyp.vue
+6
-3
No files found.
src/model/Litame/Pattern.js
View file @
8640d117
...
...
@@ -62,7 +62,7 @@ export default {
"litamep.engamt"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
//
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"trnmod.swiadd.newamt"
:[
...
...
src/views/Business/Litame/Amep.vue
View file @
8640d117
...
...
@@ -140,7 +140,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"信息目的"
prop=
"trnmod.swiadd.purpos"
>
<c-select
v-model=
"model.trnmod.swiadd.purpos"
style=
"width:100%"
placeholder=
"请选择Purpose of message"
:code=
"codes.purpos"
:code=
"codes.purpos
5
"
>
</c-select>
</el-form-item>
...
...
@@ -156,10 +156,10 @@
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"寄单期限(原)"
prop=
"oldlidgrp.
blk.preper
"
>
<el-form-item
label=
"寄单期限(原)"
prop=
"oldlidgrp.
rec.prepertxts18
"
>
<c-input
type=
"textarea"
v-model=
"model.oldlidgrp.
blk.preper
"
v-model=
"model.oldlidgrp.
rec.prepertxts18
"
maxlength=
"35"
show-word-limit
placeholder=
"请输入寄单期限"
...
...
src/views/Business/Litame/Detp.vue
View file @
8640d117
...
...
@@ -186,7 +186,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"提交期限(天)"
prop=
"lidgrp.rec.prepers18"
>
<c-input
v-model=
"model.lidgrp.rec.prepers18"
<c-input
disabled
v-model=
"model.lidgrp.rec.prepers18"
style=
"width:100%"
placeholder=
"请输入Period for Presentation in Days"
></c-input>
</el-form-item>
...
...
@@ -195,7 +195,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"寄单期限"
prop=
"lidgrp.rec.prepertxts18"
>
<c-fullbox>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.rec.prepertxts18"
maxlength=
"35"
show-word-limit
placeholder=
"请输入寄单期限"
></c-input>
<c-input
disabled
type=
"textarea"
v-model=
"model.lidgrp.rec.prepertxts18"
maxlength=
"35"
show-word-limit
placeholder=
"请输入寄单期限"
></c-input>
<
template
slot=
"footer"
>
<c-button
size=
"small"
...
...
@@ -267,7 +267,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"期限日"
prop=
"lidgrp.rec.tenmaxday"
>
<c-input
v-model=
"model.lidgrp.rec.tenmaxday"
placeholder=
"请输入Maximum tenor in days"
></c-input>
<c-input
:disabled=
"this.model.lidgrp.rec.avbby=='P'"
v-model=
"model.lidgrp.rec.tenmaxday"
placeholder=
"请输入Maximum tenor in days"
></c-input>
</el-form-item>
</c-col>
...
...
@@ -276,14 +276,14 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litame/Event"
export
default
{
</template>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litame/Event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
...
...
@@ -376,15 +376,16 @@ export default {
},
},
},
}
</
script
>
<
style
>
.centerLable
{
}
</
script
>
<
style
>
.centerLable
{
margin-left
:
-10px
;
height
:
32px
;
line-height
:
32px
;
}
.marginLable
{
}
.marginLable
{
padding-left
:
160px
;
}
</
style
>
}
</
style
>
\ No newline at end of file
src/views/Business/Litame/index.vue
View file @
8640d117
...
...
@@ -40,7 +40,9 @@
<!--PD000021 -->
<el-tab-pane
label=
"叙述内容"
name=
"narp"
>
<c-content>
<m-narp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000077 -->
...
...
@@ -59,27 +61,37 @@
<!--PD000306 -->
<el-tab-pane
label=
"付款/承兑/议付行指示"
name=
"inspame"
>
<c-content>
<m-inspame
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane
label=
"表外记账"
name=
"engp"
>
<c-content>
<m-engp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000001 -->
<el-tab-pane
label=
"保证金"
name=
"ccvpan"
>
<c-content>
<m-ccvpan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000000 -->
<el-tab-pane
label=
"结算"
name=
"setpan"
>
<c-content>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000001 -->
<el-tab-pane
label=
"会计分录"
name=
"glepan"
>
<c-content>
<m-glepan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000328 -->
...
...
src/views/Business/Litdla/Amep.vue
View file @
8640d117
...
...
@@ -121,8 +121,8 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"寄单期限(原)"
prop=
"oldlidgrp.
blk.preper
"
>
<c-input
disabled
type=
"textarea"
v-model=
"model.oldlidgrp.
blk.preper
"
maxlength=
"35"
show-word-limit
placeholder=
"请输入寄单期限"
></c-input>
<el-form-item
label=
"寄单期限(原)"
prop=
"oldlidgrp.
rec.prepertxts18
"
>
<c-input
disabled
type=
"textarea"
v-model=
"model.oldlidgrp.
rec.prepertxts18
"
maxlength=
"35"
show-word-limit
placeholder=
"请输入寄单期限"
></c-input>
</el-form-item>
</c-col>
...
...
src/views/Business/Litdla/Detp.vue
View file @
8640d117
This diff is collapsed.
Click to expand it.
src/views/Business/Litdla/Ptyp.vue
View file @
8640d117
...
...
@@ -167,12 +167,14 @@
type=
"textarea"
v-model=
"model.lidgrp.a2b.pts.adrblk"
maxlength=
"180"
show-word-limit
placeholder=
"请输入地址信息"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
v-if=
"this.model.lidgrp.rec.avbwth!='O'"
>
<el-form-item
label=
"可用银行参考号"
prop=
"lidgrp.avb.pts.ref"
>
<c-input
disabled
v-model=
"model.lidgrp.avb.pts.ref"
maxlength=
"16"
placeholder=
"请输入编号 for Address Optional"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
v-if=
"this.model.lidgrp.rec.avbwth!='O'"
>
<el-form-item
label=
"地址编码"
prop=
"lidgrp.avb.pts.extkey"
>
<c-fullbox>
<c-input
disabled
v-model=
"model.lidgrp.avb.pts.extkey"
maxlength=
"16"
placeholder=
"请输入地址编码"
></c-input>
...
...
@@ -200,7 +202,8 @@
</c-fullbox>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
v-if=
"this.model.lidgrp.rec.avbwth!='O'"
>
<el-form-item
label=
"地址信息"
prop=
"lidgrp.avb.pts.adrblk"
>
<c-input
:rows=
"4"
...
...
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