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
14be390e
Commit
14be390e
authored
Mar 12, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'简易报表跳转处理多个费用说明'
parent
ee41dab4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
cssReset.css
src/assets/css/cssReset.css
+3
-0
JumpReport.vue
src/components/FinancialModule/JumpReport.vue
+18
-3
No files found.
src/assets/css/cssReset.css
View file @
14be390e
...
...
@@ -626,4 +626,7 @@ vertical-align:middle
.column-cell-class-text-red
{
color
:
red
!important
}
._height_auto.el-select
.el-input
{
height
:
auto
!important
;
}
/************************** luochao 重新定义表格样式 END *******************************/
\ No newline at end of file
src/components/FinancialModule/JumpReport.vue
View file @
14be390e
...
...
@@ -168,7 +168,7 @@
<template>
<el-col
:span=
"4"
>
<el-form-item
label=
"费用类型:"
>
<el-select
filterable
v-model=
'msg.CostTypeID
'
>
<el-select
class=
"_height_auto"
filterable
multiple
v-model=
'msg.CostTypeIDslist
'
>
<el-option
:value=
"0"
label=
"不限"
></el-option>
<el-option
v-for=
"item in GetCostTypeList"
:key=
"item.ID"
:value=
"item.ID"
:label=
"item.Name"
></el-option>
</el-select>
...
...
@@ -712,7 +712,8 @@ export default {
eMoney
:
''
,
CurrencyId
:
'0'
,
CostTypeID
:
''
,
CostTypeIDs
:
''
,
CostTypeIDs
:
''
,
CostTypeIDslist
:
[],
Conditon
:
''
,
TCID
:
''
,
TradeWay
:
'0'
,
...
...
@@ -850,7 +851,12 @@ export default {
this
.
msg
.
RB_Branch_Id
=
parseInt
(
this
.
$route
.
query
.
BranchId
);
}
if
(
this
.
$route
.
query
.
CostIds
){
this
.
msg
.
CostTypeID
=
parseInt
(
this
.
$route
.
query
.
CostIds
);
let
arr
=
this
.
$route
.
query
.
CostIds
?
this
.
$route
.
query
.
CostIds
.
split
(
','
)
:
[]
if
(
arr
.
length
)
{
arr
.
forEach
(
x
=>
{
this
.
msg
.
CostTypeIDslist
.
push
(
parseInt
(
x
));
})
}
}
},
components
:
{
"my-Bill"
:
myBill
,
...
...
@@ -938,6 +944,13 @@ export default {
if
(
!
this
.
msg
.
Conditon
)
this
.
msg
.
Conditon
=
1
;
if
(
!
this
.
msg
.
TradeWay
)
this
.
msg
.
TradeWay
=
0
;
if
(
!
this
.
msg
.
AccountType
)
this
.
msg
.
AccountType
=
0
;
if
(
this
.
msg
.
CostTypeIDslist
.
length
)
{
this
.
msg
.
CostTypeIDs
=
''
this
.
msg
.
CostTypeIDslist
.
forEach
(
x
=>
{
this
.
msg
.
CostTypeIDs
+=
x
+
','
})
console
.
log
(
this
.
msg
.
CostTypeIDs
)
}
this
.
loading
=
true
;
this
.
apipost
(
'Financial_post_GetALLPageList'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
@@ -1270,6 +1283,8 @@ export default {
eMoney
:
this
.
msg
.
eMoney
,
CurrencyId
:
this
.
msg
.
CurrencyId
,
CostTypeID
:
this
.
msg
.
CostTypeID
,
CostTypeIDs
:
this
.
msg
.
CostTypeIDs
,
CostTypeIDslist
:
this
.
msg
.
CostTypeIDslist
,
Conditon
:
this
.
msg
.
Conditon
,
TCID
:
this
.
msg
.
TCID
,
TradeWay
:
this
.
msg
.
TradeWay
,
...
...
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