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
11a7cf26
Commit
11a7cf26
authored
Sep 23, 2022
by
liyixun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bttset 地区机构号不能获取问题
parent
29f1c4b4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
56 additions
and
81 deletions
+56
-81
index.js
src/model/Bttset/index.js
+4
-0
Setp.vue
src/views/Business/Bttset/Setp.vue
+1
-4
Wg.vue
src/views/Business/Bttset/Wg.vue
+23
-19
index.vue
src/views/Business/Bttset/index.vue
+27
-4
Limitbody.vue
src/views/Business/Getset/Limitbody.vue
+0
-53
ReviewRouter.js
src/views/Review/ReviewRouter.js
+1
-1
No files found.
src/model/Bttset/index.js
View file @
11a7cf26
...
...
@@ -5,6 +5,10 @@ import Pub from "../Public"
export
default
class
Bttset
{
constructor
()
{
this
.
data
=
{
bttbe1llblk
:
""
,
bttpayl1blk
:
""
,
bttprbl1blk
:
""
,
lendoc_botsetl1blk
:
""
,
setmod
:
new
Pub
().
data
.
Setmod
,
mtabut
:
new
Pub
().
data
.
Mtabut
,
trnmod
:
new
Pub
().
data
.
Trnmod
,
...
...
src/views/Business/Bttset/Setp.vue
View file @
11a7cf26
...
...
@@ -357,9 +357,7 @@
<c-col
:span=
"24"
>
<p>
Bills to Pay Back:
</p>
</c-col>
<c-row
class=
"infrow"
style=
"margin-top: 20px"
>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
>
<c-istream-table
:list=
"stmData.fepstmData"
:columns=
"stmData.fepstmColumns"
...
...
@@ -368,7 +366,6 @@
</el-table-column>
</c-istream-table>
</c-col>
</c-row>
</c-col>
<br
/>
...
...
src/views/Business/Bttset/Wg.vue
View file @
11a7cf26
<
template
>
<div
class=
"eibs-tab"
>
<c-row>
<c-col
:span=
"24"
>
<!-- -----页面左边----- -->
...
...
@@ -9,10 +8,11 @@
<c-col
:span=
"21"
>
<el-form-item
label=
"申报类型"
prop=
"bopmod.szflg"
>
<c-select
:code=
"codes.szflg"
v-model=
"model.bopmod.szflg"
style=
"width: 95%"
placeholder=
"请选择申报类型"
:code=
"codes.szflg"
@
change=
"szflgChange"
>
</c-select>
</el-form-item>
...
...
@@ -45,7 +45,7 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"地区机构号"
prop=
"bopmod.ownextkey"
>
<c-select
:code=
"
codes.ownextkey1
"
:code=
"
getValues('bopmod.ownextkey')
"
:disabled=
"
model.bopmod.szflg != '1' && model.bopmod.szflg != '2'
"
...
...
@@ -88,26 +88,30 @@
</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/Bttset/Event"
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Bttset/Event"
;
import
Utils
from
"~/utils"
;
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
(){
return
{
}
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
()
{
return
{};
},
methods
:
{
...
Event
,
async
szflgChange
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"bopmod.szflg"
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
);
}
},
methods
:{...
Event
},
created
:
function
(){
}
}
},
created
:
function
()
{},
};
</
script
>
<
style
>
</
style
>
src/views/Business/Bttset/index.vue
View file @
11a7cf26
...
...
@@ -39,9 +39,17 @@
</el-tab-pane>
<el-tab-pane
label=
"Settlement"
name=
"setpan"
>
<c-content>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<el-tab-pane
v-if=
"this.flag"
label=
"Bookings"
name=
"glepan"
>
<c-content>
<m-glepan
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"Completion"
name=
"coninfp"
>
<c-content>
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -80,10 +88,6 @@
>
<m-basp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--dbap PD000000 涉外收入申报单-基础信息 -->
<!--
<el-tab-pane
label=
"$t('dbap.PD000000')"
name=
"basp"
>
<m-basp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
-->
<!--cnybop PD000002 跨境人民币申报 -->
<el-tab-pane
label=
"跨境人民币申报"
name=
"cnyp"
>
<m-cnyp
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -124,6 +128,7 @@ import Setpan from "~/views/Public/Setpan";
import
Coninfp
from
"~/views/Public/Coninfp"
;
import
Doc
from
"~/views/Public/Docpan"
;
import
Doctre
from
"~/views/Public/Doctre"
;
import
Glepan
from
"~/views/Public/Glepan"
;
export
default
{
name
:
"Bttset"
,
...
...
@@ -141,6 +146,7 @@ export default {
"m-coninfp"
:
Coninfp
,
"m-doc"
:
Doc
,
"m-doctre"
:
Doctre
,
"m-glepan"
:
Glepan
,
},
provide
()
{
return
{
...
...
@@ -169,6 +175,23 @@ export default {
/**
* do it yourself
**/
let
name
=
tab
.
name
let
rulePath
;
if
(
name
===
"basp"
)
{
rulePath
=
"bopmod.dbap.basp"
;
}
if
(
name
===
"basp1"
){
rulePath
=
"bopmod.dbdp.basp"
;
}
if
(
name
===
"wg"
){
rulePath
=
"bopgat.wg"
}
if
(
!!
rulePath
)
{
this
.
executeRule
(
rulePath
).
then
(
res
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
res
.
data
)
}
})
}
},
},
created
:
async
function
()
{
...
...
src/views/Business/Getset/Limitbody.vue
View file @
11a7cf26
<
template
>
<div
class=
"eibs-tab"
>
<!--
<c-col
:span=
"12"
>
<el-form-item
label=
"ECIFNO"
>
<c-input
v-model=
"model.liaall.limmod.ecifno"
maxlength=
"22"
placeholder=
"请输入ECIFNO"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<span
v-text=
"model.liaall.limmod.limpts.wrklab"
data-path=
".liaall.limmod.limpts.wrklab"
>
</span>
</c-col>
<c-col
:span=
"12"
>
<span
v-text=
"model.liaall.limmod.limpts.othlab"
data-path=
".liaall.limmod.limpts.othlab"
>
</span>
</c-col>
<c-col
:span=
"12"
>
<span
v-text=
"model.liaall.limmod.limpts.othlabss"
data-path=
".liaall.limmod.limpts.othlabss"
>
</span>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
>
<c-input
v-model=
"model.liaall.limmod.wrkp.ptsget.sdamod.dadsnd"
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
>
<c-input
v-model=
"model.liaall.limmod.othp.ptsget.sdamod.dadsnd"
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
-->
<!-- 左边-->
<c-col
:span=
"8"
>
<!-- line2 -->
...
...
@@ -361,27 +329,6 @@
</el-table-column>
</c-table>
</c-col>
<!-- <c-col :span="24" style="" v-if="false">
<c-table :list="model.liaall.limmod.lmegrd" :border="true">
<el-table-column label="可否串用" width="auto">
</el-table-column>
<el-table-column label="序号" width="auto"> </el-table-column>
<el-table-column label="额度类型" width="auto">
</el-table-column>
<el-table-column label="入账机构" width="auto">
</el-table-column>
<el-table-column label="额度编号" width="auto">
</el-table-column>
<el-table-column label="额度明细编号" width="auto">
</el-table-column>
<el-table-column label="额度品种代码" width="auto">
</el-table-column>
<el-table-column label="品种代码描述" width="auto">
</el-table-column>
<el-table-column label="" width="auto"> </el-table-column>
</c-table>
</c-col> -->
</div>
</template>
...
...
src/views/Review/ReviewRouter.js
View file @
11a7cf26
...
...
@@ -243,7 +243,7 @@ const ReviewRouter = [
{
path
:
"gctcan"
,
component
:
ReviewGctcan
,
name
:
"ReviewGctcan"
,
meta
:
{
title
:
"复核-Gctcan"
}
},
{
path
:
"bttrcl"
,
component
:
ReviewBttrcl
,
name
:
"ReviewBttrcl"
,
meta
:
{
title
:
"复核-Bttrcl"
}
},
{
path
:
"bttset"
,
component
:
ReviewBtt
rcl
,
name
:
"ReviewBttset"
,
meta
:
{
title
:
"复核-Bttset"
}
},
{
path
:
"bttset"
,
component
:
ReviewBtt
set
,
name
:
"ReviewBttset"
,
meta
:
{
title
:
"复核-Bttset"
}
},
...
...
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