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
f3602a90
Commit
f3602a90
authored
Nov 23, 2022
by
nanrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
针对“资本项目申报”提交核检的commonFuncs.js的改动。
parent
92d4fd8d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
3 deletions
+16
-3
commonFuncs.js
src/mixin/commonFuncs.js
+6
-1
BusRouter.js
src/views/Business/BusRouter.js
+3
-2
index.vue
src/views/TaskList/index.vue
+7
-0
No files found.
src/mixin/commonFuncs.js
View file @
f3602a90
...
...
@@ -16,7 +16,12 @@ export default {
});
this
.
$store
.
dispatch
(
"TagsView/delView"
,
this
.
$route
)
this
.
$router
.
history
.
push
(
"/taskList"
,
()
=>
{
this
.
$store
.
commit
(
"setTaskListTabVal"
,
'bopsel'
)
if
(
rulePath
==
'bopbut.sav'
){
this
.
$store
.
commit
(
"setTaskListTabVal"
,
'bopsel'
)
}
else
if
(
rulePath
==
'cfabut.sav'
){
this
.
$store
.
commit
(
"setTaskListTabVal"
,
'cfasel'
)
}
//修改待复核界面刷新状态为需要刷新
this
.
$store
.
commit
(
"setLoadingFreshReview"
,
true
)
});
...
...
src/views/Business/BusRouter.js
View file @
f3602a90
...
...
@@ -67,7 +67,7 @@ import Bctrad from "./Bctrad"
import
Bctdor
from
"./Bctdor"
import
Bctset
from
"./Bctset"
import
Bctame
from
"./Bctame"
import
Infcur
from
"./Infcur"
import
Infcur
from
".
./Statics
/Infcur"
import
Infbed
from
"./Infbed"
import
Letcan
from
"./Letcan"
import
Ordrel
from
"./Ordrel"
...
...
@@ -315,6 +315,7 @@ const BusRouter = [
{
path
:
'cptato'
,
component
:
Cptato
,
name
:
'Cptato'
,
meta
:
{
title
:
'境内外币汇出汇款'
}
},
{
path
:
'diasel'
,
component
:
Diasel
,
name
:
'Diasel'
,
meta
:
{
title
:
'备忘录选择交易'
}
},
{
path
:
'bopsel'
,
component
:
Bopsel
,
name
:
'Bopsel'
,
meta
:
{
title
:
'待申报列表'
}
},
{
path
:
'cfasel'
,
component
:
Cfasel
,
name
:
'Cfasel'
,
meta
:
{
title
:
'资本项目申报'
}
},
{
path
:
'boprcv'
,
component
:
Boprcv
,
name
:
'Boprcv'
,
meta
:
{
title
:
'申报回执查询'
}
},
{
path
:
'bopsnd'
,
component
:
Bopsnd
,
name
:
'Bopsnd'
,
meta
:
{
title
:
'申报发送查询'
}
},
{
path
:
'dbainf'
,
component
:
Dbainf
,
name
:
'Dbainf'
,
meta
:
{
title
:
'涉外收入申报单详情'
}
},
...
...
@@ -380,7 +381,7 @@ const BusRouter = [
{
path
:
'bctset'
,
component
:
Bctset
,
name
:
'Bctset'
,
meta
:
{
title
:
'进口代收付款'
}
},
{
path
:
'bctcan'
,
component
:
Bctcan
,
name
:
'Bctcan'
,
meta
:
{
title
:
'进口代收闭卷'
}
},
{
path
:
'bctame'
,
component
:
Bctame
,
name
:
'Bctame'
,
meta
:
{
title
:
'进口代收修改'
}
},
{
path
:
'infcur'
,
component
:
Infcur
,
name
:
'Infcur'
,
meta
:
{
title
:
'
Infcur
'
}
},
{
path
:
'infcur'
,
component
:
Infcur
,
name
:
'Infcur'
,
meta
:
{
title
:
'
货币查询
'
}
},
{
path
:
'infbed'
,
component
:
Infbed
,
name
:
'Infbed'
,
meta
:
{
title
:
'出口信用证单据查询'
}
},
{
path
:
'letcan'
,
component
:
Letcan
,
name
:
'Letcan'
,
meta
:
{
title
:
'出口信用证注销'
}
},
//光大添加
...
...
src/views/TaskList/index.vue
View file @
f3602a90
...
...
@@ -39,6 +39,11 @@
<el-tab-pane
label=
"待申报列表"
name=
"bopsel"
>
<t-bopsel
/>
</el-tab-pane>
<el-tab-pane
label=
"资本项目申报"
name=
"cfasel"
>
<c-content>
<t-cfasel
/>
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"草稿箱"
name=
"sptbrk"
>
<span
slot=
"label"
>
草稿箱
...
...
@@ -85,6 +90,7 @@ import Trnrel from "~/views/Business/Trnrel";
import
Trnfnd
from
"~/views/Business/Trnrel/Trnfnd"
;
import
Diasel
from
"~/views/Business/Diasel"
;
import
Bopsel
from
"~/views/Business/Bopsel"
;
import
Cfasel
from
"~/views/Business/Cfasel"
;
import
Compare
from
"./compare"
;
export
default
{
...
...
@@ -115,6 +121,7 @@ export default {
"t-trnfnd"
:
Trnfnd
,
"t-diasel"
:
Diasel
,
"t-bopsel"
:
Bopsel
,
"t-cfasel"
:
Cfasel
,
"t-compare"
:
Compare
,
},
};
...
...
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