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
1cd34054
Commit
1cd34054
authored
Sep 19, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
101fdafa
9ae32a5e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
862 additions
and
233 deletions
+862
-233
HotelManagement.vue
src/components/Hotel/HotelManagement.vue
+255
-231
restaurantList.vue
src/components/Restaurant/restaurantList.vue
+15
-1
TravelContractDetail.vue
src/components/TravelContractDetail.vue
+1
-1
RoomMealImport.vue
src/components/systemManagement/RoomMealImport.vue
+583
-0
config.js
src/router/config.js
+8
-0
No files found.
src/components/Hotel/HotelManagement.vue
View file @
1cd34054
This diff is collapsed.
Click to expand it.
src/components/Restaurant/restaurantList.vue
View file @
1cd34054
...
...
@@ -338,7 +338,7 @@
</div>
<div
class=
"btnList"
>
<button
@
click=
"goSubInfo('restaurantInfoManage',item.ID)"
class=
"hotelBtn"
>
{{
$t
(
'pub.updateMsg'
)
}}
</button>
<button
@
click=
"goUrl('RestaurantPackage',item.ID)"
class=
"hotelBtn"
>
{{
$t
(
'restaurant.res_package'
)
}}
</button>
<button
v-if=
"IsHotelPriceStock==1"
@
click=
"goUrl('RestaurantPackage',item.ID)"
class=
"hotelBtn"
>
{{
$t
(
'restaurant.res_package'
)
}}
</button>
</div>
</div>
</div>
...
...
@@ -351,6 +351,7 @@
export
default
{
data
()
{
return
{
IsHotelPriceStock
:
0
,
//1-有获取餐厅与报价添加修改权限
total
:
0
,
currentPage
:
1
,
countryList
:
""
,
...
...
@@ -543,6 +544,18 @@
err
=>
{}
);
},
//获取酒店修改与报价添加修改权限
GetHotelPirceStockAuth
()
{
this
.
apipost
(
"hotel_post_GetHotelPriceStockAuthService"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
IsHotelPriceStock
=
res
.
data
.
data
;
}
},
err
=>
{}
);
}
},
created
()
{
if
(
this
.
$route
.
query
.
hasOwnProperty
(
"cache"
))
{
...
...
@@ -556,6 +569,7 @@
}
},
mounted
()
{
this
.
GetHotelPirceStockAuth
();
this
.
getCountryList
();
this
.
selectResource
();
this
.
GetDiningTypeList
();
...
...
src/components/TravelContractDetail.vue
View file @
1cd34054
...
...
@@ -527,7 +527,7 @@
<span
v-if=
"dataList.payType==2"
>
转账
</span>
<span
v-if=
"dataList.payType==3"
>
支票
</span>
。
</p>
<p>
旅游费用支付时间:
<span>
{{
getDate
(
dataList
.
payDate
)
}}
</span>
。
</p>
<p>
旅游费用支付时间:
<span
v-if=
"dataList.payDate"
>
{{
getDate
(
dataList
.
payDate
)
}}
</span>
。
</p>
<h3>
第二十二条 人身意外伤害保险
</h3>
<p>
1.出境社提示旅游者购买人身意外伤害保险;
</p>
<p>
...
...
src/components/systemManagement/RoomMealImport.vue
0 → 100644
View file @
1cd34054
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
1cd34054
...
...
@@ -1084,6 +1084,14 @@ export default {
title
:
'未认款管理'
},
},
{
path
:
'/RoomMealImport'
,
//房餐批量制单
name
:
'RoomMealImport'
,
component
:
resolve
=>
require
([
'@/components/systemManagement/RoomMealImport'
],
resolve
),
meta
:
{
title
:
'房餐批量制单'
},
},
{
path
:
'/Maninfo'
,
//未认款信息
name
:
'Maninfo'
,
...
...
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