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
9aa99fcc
Commit
9aa99fcc
authored
2 years ago
by
wangna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cctdav页面布局
parent
965c33af
settle-test-20230110
…
bochk-poc
bochk-poc-1113
development-202206
revert-594e4a5c
revert-8c42ad65
No related merge requests found
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
75 additions
and
40 deletions
+75
-40
Pattern.js
src/model/Cctdav/Pattern.js
+6
-5
index.js
src/model/Cctdav/index.js
+2
-0
Cctdav1.vue
src/views/Business/Cctdav/Cctdav1.vue
+0
-0
Setinsp.vue
src/views/Business/Cctdav/Setinsp.vue
+43
-30
index.vue
src/views/Business/Cctdav/index.vue
+24
-5
No files found.
src/model/Cctdav/Pattern.js
View file @
9aa99fcc
...
...
@@ -56,7 +56,7 @@ export default {
"ccdgrp.pre.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35
"
}
{
max
:
150
,
message
:
"长度不能超过150
"
}
],
"ccdgrp.pre.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
...
...
@@ -93,7 +93,7 @@ export default {
],
"ccdgrp.dro.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35
"
}
{
max
:
150
,
message
:
"长度不能超过150
"
}
],
"ccdgrp.dro.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
...
...
@@ -161,7 +161,7 @@ export default {
],
"ccdgrp.cor.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35
"
}
{
max
:
150
,
message
:
"长度不能超过150
"
}
],
"ccdgrp.cor.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
...
...
@@ -169,7 +169,7 @@ export default {
],
"ccdgrp.col.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35
"
}
{
max
:
150
,
message
:
"长度不能超过150
"
}
],
"ccdgrp.col.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
...
...
@@ -268,7 +268,7 @@ export default {
],
"ccdgrp.blk.setins"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
6
5
,
message
:
"长度不能超过65
"
}
{
max
:
6
00
,
message
:
"长度不能超过600
"
}
],
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/model/Cctdav/index.js
View file @
9aa99fcc
...
...
@@ -108,6 +108,7 @@ export default class Cctdav{
setmod
:
new
Pub
().
data
.
Setmod
,
mtabut
:
new
Pub
().
data
.
Mtabut
,
trnmod
:
new
Pub
().
data
.
Trnmod
,
liaall
:
new
Pub
().
data
.
Liaall
,
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/views/Business/Cctdav/Cctdav1.vue
View file @
9aa99fcc
This diff is collapsed.
Click to expand it.
src/views/Business/Cctdav/Setinsp.vue
View file @
9aa99fcc
<
template
>
<div
class=
"eibs-tab"
>
<!-- S0000066 : Settlement Instructions -->
<c-col
:span=
"12"
>
<c-form-item
label=
"Settlement Instructions"
prop=
"ccdgrp.blk.setins"
>
<c-input
type=
"textarea"
v-model=
"model.ccdgrp.blk.setins"
maxlength=
"65"
show-word-limit
:placeholder=
"$t('other.please_enter')+'Settlement Instructions'"
></c-input>
</c-form-item>
</c-col>
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"onSetinsButtxmsel"
>
{{
$t
(
'cctp.C0000068'
)
}}
</c-button>
</c-col>
<c-col
:span=
"12"
>
<c-form-item
label=
"Settlement Instructions"
prop=
"ccdgrp.blk.setins"
>
<c-input
type=
"textarea"
:rows=
"6"
v-model=
"model.ccdgrp.blk.setins"
maxlength=
"600"
show-word-limit
placeholder=
"请输入Settlement Instructions"
></c-input>
</c-form-item>
</c-col>
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"
showGridPromptDialog(
'cctp.setins.buttxmsel',
null,
null,
{ TXT: 'ccdgrp.blk.setins' },
{ TXT: false },
'doxpDialog'
)
"
>
...
</c-button>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Cctdav/Event"
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Cctdav/Event"
;
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
(){
return
{
}
},
methods
:{...
Event
},
created
:
function
(){
}
}
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
()
{
return
{};
},
methods
:
{
...
Event
},
created
:
function
()
{},
};
</
script
>
<
style
>
</
style
>
This diff is collapsed.
Click to expand it.
src/views/Business/Cctdav/index.vue
View file @
9aa99fcc
...
...
@@ -41,6 +41,10 @@
<el-tab-pane
label=
"Completion"
name=
"coninfp"
>
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--engp PD000000 Liability -->
<el-tab-pane
label=
"Liability"
name=
"engp"
>
<m-engp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--setmod PD000000 Settlement -->
<el-tab-pane
label=
"Settlement"
name=
"setpan"
>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -55,6 +59,21 @@
</el-tab-pane>
</c-tabs>
</el-form>
<c-grid-ety-prompt-dialog
ref=
"etyDialog"
:promptData=
"promptData"
v-on:select-ety=
"selectEty"
>
</c-grid-ety-prompt-dialog>
<c-grid-ety-prompt-dialog
ref=
"doxpDialog"
:isPty=
"false"
:promptData=
"promptData"
@
select-ety=
"selectMsg"
>
</c-grid-ety-prompt-dialog>
</div>
</
template
>
<
script
>
...
...
@@ -67,11 +86,6 @@ import Check from "~/model/Cctdav/Check";
import
Default
from
"~/model/Cctdav/Default"
;
import
Pattern
from
"~/model/Cctdav/Pattern"
;
import
Cctdav1
from
"./Cctdav1"
;
// import Docpan from "./Docpan";
// import Doctre from "./Doctre";
// import Coninfp from "./Coninfp";
// import Setpan from "./Setpan";
// import Glepan from "./Glepan";
import
Setinsp
from
"./Setinsp"
;
import
Docpan
from
"~/views/Public/Docpan"
;
...
...
@@ -79,6 +93,7 @@ import Doctre from "~/views/Public/Doctre";
import
Coninfp
from
"~/views/Public/Coninfp"
;
import
Setpan
from
"~/views/Public/Setpan"
;
import
Glepan
from
"~/views/Public/Glepan"
;
import
Engp
from
"~/views/Public/Engp"
;
export
default
{
name
:
"Cctdav"
,
...
...
@@ -90,6 +105,7 @@ export default {
"m-setpan"
:
Setpan
,
"m-glepan"
:
Glepan
,
"m-setinsp"
:
Setinsp
,
"m-engp"
:
Engp
,
},
provide
()
{
return
{
...
...
@@ -124,6 +140,9 @@ export default {
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
);
//TODO 处理数据逻辑
if
(
this
.
isInDisplay
)
{
this
.
restoreDisplay
();
}
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
...
...
This diff is collapsed.
Click to expand it.
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