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
f495610b
Commit
f495610b
authored
May 07, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
ca29e52e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
278 additions
and
186 deletions
+278
-186
HotelSalesBoard.vue
src/components/Hotel/HotelSalesBoard.vue
+4
-3
HotelTotalStock.vue
src/components/Hotel/HotelTotalStock.vue
+2
-2
HotelWorkList.vue
src/components/Hotel/HotelWorkList.vue
+64
-53
SupplierHandFee.vue
src/components/Hotel/SupplierHandFee.vue
+20
-12
roomQuery.vue
src/components/Hotel/roomQuery.vue
+52
-54
roomReservations.vue
src/components/Hotel/roomReservations.vue
+52
-31
RestaurantSalesBoard.vue
src/components/Restaurant/RestaurantSalesBoard.vue
+3
-1
bookDinnerStatistics.vue
src/components/Restaurant/bookDinnerStatistics.vue
+81
-30
No files found.
src/components/Hotel/HotelSalesBoard.vue
View file @
f495610b
...
...
@@ -365,8 +365,9 @@
},
methods
:
{
getBranchList
()
{
let
userInfo
=
this
.
getLocalStorage
();
this
.
apipost
(
'admin_get_BranchGetList'
,
{
RB_Group_Id
:
'2'
,
RB_Group_Id
:
userInfo
.
RB_Group_id
,
Status
:
0
,
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
@@ -493,7 +494,7 @@
GetHotelList
()
{
this
.
apipost
(
"hotel_post_GetHasStockHotelList"
,
{
Country
:
651
,
QCountry
:
"651,1252"
,
IsMoreThanZero
:
1
},
res
=>
{
...
...
@@ -588,7 +589,7 @@
this
.
GetHotelList
();
this
.
initCalendar
();
this
.
GetHoltelInventory
();
this
.
getProvinceList
(
651
,
1
);
this
.
getProvinceList
(
"651,1252"
,
1
);
}
};
...
...
src/components/Hotel/HotelTotalStock.vue
View file @
f495610b
...
...
@@ -494,7 +494,7 @@
GetHotelList
()
{
this
.
apipost
(
"hotel_post_GetHasStockHotelList"
,
{
Country
:
651
,
QCountry
:
"651,1252"
,
IsMoreThanZero
:
1
},
res
=>
{
...
...
@@ -556,7 +556,7 @@
this
.
msg
.
HotelId
=
this
.
$route
.
query
.
HotelId
===
undefined
?
0
:
this
.
$route
.
query
.
HotelId
;
this
.
initSupplier
();
this
.
GetHotelList
();
this
.
getProvinceList
(
651
,
1
);
this
.
getProvinceList
(
"651,1252"
,
1
);
this
.
getList
();
},
}
...
...
src/components/Hotel/HotelWorkList.vue
View file @
f495610b
This diff is collapsed.
Click to expand it.
src/components/Hotel/SupplierHandFee.vue
View file @
f495610b
...
...
@@ -137,13 +137,14 @@
export
default
{
data
()
{
return
{
userInfo
:
{},
//用户信息
//请求
msg
:
{
QMonthStr
:
""
,
Supplier
:
0
,
PageIndex
:
1
,
PageSize
:
15
,
IsSetOut
:
0
,
//0-正常发团,1-取消发团
IsSetOut
:
0
,
//0-正常发团,1-取消发团
},
loading
:
false
,
currentPage
:
1
,
...
...
@@ -151,13 +152,13 @@
dataList
:
[],
//供应商
SupplierList
:
[],
totalJap
:
0
,
rmbTotal
:
0
totalJap
:
0
,
rmbTotal
:
0
}
},
mounted
()
{
this
.
userInfo
=
this
.
getLocalStorage
();
this
.
initSupplier
();
//this.getList();
},
filters
:
{},
methods
:
{
...
...
@@ -200,7 +201,7 @@
TCID
:
item
.
TCIDS
,
Supplier
:
that
.
msg
.
Supplier
,
QMonthStr
:
that
.
msg
.
QMonthStr
,
IsSetOut
:
that
.
msg
.
IsSetOut
,
IsSetOut
:
that
.
msg
.
IsSetOut
,
},
res
=>
{
that
.
loading
=
false
;
...
...
@@ -258,12 +259,12 @@
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
dataList
=
res
.
data
.
data
.
pageData
;
this
.
total
=
res
.
data
.
data
.
count
;
this
.
totalJap
=
0
;
this
.
rmbTotal
=
0
;
this
.
dataList
.
forEach
(
x
=>
{
x
.
SubList
.
forEach
(
y
=>
{
this
.
totalJap
+=
y
.
SubtotalMoney
;
this
.
rmbTotal
+=
y
.
RMBMoney
;
this
.
totalJap
=
0
;
this
.
rmbTotal
=
0
;
this
.
dataList
.
forEach
(
x
=>
{
x
.
SubList
.
forEach
(
y
=>
{
this
.
totalJap
+=
y
.
SubtotalMoney
;
this
.
rmbTotal
+=
y
.
RMBMoney
;
})
})
}
else
{
...
...
@@ -279,9 +280,16 @@
},
// 获取供应商
initSupplier
()
{
var
qCountry
=
0
;
if
(
this
.
userInfo
.
RB_Group_id
==
2
)
{
qCountry
=
651
;
}
if
(
this
.
userInfo
.
RB_Group_id
==
91
)
{
qCountry
=
1252
;
}
this
.
apipost
(
"supplier_post_GetAllList"
,
{
Type
:
1
,
Country
:
651
,
//日本供应商
Country
:
qCountry
,
//日本供应商
},
res
=>
{
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
SupplierList
=
res
.
data
.
data
;
...
...
src/components/Hotel/roomQuery.vue
View file @
f495610b
...
...
@@ -2,6 +2,17 @@
<div>
<div
class=
"query-box"
style=
"border-bottom: none;"
>
<ul>
<li>
<span>
<em>
{{
$t
(
'advmanager.v_line'
)
}}
</em>
<el-select
v-model=
"msg.LineId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
@
change=
"getLinePlaceList()"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'0'
></el-option>
<el-option
v-for=
"item in queryCommonData.LineList"
:label=
'item.LineName'
:value=
'item.LineID'
:key=
'item.LineID'
>
</el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'Operation.Op_Country'
)
}}
/
{{
$t
(
'system.query_dest'
)
}}
</em>
...
...
@@ -229,6 +240,7 @@
export
default
{
data
()
{
return
{
userInfo
:
{},
//用户信息
loading
:
false
,
currentPage
:
1
,
total
:
0
,
...
...
@@ -244,7 +256,7 @@
DateStr
:
""
,
//出团公司
OutBranchIds
:
[],
LineId
:
14
,
LineId
:
0
,
PlaceID
:
0
,
LineteamId
:
0
,
//航空公司
...
...
@@ -259,9 +271,6 @@
companyList
:
[],
//酒店类表
HotelList
:
[],
LineList
:
[],
LineTeamList
:
[],
thLengthTitle
:
[],
dataList
:
[],
queryCommonData
:
{
//公司数据
...
...
@@ -295,25 +304,41 @@
getLineList
()
{
this
.
apipost
(
"line_post_GetAllList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
LineList
=
res
.
data
.
data
;
this
.
queryCommonData
.
LineList
=
res
.
data
.
data
;
this
.
queryCommonData
.
PlaceList
=
[]
this
.
queryCommonData
.
LineTeamList
=
[]
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
});
},
//获取目的地列表
getLinePlaceList
()
{
this
.
msg
.
PlaceID
=
0
;
this
.
msg
.
LineteamId
=
0
;
let
msg
=
{
lineID
:
this
.
msg
.
LineId
,
}
this
.
apipost
(
'team_post_GetLinePlace'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
queryCommonData
.
PlaceList
=
res
.
data
.
data
this
.
queryCommonData
.
LineTeamList
=
[]
}
})
},
//获取系列列表
getLineTeamList
(
lineId
)
{
this
.
LineTeamList
=
[];
this
.
apipost
(
"team_post_GetList"
,
{
lineID
:
14
,
isTOOP
:
1
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
msg
.
LineteamId
=
"-1"
;
this
.
LineTeamList
=
res
.
data
.
data
;
}
getLineTeamList
()
{
this
.
msg
.
LineteamId
=
0
let
msg
=
{
lineID
:
this
.
msg
.
LineId
,
placeID
:
this
.
msg
.
PlaceID
,
isTOOP
:
1
}
this
.
apipost
(
'team_post_GetList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
queryCommonData
.
LineTeamList
=
res
.
data
.
data
}
);
})
},
goUrlR
(
path
,
obj
,
title
)
{
this
.
$router
.
push
({
...
...
@@ -390,7 +415,7 @@
GetHotelList
()
{
this
.
apipost
(
"hotel_post_GetHasStockHotelList"
,
{
Country
:
651
,
QCountry
:
"651,1252"
,
IsMoreThanZero
:
1
},
res
=>
{
...
...
@@ -406,7 +431,7 @@
this
.
loading
=
true
;
let
qMsg
=
{
queryMsg
:
this
.
msg
,
uid
:
this
.
getLocalStorage
()
.
EmployeeId
uid
:
this
.
userInfo
.
EmployeeId
};
let
fileName
=
this
.
$t
(
'ground.dingfangcx'
)
+
this
.
$commonUtils
.
getCurrentDate
()
+
".xls"
;
this
.
GetLocalFile
(
"hotel_get_downloadHotel"
,
qMsg
,
fileName
,
...
...
@@ -414,34 +439,6 @@
this
.
loading
=
false
;
});
},
//获取目的地列表
getLinePlaceList
()
{
this
.
msg
.
PlaceID
=
0
;
this
.
msg
.
LineteamId
=
0
;
let
msg
=
{
lineID
:
this
.
msg
.
LineId
,
}
this
.
apipost
(
'team_post_GetLinePlace'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
queryCommonData
.
PlaceList
=
res
.
data
.
data
this
.
queryCommonData
.
LineTeamList
=
[]
}
})
},
//获取系列列表
getLineTeamList
()
{
this
.
msg
.
LineteamId
=
0
let
msg
=
{
lineID
:
this
.
msg
.
LineId
,
placeID
:
this
.
msg
.
PlaceID
,
isTOOP
:
1
}
this
.
apipost
(
'team_post_GetList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
queryCommonData
.
LineTeamList
=
res
.
data
.
data
}
})
},
//获取航空公司
getAirlineList
()
{
this
.
apipost
(
...
...
@@ -456,9 +453,8 @@
},
//根据当前员工所在部门获取该部门及子部门员工信息
getEmployeeList
()
{
let
userInfo
=
this
.
getLocalStorage
()
let
msg
=
{
GroupId
:
userInfo
.
RB_Group_id
,
GroupId
:
this
.
userInfo
.
RB_Group_id
,
BranchId
:
'-1'
,
DepartmentId
:
'-1'
,
PostId
:
'-1'
,
...
...
@@ -476,12 +472,10 @@
},
//初始化公司
getCompanyList
()
{
let
userInfo
=
this
.
getLocalStorage
()
var
RB_Group_id
=
userInfo
.
RB_Group_id
let
msg
=
{
Status
:
0
,
is_show
:
0
,
RB_Group_Id
:
RB_Group_id
RB_Group_Id
:
this
.
userInfo
.
RB_Group_id
}
this
.
apipost
(
'admin_get_BranchGetList'
,
...
...
@@ -496,6 +490,7 @@
},
},
mounted
()
{
this
.
userInfo
=
this
.
getLocalStorage
();
let
myDate
=
new
Date
();
let
nowDate
=
myDate
.
getFullYear
()
+
...
...
@@ -514,7 +509,10 @@
}
else
{
this
.
msg
.
StartDate
=
nowDate
;
}
this
.
getLinePlaceList
();
if
(
this
.
userInfo
.
RB_Group_id
==
2
)
{
this
.
msg
.
LineId
=
14
;
}
this
.
getLineList
();
this
.
getAirlineList
();
this
.
getEmployeeList
();
this
.
getCompanyList
();
...
...
src/components/Hotel/roomReservations.vue
View file @
f495610b
...
...
@@ -2,6 +2,17 @@
<div>
<div
class=
"query-box"
style=
"border-bottom: none;"
>
<ul>
<li>
<span>
<em>
{{
$t
(
'advmanager.v_line'
)
}}
</em>
<el-select
v-model=
"msg.LineId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
@
change=
"getLinePlaceList()"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'0'
></el-option>
<el-option
v-for=
"item in queryCommonData.LineList"
:label=
'item.LineName'
:value=
'item.LineID'
:key=
'item.LineID'
>
</el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'Operation.Op_Country'
)
}}
/
{{
$t
(
'system.query_dest'
)
}}
</em>
...
...
@@ -107,7 +118,8 @@
</div>
<div
style=
"width: 100%; overflow-x: auto;padding-bottom: 10px; "
class=
"ownScrollbarStyle"
:style=
"
{height: boxHeight + 'px'}">
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"roomReservationsTalbe"
style=
"width:100%"
v-loading=
'loading'
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"roomReservationsTalbe"
style=
"width:100%"
v-loading=
'loading'
>
<tr>
<th
width=
"120"
>
{{
$t
(
'active.ad_xuhao'
)
}}
</th>
<th
width=
"80"
>
{{
$t
(
'ground.chufadi'
)
}}
</th>
...
...
@@ -134,17 +146,13 @@
v-if=
"subItem.HotelOrderList.length>0"
>
<template
v-for=
"(thirdItem,thirdIndex) in subItem.HotelOrderList"
>
<tr>
<td
:rowspan=
"outItem.rootRowspan"
v-if=
'index==0&&subIndex==0&&thirdIndex==0'
>
<td
:rowspan=
"outItem.rootRowspan"
v-if=
'index==0&&subIndex==0&&thirdIndex==0'
>
{{
outItem
.
NewCombinationNum
}}
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
{{
item
.
StartCityNames
}}
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<div
class=
"w150"
>
{{
item
.
FlightDate
}}
<el-popover
popper-class=
"roomReservations_tripDetails"
width=
"550"
trigger=
"click"
>
...
...
@@ -180,40 +188,36 @@
</tr>
</table>
<el-button
slot=
"reference"
class=
"normalBtn mt5"
style=
'height:24px; padding: 0 10px; background: #2AAEF2; border-color: #2AAEF2;'
>
{{
$t
(
'fnc.xiangqing'
)
}}
style=
'height:24px; padding: 0 10px; background: #2AAEF2; border-color: #2AAEF2;'
>
{{
$t
(
'fnc.xiangqing'
)
}}
</el-button>
</el-popover>
</div>
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<p
@
click=
"goUrlT('productQuery',item.TCNUMS,'产品查询')"
style=
"cursor:pointer;text-decoration:underline;"
>
{{
item
.
TCNUMS
}}
(
{{
item
.
TCIDS
}}
)
</p>
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<p
@
click=
"goUrlT('RegistrationList',item.TCIDS,'报名清单')"
style=
"cursor:pointer;text-decoration:underline;"
>
{{
item
.
TotalSeat
}}
/
{{
item
.
CommonReport
.
HouseStatistics
.
RealityYSeatNum
}}
/
{{
item
.
CommonReport
.
HouseStatistics
.
RealityESeatNum
}}
/
{{
item
.
CommonReport
.
HouseStatistics
.
RealityFSeatNum
}}
</p>
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<p
@
click=
"goUrlT('passengerHouse',item.TCIDS,'房间分配')"
style=
"cursor:pointer;text-decoration:underline;"
>
{{
item
.
CommonReport
.
HouseStatistics
.
NeedBed
}}
/
{{
item
.
CommonReport
.
HouseStatistics
.
NoNeedBed
}}
</p>
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
{{
item
.
CommonReport
.
HouseStatistics
.
RealityRoomNum
}}
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<p
@
click=
"goUrl('roomReservationsDetails',item,outItem,'订房详情')"
style=
"cursor:pointer;text-decoration:underline;"
>
{{
$t
(
'fnc.xiangqing'
)
}}
</p>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<p
@
click=
"goRoomDetails(item,outItem,'订房详情')"
style=
"cursor:pointer;text-decoration:underline;"
>
{{
$t
(
'fnc.xiangqing'
)
}}
</p>
</td>
<td
:rowspan=
"subItem.HotelOrderList.length"
v-if=
'thirdIndex==0'
>
{{
subItem
.
UseTimeStr
}}
...
...
@@ -274,6 +278,7 @@
export
default
{
data
()
{
return
{
userInfo
:
{},
//当前登录用户信息
loading
:
false
,
currentPage
:
1
,
total
:
0
,
...
...
@@ -289,7 +294,7 @@
DateStr
:
""
,
//出团公司
OutBranchIds
:
[],
LineId
:
14
,
LineId
:
0
,
PlaceID
:
0
,
LineteamId
:
0
,
//航空公司
...
...
@@ -351,7 +356,11 @@
}
})
},
goUrl
(
path
,
obj
,
outItem
,
title
)
{
goRoomDetails
(
obj
,
outItem
,
title
)
{
var
path
=
"roomReservationsDetails"
;
if
(
this
.
userInfo
.
RB_Group_id
==
91
)
{
path
=
"roomReservationsDetails_swt"
;
}
this
.
$router
.
push
({
name
:
path
,
query
:
{
...
...
@@ -360,8 +369,8 @@
'flightTotal'
:
obj
.
TotalSeat
,
'GuestNum'
:
obj
.
CommonReport
.
HouseStatistics
.
RealityNum
,
'NewCombinationNum'
:
outItem
.
NewCombinationNum
,
'LeaderName'
:
obj
.
LeaderName
,
'GuideName'
:
obj
.
GuideName
,
'LeaderName'
:
obj
.
LeaderName
,
'GuideName'
:
obj
.
GuideName
,
blank
:
'y'
,
tab
:
title
}
...
...
@@ -458,9 +467,8 @@
},
//根据当前员工所在部门获取该部门及子部门员工信息
getEmployeeList
()
{
let
userInfo
=
this
.
getLocalStorage
()
let
msg
=
{
GroupId
:
userInfo
.
RB_Group_id
,
GroupId
:
this
.
userInfo
.
RB_Group_id
,
BranchId
:
'-1'
,
DepartmentId
:
'-1'
,
PostId
:
'-1'
,
...
...
@@ -478,8 +486,7 @@
},
//初始化公司
getCompanyList
()
{
let
userInfo
=
this
.
getLocalStorage
()
var
RB_Group_id
=
userInfo
.
RB_Group_id
var
RB_Group_id
=
this
.
userInfo
.
RB_Group_id
let
msg
=
{
Status
:
0
,
is_show
:
0
,
...
...
@@ -496,8 +503,20 @@
err
=>
{}
)
},
getLineList
()
{
this
.
apipost
(
"line_post_GetAllList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
queryCommonData
.
LineList
=
res
.
data
.
data
;
this
.
queryCommonData
.
PlaceList
=
[]
this
.
queryCommonData
.
LineTeamList
=
[]
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
});
},
},
mounted
()
{
this
.
userInfo
=
this
.
getLocalStorage
();
let
myDate
=
new
Date
();
let
nowDate
=
myDate
.
getFullYear
()
+
...
...
@@ -521,8 +540,10 @@
let
height
=
window
.
innerHeight
-
65
-
164
;
this
.
boxHeight
=
height
;
this
.
offsetwidth
=
width
;
//this.msg.CombinationNum = "HP20190713TN07A1";
this
.
getLinePlaceList
();
if
(
this
.
userInfo
.
RB_Group_id
==
2
)
{
this
.
msg
.
LineId
=
14
;
}
this
.
getLineList
();
this
.
getAirlineList
();
this
.
getEmployeeList
();
this
.
getCompanyList
();
...
...
src/components/Restaurant/RestaurantSalesBoard.vue
View file @
f495610b
...
...
@@ -278,6 +278,7 @@
DiningID
:
0
,
QStatus
:
0
,
loading
:
false
,
uid
:
0
,
},
//餐厅列表
DinnerList
:
[],
...
...
@@ -392,7 +393,7 @@
GetDinnerList
()
{
this
.
apipost
(
"dining_post_GetList"
,
{
QCountry
:
651
QCountry
s
:
"651,1252"
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
@@ -408,6 +409,7 @@
this
.
Info
(
this
.
$t
(
'sm.qxzcanting'
));
return
;
}
this
.
msg
.
uid
=
this
.
getLocalStorage
().
EmployeeId
;
this
.
msg
.
loading
=
true
;
let
fileName
=
this
.
$t
(
'ground.cantxiazai'
)
+
this
.
$commonUtils
.
getCurrentDate
()
+
".xls"
;
this
.
GetLocalFile
(
"dinner_get_downloadDinnerSalesBoard"
,
this
.
msg
,
fileName
,
...
...
src/components/Restaurant/bookDinnerStatistics.vue
View file @
f495610b
...
...
@@ -2,10 +2,34 @@
<div>
<div
class=
"query-box"
style=
"border-bottom: none;"
>
<ul>
<li><span><em>
{{
$t
(
'advmanager.v_xilie'
)
}}
</em>
<li>
<span>
<em>
{{
$t
(
'advmanager.v_line'
)
}}
</em>
<el-select
v-model=
"msg.LineId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
@
change=
"getLinePlaceList()"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'0'
></el-option>
<el-option
v-for=
"item in queryCommonData.LineList"
:label=
'item.LineName'
:value=
'item.LineID'
:key=
'item.LineID'
>
</el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'Operation.Op_Country'
)
}}
/
{{
$t
(
'system.query_dest'
)
}}
</em>
<el-select
v-model=
"msg.PlaceID"
filterable
:placeholder=
"$t('pub.pleaseSel')"
@
change=
"getLineTeamList()"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"0"
></el-option>
<el-option
v-for=
"item in queryCommonData.PlaceList"
:label=
"item.PlaceName"
:value=
"item.PlaceID"
:key=
"item.LtID"
></el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'advmanager.v_xilie'
)
}}
</em>
<el-select
v-model=
"msg.LineteamId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
'-1'
></el-option>
<el-option
v-for=
"item in LineTeamList"
:label=
'item.LtName'
:value=
'item.LtID'
:key=
'item.LtID'
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'0'
></el-option>
<el-option
v-for=
"item in queryCommonData.LineTeamList"
:label=
'item.LtName'
:value=
'item.LtID'
:key=
'item.LtID'
>
</el-option>
</el-select>
</span>
...
...
@@ -100,7 +124,8 @@
</tr>
</table>
<el-button
slot=
"reference"
class=
"normalBtn mt5"
style=
'height:24px; padding: 0 10px; background: #2AAEF2; border-color: #2AAEF2;'
>
{{
$t
(
'fnc.xiangqing'
)
}}
style=
'height:24px; padding: 0 10px; background: #2AAEF2; border-color: #2AAEF2;'
>
{{
$t
(
'fnc.xiangqing'
)
}}
</el-button>
</el-popover>
</td>
...
...
@@ -142,7 +167,7 @@
</td>
<td
:rowspan=
"item.itemRowSpan"
v-if=
'subIndex==0&&thirdIndex==0'
>
<div
class=
"w80 link"
>
<p
@
click=
"go
Url('bookDinnerStatisticsDetails',
item,outItem,'订餐详情')"
>
{{$t('fnc.xiangqing')}}
</p>
<p
@
click=
"go
DinnerDetails(
item,outItem,'订餐详情')"
>
{{$t('fnc.xiangqing')}}
</p>
</div>
</td>
</tr>
...
...
@@ -173,13 +198,15 @@
export
default
{
data
()
{
return
{
userInfo
:
{},
//用户信息
loading
:
false
,
msg
:
{
pageIndex
:
1
,
pageSize
:
5
,
SelectType
:
2
,
LineId
:
14
,
LineteamId
:
"-1"
,
LineId
:
0
,
PlaceID
:
0
,
LineteamId
:
0
,
StartDate
:
''
,
EndDate
:
''
,
currentPage
:
1
,
...
...
@@ -188,11 +215,12 @@
},
//餐厅列表
DiningList
:
[],
LineList
:
[],
LineTeamList
:
[],
thLengthTitle
:
[],
queryCommonData
:
{
PlaceList
:
[],
LineList
:
[],
LineTeamList
:
[],
},
DataList
:
[],
colspanTotal
:
0
,
boxHeight
:
0
,
}
},
...
...
@@ -211,27 +239,41 @@
getLineList
()
{
this
.
apipost
(
"line_post_GetAllList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
LineList
=
res
.
data
.
data
;
this
.
queryCommonData
.
LineList
=
res
.
data
.
data
;
this
.
queryCommonData
.
PlaceList
=
[]
this
.
queryCommonData
.
LineTeamList
=
[]
}
else
{
this
.
$message
.
e
rror
(
res
.
data
.
message
);
this
.
E
rror
(
res
.
data
.
message
);
}
});
},
//获取目的地列表
getLinePlaceList
()
{
this
.
msg
.
PlaceID
=
0
;
this
.
msg
.
LineteamId
=
0
;
let
msg
=
{
lineID
:
this
.
msg
.
LineId
,
}
this
.
apipost
(
'team_post_GetLinePlace'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
queryCommonData
.
PlaceList
=
res
.
data
.
data
this
.
queryCommonData
.
LineTeamList
=
[]
}
})
},
//获取系列列表
getLineTeamList
(
lineId
)
{
this
.
LineTeamList
=
[];
this
.
apipost
(
"team_post_GetList"
,
{
lineID
:
14
,
isTOOP
:
1
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
msg
.
LineteamId
=
"-1"
;
this
.
LineTeamList
=
res
.
data
.
data
;
}
getLineTeamList
()
{
this
.
msg
.
LineteamId
=
0
let
msg
=
{
lineID
:
this
.
msg
.
LineId
,
placeID
:
this
.
msg
.
PlaceID
,
isTOOP
:
1
}
this
.
apipost
(
'team_post_GetList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
queryCommonData
.
LineTeamList
=
res
.
data
.
data
}
);
})
},
goUrlR
(
path
,
obj
,
title
)
{
this
.
$router
.
push
({
...
...
@@ -253,7 +295,11 @@
}
})
},
goUrl
(
path
,
obj
,
outItem
,
title
)
{
goDinnerDetails
(
obj
,
outItem
,
title
)
{
var
path
=
"bookDinnerStatisticsDetails"
;
if
(
this
.
userInfo
.
RB_Group_id
==
91
)
{
path
=
"bookDinnerStatisticsDetails_SWT"
;
}
this
.
$router
.
push
({
name
:
path
,
query
:
{
...
...
@@ -309,7 +355,7 @@
this
.
DiningList
=
[];
this
.
apipost
(
"dining_post_GetList"
,
{
QCountry
:
651
,
QCountry
s
:
"651,1252"
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
@@ -318,12 +364,12 @@
}
);
},
//餐厅下载
//餐厅下载
DownLoadDinner
()
{
this
.
loading
=
true
;
let
qMsg
=
{
queryMsg
:
this
.
msg
,
uid
:
this
.
getLocalStorage
()
.
EmployeeId
uid
:
this
.
userInfo
.
EmployeeId
};
let
fileName
=
this
.
$t
(
'ground.cantxiazai'
)
+
this
.
$commonUtils
.
getCurrentDate
()
+
".xls"
;
this
.
GetLocalFile
(
"dinner_get_downloadDinner"
,
qMsg
,
fileName
,
...
...
@@ -333,6 +379,10 @@
}
},
mounted
()
{
this
.
userInfo
=
this
.
getLocalStorage
();
if
(
this
.
userInfo
.
RB_Group_id
==
2
)
{
this
.
msg
.
LineId
=
14
;
}
let
myDate
=
new
Date
();
let
nowDate
=
myDate
.
getFullYear
()
+
...
...
@@ -345,6 +395,7 @@
let
height
=
window
.
innerHeight
-
65
-
164
;
this
.
boxHeight
=
height
;
this
.
offsetwidth
=
width
;
this
.
getLineList
();
this
.
GetDinnerList
();
this
.
getList
();
},
...
...
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