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
28973c67
Commit
28973c67
authored
Sep 06, 2022
by
taojinrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cptati cptato修改
parent
8f833f02
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
77 additions
and
12 deletions
+77
-12
index.js
src/model/Cptrep/index.js
+3
-0
Opnp1.vue
src/views/Business/Cptati/Opnp1.vue
+0
-1
index.vue
src/views/Business/Cptati/index.vue
+3
-0
Opnp1.vue
src/views/Business/Cptato/Opnp1.vue
+1
-2
Opnp1.vue
src/views/Business/Cptrep/Opnp1.vue
+16
-2
index.vue
src/views/Business/Cptrep/index.vue
+7
-7
ReviewCptati.vue
src/views/Review/Business/ReviewCptati.vue
+19
-0
ReviewCptato.vue
src/views/Review/Business/ReviewCptato.vue
+19
-0
ReviewRouter.js
src/views/Review/ReviewRouter.js
+9
-0
No files found.
src/model/Cptrep/index.js
View file @
28973c67
...
...
@@ -5,6 +5,9 @@ import Pub from "../Public"
export
default
class
Cptrep
{
constructor
()
{
this
.
data
=
{
cptorcl1blk
:
""
,
cptoril1blk
:
""
,
cptpyel1blk
:
""
,
cpdgrp
:{
rec
:{
ownref
:
""
,
// Our Reference .cpdgrp.rec.ownref
...
...
src/views/Business/Cptati/Opnp1.vue
View file @
28973c67
...
...
@@ -497,7 +497,6 @@
maxlength=
"42"
placeholder=
"请输入接收行名称"
disabled
@
keyup
.
enter
.
native=
"showGridPromptDialog('attp.resbchnam')"
></c-input>
</el-form-item>
</c-col>
...
...
src/views/Business/Cptati/index.vue
View file @
28973c67
...
...
@@ -189,6 +189,9 @@ export default {
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
);
//TODO 处理数据逻辑
if
(
this
.
isInDisplay
){
this
.
restoreDisplay
}
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
...
...
src/views/Business/Cptato/Opnp1.vue
View file @
28973c67
...
...
@@ -520,7 +520,7 @@
placeholder=
"请输入接收行名称"
@
keyup
.
enter
.
native=
"
showGridPromptDialog('attp.resbchnam')
"
"
></c-input>
</el-form-item>
</c-col>
...
...
@@ -547,7 +547,6 @@
maxlength=
"42"
placeholder=
"请输入发报行名称"
disabled
@
keyup
.
enter
.
native=
"showGridPromptDialog('attp.sndbchnam')"
></c-input>
</el-form-item>
</c-col>
...
...
src/views/Business/Cptrep/Opnp1.vue
View file @
28973c67
...
...
@@ -688,7 +688,7 @@
<!-- 第九行 -->
<c-col
:span=
"24"
>
<c-col
:span=
"12"
>
<el-form-item
label=
"接收行名称"
prop=
""
>
<el-form-item
label=
"接收行名称"
prop=
"
cptp.resbch
"
>
<c-input
v-model=
"model.cptp.resbch"
></c-input>
</el-form-item>
</c-col>
...
...
@@ -698,7 +698,7 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"业务种类"
prop=
""
>
<el-form-item
label=
"业务种类"
prop=
"
cptp.bustyp
"
>
<c-input
v-model=
"model.cptp.bustyp"
></c-input>
</el-form-item>
</c-col>
...
...
@@ -1990,6 +1990,20 @@ export default {
{
label
:
"hvps112"
,
value
:
"HVQ"
},
{
label
:
"Other"
,
value
:
"OTH"
},
],
bustyp
:[
{
label
:
"GODX-货物贸易"
,
value
:
"GODX"
},
{
label
:
"STRX-服务贸易"
,
value
:
"STRX"
},
{
label
:
"CTFX-资本项下"
,
value
:
"CTFX"
},
{
label
:
"FTFX-金融机构头寸调拨"
,
value
:
"FTFX"
},
{
label
:
"BDES-债券还本付息"
,
value
:
"BDES"
},
{
label
:
"BPRR-债券还本金"
,
value
:
"BPRR"
},
{
label
:
"BINP-债券付息"
,
value
:
"BINP"
},
{
label
:
"BISF-债券发行手续费"
,
value
:
"BISF"
},
{
label
:
"BCAF-债券兑付手续费"
,
value
:
"BCAF"
},
{
label
:
"CBCF-付息式债券兑付手续费"
,
value
:
"CBCF"
},
{
label
:
"OTFX-其他"
,
value
:
"OTFX"
},
]
};
},
methods
:
{
...
Event
},
...
...
src/views/Business/Cptrep/index.vue
View file @
28973c67
...
...
@@ -42,9 +42,9 @@
</c-content>
</el-tab-pane>
<!--trndoc PD000529 &Messages -->
<el-tab-pane
label=
"Messages"
name=
"docpan
1
"
>
<el-tab-pane
label=
"Messages"
name=
"docpan"
>
<c-content>
<m-docpan
1
:model=
"model"
:codes=
"codes"
/>
<m-docpan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--trndoc PD000546 Attachments -->
...
...
@@ -62,9 +62,9 @@
</el-tab-pane>
<!--lendoc PD000001 收账通知 -->
<el-tab-pane
label=
"收账通知"
name=
"docpan"
>
<el-tab-pane
label=
"收账通知"
name=
"docpan
1
"
>
<c-content>
<m-docpan
:model=
"model"
:codes=
"codes"
/>
<m-docpan
1
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--bopgat PD000006 外管信息 -->
...
...
@@ -128,8 +128,8 @@ import Opnp1 from "./Opnp1"
import
Setpan
from
"~/views/Public/Setpan"
;
import
Glepan
from
"~/views/Public/Glepan"
;
import
Coninfp
from
"~/views/Public/Coninfp"
;
import
Docpan
1
from
"~/views/Public/Docpan"
;
import
Docpan
from
"./Docpan"
;
import
Docpan
from
"~/views/Public/Docpan"
;
import
Docpan
1
from
"./Docpan"
;
import
Wg
from
"./Wg"
import
Cnyp
from
"./Cnyp"
import
Incp
from
"./Incp"
...
...
@@ -149,8 +149,8 @@ export default {
"m-setpan"
:
Setpan
,
"m-glepan"
:
Glepan
,
"m-coninfp"
:
Coninfp
,
"m-docpan1"
:
Docpan1
,
"m-docpan"
:
Docpan
,
"m-docpan1"
:
Docpan1
,
"m-wg"
:
Wg
,
"m-cnyp"
:
Cnyp
,
"m-incp"
:
Incp
,
...
...
src/views/Review/Business/ReviewCptati.vue
0 → 100644
View file @
28973c67
<
template
>
<ReviewWrapper>
<Cptati></Cptati>
</ReviewWrapper>
</
template
>
<
script
>
import
Cptati
from
"~/views/Business/Cptati"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewCptati"
,
components
:
{
ReviewWrapper
,
Cptati
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
src/views/Review/Business/ReviewCptato.vue
0 → 100644
View file @
28973c67
<
template
>
<ReviewWrapper>
<Cptato></Cptato>
</ReviewWrapper>
</
template
>
<
script
>
import
Cptato
from
"~/views/Business/Cptato"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewCptato"
,
components
:
{
ReviewWrapper
,
Cptato
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
src/views/Review/ReviewRouter.js
View file @
28973c67
...
...
@@ -3,6 +3,10 @@ import ReviewDitdck from "./Business/ReviewDitdck.vue";
import
ReviewBdtset
from
"./Business/ReviewBdtset.vue"
;
import
ReviewCptadv
from
"./Business/ReviewCptadv.vue"
;
import
ReviewCptopn
from
"./Business/ReviewCptopn.vue"
;
import
ReviewCptati
from
"./Business/ReviewCptati.vue"
;
import
ReviewCptato
from
"./Business/ReviewCptato.vue"
;
import
ReviewGetset
from
"./Business/ReviewGetset.vue"
;
import
ReviewDetopn
from
"./Business/ReviewDetopn.vue"
;
import
ReviewDetdrv
from
"./Business/ReviewDetdrv.vue"
;
...
...
@@ -156,6 +160,10 @@ const ReviewRouter = [
{
path
:
"cctdcr"
,
component
:
ReviewCctdcr
,
name
:
"ReviewCctdcr"
,
meta
:
{
title
:
"复核-Cctdcr"
}
},
{
path
:
"ccttra"
,
component
:
ReviewCcttra
,
name
:
"ReviewCcttra"
,
meta
:
{
title
:
"复核-Ccttra"
}
},
{
path
:
"lttopn"
,
component
:
ReviewLttopn
,
name
:
"ReviewLttopn"
,
meta
:
{
title
:
"复核-Lttopn"
}
},
{
path
:
"Cptati"
,
component
:
ReviewCptati
,
name
:
"ReviewCptati"
,
meta
:
{
title
:
"复核-Cptati"
}
},
{
path
:
"Cptato"
,
component
:
ReviewCptato
,
name
:
"ReviewCptato"
,
meta
:
{
title
:
"复核-Cptato"
}
},
];
export
default
ReviewRouter
;
\ No newline at end of file
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