Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
3aca600f
Commit
3aca600f
authored
Apr 14, 2020
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
111
parent
c7aeb3b3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
3 deletions
+17
-3
CashReport.vue
src/components/FinancialModule/CashReport.vue
+1
-0
TransferReport.vue
src/components/FinancialModule/TransferReport.vue
+6
-2
CashAccDetail.vue
src/components/FinancialModule/accDetail/CashAccDetail.vue
+3
-0
CompanyAccDetail.vue
...components/FinancialModule/accDetail/CompanyAccDetail.vue
+3
-0
PlatformAccDetail.vue
...omponents/FinancialModule/accDetail/PlatformAccDetail.vue
+4
-0
Manfunds.vue
src/components/systemManagement/Manfunds.vue
+0
-1
No files found.
src/components/FinancialModule/CashReport.vue
View file @
3aca600f
...
...
@@ -218,6 +218,7 @@ export default {
"BankID"
:
obj
.
BankID
,
"sTradeDate"
:
this
.
msg
.
sTradeDate
,
"eTradeDate"
:
this
.
msg
.
eTradeDate
,
"DayReport"
:
1
,
"blank"
:
'y'
,
"tab"
:
'现金账户明细'
}
...
...
src/components/FinancialModule/TransferReport.vue
View file @
3aca600f
...
...
@@ -189,10 +189,13 @@
},
goUrl
:
function
(
obj
)
{
let
name
=
''
;
let
type
=
0
;
if
(
obj
.
TradeWay
===
2
)
{
// 平台
name
=
'PlatformAccDetail'
name
=
'PlatformAccDetail'
;
type
=
1
;
}
else
if
(
obj
.
TradeWay
===
1
)
{
// 银行
name
=
'CompanyAccDetail'
name
=
'CompanyAccDetail'
;
type
=
1
;
}
else
if
(
obj
.
TradeWay
===
3
)
{
//资金池
name
=
'PoolAccDetail'
}
...
...
@@ -204,6 +207,7 @@
"BankID"
:
obj
.
BankID
,
"sTradeDate"
:
this
.
msg
.
sTradeDate
,
"eTradeDate"
:
this
.
msg
.
eTradeDate
,
"DayReport"
:
type
,
"blank"
:
'y'
,
"tab"
:
'现金账户明细'
}
...
...
src/components/FinancialModule/accDetail/CashAccDetail.vue
View file @
3aca600f
...
...
@@ -476,6 +476,9 @@ export default {
}
},
created
(){
this
.
userInfo
=
this
.
getLocalStorage
();
if
(
this
.
$route
.
query
.
DayReport
&&
this
.
$route
.
query
.
DayReport
==
'1'
){
this
.
msg
.
IsFromDayReport
=
1
;
}
if
(
this
.
$route
.
query
.
TypeId
&&!
this
.
$route
.
query
.
ID
){
this
.
msg
.
Is_Cashier
=
parseInt
(
this
.
$route
.
query
.
Is_Cashier
);
this
.
accType
=
parseInt
(
this
.
$route
.
query
.
TypeId
);
...
...
src/components/FinancialModule/accDetail/CompanyAccDetail.vue
View file @
3aca600f
...
...
@@ -522,6 +522,9 @@ export default {
},
created
(){
this
.
userInfo
=
this
.
getLocalStorage
();
if
(
this
.
$route
.
query
.
DayReport
&&
this
.
$route
.
query
.
DayReport
==
'1'
){
this
.
msg
.
IsFromDayReport
=
1
;
}
if
(
this
.
$route
.
query
.
TypeId
&&!
this
.
$route
.
query
.
ID
){
this
.
msg
.
Is_Cashier
=
parseInt
(
this
.
$route
.
query
.
Is_Cashier
);
this
.
accType
=
parseInt
(
this
.
$route
.
query
.
TypeId
);
...
...
src/components/FinancialModule/accDetail/PlatformAccDetail.vue
View file @
3aca600f
...
...
@@ -375,6 +375,7 @@ export default {
Is_Cashier
:
-
1
,
Status
:
-
1
,
AccountNumber
:
''
},
Type
:
2
,
AccountId
:
""
,
...
...
@@ -435,6 +436,9 @@ export default {
}
},
created
(){
this
.
userInfo
=
this
.
getLocalStorage
();
if
(
this
.
$route
.
query
.
DayReport
&&
this
.
$route
.
query
.
DayReport
==
'1'
){
this
.
msg
.
IsFromDayReport
=
1
;
}
if
(
this
.
$route
.
query
.
TypeId
&&!
this
.
$route
.
query
.
ID
){
this
.
msg
.
Is_Cashier
=
parseInt
(
this
.
$route
.
query
.
Is_Cashier
);
this
.
accType
=
parseInt
(
this
.
$route
.
query
.
TypeId
);
...
...
src/components/systemManagement/Manfunds.vue
View file @
3aca600f
...
...
@@ -353,7 +353,6 @@
this
.
productionDate
=
[];
this
.
productionDate
[
0
]
=
this
.
$route
.
query
.
StartTime
;
this
.
productionDate
[
1
]
=
this
.
$route
.
query
.
EndTime
;
console
.
log
(
"this.productionDate"
,
this
.
productionDate
)
}
},
methods
:
{
...
...
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