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
bbfd3042
Commit
bbfd3042
authored
Mar 08, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
团队收支明细页面修改
parent
0ca1402b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
29 deletions
+20
-29
TeamBalancePayment.vue
...omponents/TravelManager/TravelList/TeamBalancePayment.vue
+20
-29
No files found.
src/components/TravelManager/TravelList/TeamBalancePayment.vue
View file @
bbfd3042
...
...
@@ -117,12 +117,12 @@
</
style
>
<
template
>
<div
class=
"flexOne TeamBalancePayment"
v-
if=
"isShow"
v-
loading=
"loading"
>
<div
class=
"flexOne TeamBalancePayment"
v-loading=
"loading"
>
<div
id=
"print"
>
<div
class=
"Team_Details"
>
<div
class=
"TB_comtitle"
>
团队收支明细
</div>
<div
class=
"Team_Content"
>
<el-row
:gutter=
"12"
>
<div
class=
"Team_Content"
v-loading=
"loading"
>
<el-row
:gutter=
"12"
v-if=
"DataList&&DataList.TeamBalance"
>
<el-col
:span=
"4"
>
<div
class=
"Team_DList"
>
<div
class=
"Team_firstTitle"
>
收客情况
</div>
...
...
@@ -189,7 +189,7 @@
</el-row>
</div>
</div>
<div
class=
"Team_collection"
>
<div
class=
"Team_collection"
v-loading=
"loading"
>
<div
class=
"clearfix TB_PrintDiv"
>
<div
class=
"TB_comtitle TB-Title"
>
收入
</div>
<input
type=
"button"
value=
"新增"
class=
"hollowFixedBtn TeamAddBtn"
v-show=
"ishowBtn"
@
click=
"AddIncomeDetail"
/>
...
...
@@ -459,7 +459,7 @@
</
template
>
</table>
</div>
<div
class=
"Team_collection"
>
<div
class=
"Team_collection"
v-loading=
"loading"
>
<div
class=
"clearfix TB_PrintDiv"
>
<div
class=
"TB_comtitle TB-Title"
>
成本
</div>
<input
type=
"button"
value=
"新增"
class=
"hollowFixedBtn TeamAddBtn"
v-show=
"ishowBtn"
@
click=
"AddOutDetail"
/>
...
...
@@ -839,7 +839,7 @@
</td>
</tr>
</
template
>
</table>
</table>
<div
class=
"clearfix TB_PrintDiv"
>
<div
class=
"TB_comtitle TB-Title"
>
其他:
</div>
</div>
...
...
@@ -888,8 +888,7 @@
</
template
>
</table>
</div>
<div
class=
"Team_collection"
>
<div
class=
"Team_collection"
v-loading=
"loading"
>
<div
class=
"clearfix TB_PrintDiv"
>
<div
class=
"TB_comtitle TB-Title"
>
非成本
</div>
<input
type=
"button"
value=
"新增"
class=
"hollowFixedBtn TeamAddBtn"
v-show=
"ishowBtn"
@
click=
"AddOutDetail"
/>
...
...
@@ -989,17 +988,15 @@
</
template
>
</table>
</div>
</div>
<div
class=
"Team_BtnList"
>
<input
type=
"button"
@
click=
"zhaunBox"
value=
"单据转团"
class=
"hollowFixedBtn"
/>
<input
type=
"button"
v-if=
"!CloseIncomeBtn"
@
click=
"UpdateBrakeAccountStatus"
:value=
"
DataList.TeamBalance.BrakeAccountStatus === 0
? '关闭收支操作' : '开启收支操作'"
<input
type=
"button"
v-if=
"!CloseIncomeBtn"
@
click=
"UpdateBrakeAccountStatus"
:value=
"
(DataList&&DataList.TeamBalance&&DataList.TeamBalance.BrakeAccountStatus === 0)
? '关闭收支操作' : '开启收支操作'"
class=
"hollowFixedBtn"
/>
<input
type=
"button"
value=
"导出"
@
click=
"ExportExcle"
class=
"normalBtn"
/>
<input
type=
"button"
value=
"打印"
@
click
.
prevent=
"doPrint"
class=
"normalBtn"
/>
</div>
<el-dialog
custom-class=
'w350'
title=
"合并单据"
:visible
.
sync=
"zhuanLoading"
center
:before-close=
"initZhuanMsg"
>
<!--zhaunMsg.TCNUM-->
<el-form
label-width=
"110px"
>
<el-form-item
label=
"转出团号:"
class=
"w280"
>
<el-input
v-model=
"zhuanMsg.TCNUM"
></el-input>
...
...
@@ -1019,7 +1016,6 @@
TCID
:
0
,
//数据列表
DataList
:
""
,
isShow
:
false
,
OutBranchId
:
0
,
ishowBtn
:
true
,
CloseIncomeBtn
:
false
,
...
...
@@ -1034,26 +1030,22 @@
},
methods
:
{
//判断数组包含字符串
isExists
(
array
,
str
)
{
var
flag
=
false
;
array
.
forEach
(
item
=>
{
if
(
item
==
str
&&
!
flag
)
{
flag
=
true
;
}
isExists
(
array
,
str
)
{
var
flag
=
false
;
array
.
forEach
(
item
=>
{
if
(
item
==
str
&&
!
flag
)
{
flag
=
true
;
}
});
return
flag
;
},
//判断数组不包含字符串
NotExists
(
array
,
str
)
{
var
flag
=
true
;
array
.
forEach
(
item
=>
{
if
(
item
==
str
&&
flag
)
{
flag
=
false
;
}
NotExists
(
array
,
str
)
{
var
flag
=
true
;
array
.
forEach
(
item
=>
{
if
(
item
==
str
&&
flag
)
{
flag
=
false
;
}
});
return
flag
;
},
...
...
@@ -1119,7 +1111,6 @@
this
.
apipost
(
"travel_get_GetTeamBalanceSheet"
,
msg
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
isShow
=
true
;
let
data
=
res
.
data
.
data
;
data
.
FiniceReciveList
.
forEach
(
x
=>
{
x
.
checked
=
false
;
...
...
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