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
dbaf0cc4
Commit
dbaf0cc4
authored
2 years ago
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
页面修改
parents
d8a90193
c6ecfc33
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
8187 additions
and
29 deletions
+8187
-29
HotelList.vue
src/components/Hotel/singleProduct/HotelList.vue
+7
-2
ListCar.vue
src/components/Hotel/singleProduct/components/ListCar.vue
+24
-2
productQuery.vue
src/components/SalesModule/productQuery.vue
+13
-0
productQueryOne.vue
src/components/SalesModule/productQueryOne.vue
+15
-1
VisaProductAddOrder.vue
src/components/SalesVisa/VisaProductAddOrder.vue
+20
-3
TicketOrder.vue
src/components/SingleAirTicket/TicketOrder.vue
+43
-0
OrderList.vue
src/components/SingleAirTicket/components/OrderList.vue
+1443
-0
TicketOrder.vue
src/components/SingleAirTicket/components/TicketOrder.vue
+504
-0
index.vue
...mponents/TravelManager/TravelTeam/buyComponents/index.vue
+2051
-0
priceGroup.vue
src/components/TravelManager/TravelTeam/priceGroup.vue
+1923
-0
CharterPreview.vue
src/components/busManagement/BookAcar/CharterPreview.vue
+16
-4
addEditVehicle.vue
src/components/busManagement/BookAcar/addEditVehicle.vue
+15
-2
list.vue
src/components/busManagement/BookAcar/list.vue
+7
-1
OrderPreview.vue
src/components/scenicSpot/Singleticket/OrderPreview.vue
+14
-2
SingleticketList.vue
src/components/scenicSpot/Singleticket/SingleticketList.vue
+9
-4
buyGroup.vue
src/pubComponents/buyGroup.vue
+2052
-0
config.js
src/router/config.js
+31
-8
No files found.
src/components/Hotel/singleProduct/HotelList.vue
View file @
dbaf0cc4
...
...
@@ -99,7 +99,7 @@
@
close=
"close"
></TableOperation>
</el-dialog>
<!-- 购物车 -->
<ListCar
v-if=
"rightCarOpen"
@
close=
"close"
@
success=
"success"
@
editor=
"editor"
></ListCar>
<ListCar
v-if=
"rightCarOpen"
:crmOrderObj=
"crmOrderObj"
@
close=
"close"
@
success=
"success"
@
editor=
"editor"
></ListCar>
<!-- 酒店详情信息 -->
<el-dialog
custom-class=
"w800"
title=
"酒店详情"
:visible
.
sync=
"showHotelDetails"
center
@
close=
"close"
>
<hotelDetails
:hotelId=
"HotelDetailId"
></hotelDetails>
...
...
@@ -178,7 +178,8 @@
dataList
:
[],
isShow
:
false
,
loading
:
false
,
HOTEL_memorandum
:
false
HOTEL_memorandum
:
false
,
crmOrderObj
:
null
};
},
watch
:
{
...
...
@@ -320,6 +321,10 @@
},
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
JSON
.
parse
(
this
.
$route
.
query
.
crmOrderObj
)
}
this
.
HotelLength
=
localStorage
.
getItem
(
"HotelLength"
)?
localStorage
.
getItem
(
"HotelLength"
):
0
let
userinfo
=
this
.
getLocalStorage
();
...
...
This diff is collapsed.
Click to expand it.
src/components/Hotel/singleProduct/components/ListCar.vue
View file @
dbaf0cc4
...
...
@@ -67,6 +67,10 @@
<div
v-if=
"cars.length==0"
style=
"text-align: center;padding: 20px 0;"
>
暂无数据
</div>
</div>
<div
class=
"ListCar-bottom"
v-if=
"cars.length>0"
>
<div
v-if=
"crmOrderObj"
style=
"margin-bottom: 10px;"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
</div>
<el-form
label-width=
"60px"
:model=
"parameters"
:rules=
"rules"
ref=
"parameters"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"12"
>
...
...
@@ -123,6 +127,10 @@
<
script
>
export
default
{
props
:
{
crmOrderObj
:
{
type
:
Object
,
require
:
false
},
HotelRow
:
{
type
:
Object
,
require
:
false
...
...
@@ -146,7 +154,9 @@
TCNum
:
''
,
//=团队时 传递 组团号
ContactName
:
''
,
//=散客时 传递 联系人
ContactNumber
:
''
,
//=散客时 传递 联系人电话
OrderId
:
0
OrderId
:
0
,
LureEmpId
:
0
,
CRMGuestId
:
0
,
},
currentIndex
:
0
,
currentI
:
0
,
...
...
@@ -184,6 +194,18 @@
};
},
watch
:
{
crmOrderObj
:
{
handler
:
function
(
val
,
oldVal
)
{
this
.
crmOrderObj
=
val
console
.
log
(
this
.
crmOrderObj
)
if
(
this
.
crmOrderObj
){
this
.
parameters
.
LureEmpId
=
val
.
LureEmpId
//引流id
this
.
parameters
.
CRMGuestId
=
val
.
CRMGuestId
//客人ID
}
},
deep
:
true
,
immediate
:
true
},
cars
:
{
handler
:
function
(
val
,
oldVal
)
{
this
.
HotelLength
=
this
.
cars
.
length
...
...
@@ -396,7 +418,7 @@
}
.ListCar-content
{
padding
:
20px
15px
;
height
:
calc
(
100%
-
195
px
);
height
:
calc
(
100%
-
230
px
);
overflow
:
auto
;
}
.ListCar-list
{
...
...
This diff is collapsed.
Click to expand it.
src/components/SalesModule/productQuery.vue
View file @
dbaf0cc4
...
...
@@ -549,6 +549,10 @@
<div
class=
"productQuerybottomLayer ownScrollbarStyle"
v-show=
"isShowLayer"
>
<p>
{{
$t
(
"salesModule.SignImdi"
)
}}
<span
v-if=
"crmOrderObj"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
</span>
<span
class=
"fr"
>
<input
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.cancelBtn')"
@
click=
"cancelSubmit()"
/>
<input
type=
"button"
class=
"normalBtn"
:value=
"$t('salesModule.SignImdi')"
@
click=
"submitForm('addMsg')"
/>
...
...
@@ -1833,6 +1837,8 @@
SonControlID
:
"-1"
,
IsShowMessagesMoney
:
"2"
,
QuotationUrl
:
""
,
//单团附件
LureEmpId
:
0
,
//引流id
CRMGuestId
:
0
,
//客人ID
},
uploadLloading
:
false
,
employeeMsg
:
{
...
...
@@ -1966,6 +1972,7 @@
S_Travel_Share
:
false
,
//分享权限
userInfo
:
{},
TotalNumber
:
0
,
crmOrderObj
:
null
};
},
components
:
{
...
...
@@ -3627,6 +3634,12 @@
}
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
JSON
.
parse
(
this
.
$route
.
query
.
crmOrderObj
)
this
.
addMsg
.
LureEmpId
=
this
.
crmOrderObj
.
LureEmpId
//引流id
this
.
addMsg
.
CRMGuestId
=
this
.
crmOrderObj
.
CRMGuestId
//客人ID
}
let
userInfo
=
this
.
getLocalStorage
();
this
.
userInfo
=
this
.
getLocalStorage
();
this
.
GetSupperOrderEditAuth
();
...
...
This diff is collapsed.
Click to expand it.
src/components/SalesModule/productQueryOne.vue
View file @
dbaf0cc4
...
...
@@ -178,6 +178,10 @@
<div
class=
"productQuerybottomLayer ownScrollbarStyle"
v-show=
"isShowLayer"
>
<p>
{{
$t
(
'salesModule.SignImdi'
)
}}
<span
v-if=
"crmOrderObj"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
</span>
<span
class=
"fr"
>
<input
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.cancelBtn')"
@
click=
"cancelSubmit()"
/>
<input
type=
"button"
class=
"normalBtn"
:value=
"$t('salesModule.SignImdi')"
@
click=
"submitForm('addMsg')"
/>
...
...
@@ -1064,7 +1068,9 @@
SonControlID
:
'-1'
,
IsShowMessagesMoney
:
'2'
,
GuestList
:
[],
GatherAddress
:
''
GatherAddress
:
''
,
LureEmpId
:
0
,
//引流id
CRMGuestId
:
0
,
//客人ID
},
GuestList
:
[
{
...
...
@@ -1280,6 +1286,7 @@
countryList
:
[],
//国籍
//当前登录用户信息
CurrentUserInfo
:
{},
crmOrderObj
:
null
,
}
},
components
:
{
...
...
@@ -2451,6 +2458,13 @@
},
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
JSON
.
parse
(
this
.
$route
.
query
.
crmOrderObj
)
this
.
addMsg
.
LureEmpId
=
this
.
crmOrderObj
.
LureEmpId
//引流id
this
.
addMsg
.
CRMGuestId
=
this
.
crmOrderObj
.
CRMGuestId
//客人ID
}
this
.
userId
=
this
.
getLocalStorage
().
EmployeeId
this
.
msg
.
BranchId
=
this
.
getLocalStorage
().
RB_Branch_id
.
toString
()
if
(
this
.
$route
.
query
.
id
)
{
...
...
This diff is collapsed.
Click to expand it.
src/components/SalesVisa/VisaProductAddOrder.vue
View file @
dbaf0cc4
...
...
@@ -344,7 +344,11 @@
layout=
"total,prev, pager, next, jumper"
:page-size=
"this.msg.pageSize"
:total=
"total"
>
</el-pagination>
<div
class=
"_mc_edit _scrollbar"
:class=
"addShow==true?'edHeight':''"
>
<p
class=
"_tit"
>
{{
$t
(
'Operation.Op_signUp'
)
}}
<p
class=
"_tit"
>
{{
$t
(
'Operation.Op_signUp'
)
}}
<span
v-if=
"crmOrderObj"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
</span>
<span
class=
"fr"
>
<button
class=
"hollowFixedBtn"
type=
"button"
@
click=
"cancelEdit()"
>
{{
$t
(
'pub.cancelBtn'
)
}}
</button>
<button
type=
"button"
class=
"normalBtn"
@
click=
"saveVisa()"
>
{{
$t
(
'pub.saveBtn'
)
}}
</button>
...
...
@@ -495,7 +499,9 @@
LeaveCountryFlight
:
''
,
VisaPlanId
:
0
,
DepartDate
:
''
,
ClientType
:
'1'
ClientType
:
'1'
,
LureEmpId
:
0
,
//引流id
CRMGuestId
:
0
,
//客人ID
},
rules
:
{
PeopleNum
:
[{
...
...
@@ -531,6 +537,7 @@
total
:
0
,
addShow
:
false
,
currentPage
:
1
,
crmOrderObj
:
null
}
},
methods
:
{
...
...
@@ -705,6 +712,8 @@
},
err
=>
{})
},
saveVisa
()
{
// 保存
console
.
log
(
this
.
addMsg
,
'==='
)
// return
this
.
$refs
[
'addMsg'
].
validate
((
valid
)
=>
{
if
(
valid
)
{
this
.
apipost
(
'dmc_get_visa_SetVisaOrder'
,
this
.
addMsg
,
res
=>
{
...
...
@@ -723,7 +732,9 @@
EnterCountryFlight
:
''
,
LeaveCountryFlight
:
''
,
VisaPlanId
:
0
,
DepartDate
:
''
DepartDate
:
''
,
LureEmpId
:
0
,
CRMGuestId
:
0
}
this
.
$message
.
success
(
res
.
data
.
message
)
this
.
addShow
=
false
...
...
@@ -758,6 +769,12 @@
},
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
JSON
.
parse
(
this
.
$route
.
query
.
crmOrderObj
)
this
.
addMsg
.
LureEmpId
=
this
.
crmOrderObj
.
LureEmpId
//引流id
this
.
addMsg
.
CRMGuestId
=
this
.
crmOrderObj
.
CRMGuestId
//客人ID
}
this
.
userId
=
this
.
getLocalStorage
().
EmployeeId
this
.
msg
.
RB_Branch_Id
=
this
.
getLocalStorage
().
RB_Branch_id
.
toString
()
this
.
getList
()
...
...
This diff is collapsed.
Click to expand it.
src/components/SingleAirTicket/TicketOrder.vue
0 → 100644
View file @
dbaf0cc4
<
style
>
</
style
>
<
template
>
<div>
<TicketOrder
:pagesTitle=
"pagesTitle"
:dataObj=
"dataObj"
></TicketOrder>
</div>
</
template
>
<
script
>
import
TicketOrder
from
'./components/TicketOrder.vue'
;
export
default
{
components
:
{
TicketOrder
},
data
()
{
return
{
pagesTitle
:
'销售'
,
dataObj
:{
OrderId
:
''
,
}
};
},
watch
:
{
pagesTitle
(
val
,
oldval
){
},
},
methods
:
{
},
created
()
{
},
mounted
()
{
if
(
this
.
$route
.
query
.
OrderId
){
this
.
dataObj
.
OrderId
=
this
.
$route
.
query
.
OrderId
}
},
};
</
script
>
<
style
>
</
style
>
This diff is collapsed.
Click to expand it.
src/components/SingleAirTicket/components/OrderList.vue
0 → 100644
View file @
dbaf0cc4
This diff is collapsed.
Click to expand it.
src/components/SingleAirTicket/components/TicketOrder.vue
0 → 100644
View file @
dbaf0cc4
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelTeam/buyComponents/index.vue
0 → 100644
View file @
dbaf0cc4
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelTeam/priceGroup.vue
0 → 100644
View file @
dbaf0cc4
This diff is collapsed.
Click to expand it.
src/components/busManagement/BookAcar/CharterPreview.vue
View file @
dbaf0cc4
...
...
@@ -305,6 +305,10 @@
<div
class=
"list-left"
>
<h6
@
click=
"showCardHandler"
>
{{detailsObj.Name}}
</h6>
<p
style=
"color: #9e9e9e;font-size: 13px;"
>
请在出发前一天的23:00前完成预定
</p>
<div
v-if=
"crmOrderObj"
>
<span
style=
"color: red;"
>
引流人:{{crmOrderObj.LureEmpNmae}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:{{crmOrderObj.CRMGuestName}}
</span>
</div>
<!-- <div>
<span>地址: {{detailsObj.CityList2[0].CountryName }}{{detailsObj.CityList2[0].CityName}}</span>
<a @click="showCardHandler"><i class="el-icon-map-location"></i> 地图</a>
...
...
@@ -438,8 +442,8 @@
placeholder=
"请输入上车地点"
>
</el-input>
<span
@
click=
"clickMapAddress(1,1,msg.GetonAddress)"
class=
"el-icon-location"
style=
"font-size: 16px;color: #E95252;position: absolute;right: 10px;top: 15px;"
></span>
<
!-- <
span @click="clickMapAddress(1,1,msg.GetonAddress)"
class="el-icon-location" style="font-size: 16px;color: #E95252;position: absolute;right: 10px;top: 15px;"></span>
-->
</el-form-item>
</li>
<li
v-if=
"msg.OrderType!=2"
>
...
...
@@ -637,6 +641,8 @@
Mobile
:
''
,
//电话
ProductId
:
''
,
CarId
:
''
,
//产品类型ID
LureEmpId
:
0
,
CRMGuestId
:
0
,
},
types
:
[],
isCheck
:
false
,
...
...
@@ -712,7 +718,8 @@
}
],
},
detailsRow
:
null
detailsRow
:
null
,
crmOrderObj
:
null
};
},
methods
:
{
...
...
@@ -980,7 +987,12 @@
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
JSON
.
parse
(
this
.
$route
.
query
.
crmOrderObj
)
this
.
msg
.
LureEmpId
=
this
.
crmOrderObj
.
LureEmpId
//引流id
this
.
msg
.
CRMGuestId
=
this
.
crmOrderObj
.
CRMGuestId
//客人ID
}
},
created
()
{
this
.
msg
.
OrderId
=
this
.
$route
.
query
.
OrderId
...
...
This diff is collapsed.
Click to expand it.
src/components/busManagement/BookAcar/addEditVehicle.vue
View file @
dbaf0cc4
...
...
@@ -284,6 +284,10 @@
<div
class=
"listone-list"
>
<div
class=
"list-left"
>
<p
style=
"color: #9e9e9e;font-size: 13px;"
>
请在出发前一天的23:00前完成预定
</p>
<div
v-if=
"crmOrderObj"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
</div>
</div>
</div>
</div>
...
...
@@ -500,7 +504,9 @@
// UseType: null,//用车类型(接口返下拉列表)
// TripInfo: "",//行程信息
// }
]
],
LureEmpId
:
0
,
CRMGuestId
:
0
,
},
types
:
[],
isCheck
:
false
,
...
...
@@ -584,7 +590,8 @@
},
vehicletop
:
[],
listvehicle
:
[],
SeatNum
:
0
SeatNum
:
0
,
crmOrderObj
:
null
,
};
},
methods
:
{
...
...
@@ -801,6 +808,12 @@
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
JSON
.
parse
(
this
.
$route
.
query
.
crmOrderObj
)
this
.
msg
.
LureEmpId
=
this
.
crmOrderObj
.
LureEmpId
//引流id
this
.
msg
.
CRMGuestId
=
this
.
crmOrderObj
.
CRMGuestId
//客人ID
}
let
userInfo
=
this
.
getLocalStorage
();
this
.
msg
.
UseCompName
=
userInfo
.
GroupName
this
.
msg
.
UseName
=
userInfo
.
emName
...
...
This diff is collapsed.
Click to expand it.
src/components/busManagement/BookAcar/list.vue
View file @
dbaf0cc4
...
...
@@ -314,6 +314,7 @@
},
detailsObj
:{},
showDetails
:
false
,
crmOrderObj
:
null
};
},
watch
:
{
...
...
@@ -334,6 +335,7 @@
name
:
'CharterAddEditVehicle'
,
query
:
{
blank
:
"y"
,
crmOrderObj
:
this
.
crmOrderObj
?
this
.
crmOrderObj
:
null
,
tab
:
"新增团订"
}
});
...
...
@@ -344,6 +346,7 @@
query
:
{
id
:
id
,
OrderDate
:
this
.
FormartDate
(
new
Date
(
this
.
msg
.
Q_Date
)),
crmOrderObj
:
this
.
crmOrderObj
?
this
.
crmOrderObj
:
null
,
blank
:
"y"
,
tab
:
"订单预览"
}
...
...
@@ -445,7 +448,10 @@
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
this
.
$route
.
query
.
crmOrderObj
}
},
created
()
{
this
.
getProvinceList
();
...
...
This diff is collapsed.
Click to expand it.
src/components/scenicSpot/Singleticket/OrderPreview.vue
View file @
dbaf0cc4
...
...
@@ -279,6 +279,10 @@
<div
class=
"list-left"
>
<h6
@
click=
"showCardHandler"
>
{{
detailsObj
.
Name
}}
</h6>
<p
style=
"color: #9e9e9e;font-size: 13px;"
>
请在游玩前一天的23:00前完成预定
</p>
<div
v-if=
"crmOrderObj"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
</div>
<!--
<div>
<span>
地址:
{{
detailsObj
.
CityName
}}
{{
detailsObj
.
Address
}}
</span>
<a
@
click=
"showCardHandler"
><i
class=
"el-icon-map-location"
></i>
地图
</a>
...
...
@@ -480,6 +484,8 @@
Mobile
:
''
,
CouponsId
:
''
,
//景点id
DetailList
:[],
LureEmpId
:
0
,
CRMGuestId
:
0
,
},
types
:
[],
isCheck
:
false
,
...
...
@@ -515,7 +521,8 @@
trigger
:
'blur'
}],
},
detailsRow
:
null
detailsRow
:
null
,
crmOrderObj
:
null
};
},
methods
:
{
...
...
@@ -682,7 +689,12 @@
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
JSON
.
parse
(
this
.
$route
.
query
.
crmOrderObj
)
this
.
msg
.
LureEmpId
=
this
.
crmOrderObj
.
LureEmpId
this
.
msg
.
CRMGuestId
=
this
.
crmOrderObj
.
CRMGuestId
}
},
created
()
{
this
.
msg
.
CouponsId
=
this
.
$route
.
query
.
id
...
...
This diff is collapsed.
Click to expand it.
src/components/scenicSpot/Singleticket/SingleticketList.vue
View file @
dbaf0cc4
...
...
@@ -150,7 +150,7 @@
<div
class=
"flexOne domesticScenic"
>
<div
class=
"query-box"
>
<ul>
<li>
<
!--
<
li>
<span>
<em>
{{
$t
(
'system.quety_area'
)
}}
</em>
<el-select
v-model=
"msg.QProvince"
filterable
@
change=
"getProvinceList(msg.QProvince, 2)"
...
...
@@ -163,7 +163,7 @@
<el-option
v-for=
"item in cityList"
:key=
"item.ID"
:label=
"item.Name"
:value=
"item.ID"
></el-option>
</el-select>
</span>
</li>
</li>
-->
<li><span><em>
日期
</em>
<el-date-picker
v-model=
'msg.OpenTime'
format=
"yyyy-MM-dd"
value-format=
"yyyy-MM-dd"
type=
"date"
:picker-options=
"beforeCheck"
laceholder=
"门票日期"
>
...
...
@@ -294,7 +294,7 @@ export default {
msg
:
{
pageIndex
:
1
,
pageSize
:
16
,
QCountry
:
'
651'
,
QCountry
:
'
0'
,
//651
QProvince
:
0
,
QCity
:
0
,
QDistrict
:
0
,
...
...
@@ -312,6 +312,7 @@ export default {
},
detailsObj
:
{},
showDetails
:
false
,
crmOrderObj
:
null
,
};
},
watch
:
{
...
...
@@ -333,6 +334,7 @@ export default {
query
:
{
id
:
id
,
OpenTime
:
this
.
FormartDate
(
new
Date
(
this
.
msg
.
OpenTime
)),
crmOrderObj
:
this
.
crmOrderObj
?
this
.
crmOrderObj
:
null
,
blank
:
"y"
,
tab
:
"订单预览"
}
...
...
@@ -427,7 +429,10 @@ export default {
},
mounted
()
{
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
this
.
$route
.
query
.
crmOrderObj
}
},
created
()
{
this
.
getProvinceList
(
"651"
,
1
);
...
...
This diff is collapsed.
Click to expand it.
src/pubComponents/buyGroup.vue
0 → 100644
View file @
dbaf0cc4
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
dbaf0cc4
...
...
@@ -2110,6 +2110,14 @@ export default {
title
:
'用车订单'
},
},
{
path
:
'/CRMTicketOrder'
,
//crm单项机票订单
name
:
'CRMTicketOrder'
,
component
:
resolve
=>
require
([
'@/components/SingleAirTicket/TicketOrder'
],
resolve
),
meta
:
{
title
:
'单机票订单'
},
},
{
path
:
'/CharterAddEditVehicle'
,
//新增/编辑团订
name
:
'CharterAddEditVehicle'
,
...
...
@@ -2229,7 +2237,8 @@ export default {
meta
:
{
title
:
'签证已确认'
},
},
{
},
{
path
:
'/TravelManager'
,
//团控配置
name
:
'TravelManager'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelGroupControl/TravelManager'
],
resolve
),
...
...
@@ -2292,12 +2301,19 @@ export default {
title
:
'团控列表'
},
},
{
path
:
'/
editTeamInfo'
,
//新增修改
包机信息
name
:
'
editTeam
Info'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelTeam/
editTeam
Info'
],
resolve
),
path
:
'/
airplaneInfo'
,
//
包机信息
name
:
'
airplane
Info'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelTeam/
add
Info'
],
resolve
),
meta
:
{
title
:
'包机信息'
},
},
{
path
:
'/priceGroup'
,
//订单列表
name
:
'priceGroup'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelTeam/priceGroup'
],
resolve
),
meta
:
{
title
:
'包机列表'
},
},
{
path
:
'/TravelTeam'
,
//包机列表
name
:
'TravelTeam'
,
...
...
@@ -2306,11 +2322,18 @@ export default {
title
:
'包机列表'
},
},
{
path
:
'/airplaneOrder'
,
//订单列表
name
:
'airplaneOrder'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelTeam/orderInfo'
],
resolve
),
path
:
'/airplaneGroup'
,
//团控信息
name
:
'airplaneGroup'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelTeam/airplaneGroup'
],
resolve
),
meta
:
{
title
:
'团控信息'
},
},
{
path
:
'/airplaneApply'
,
//在线申请
name
:
'airplaneApply'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelTeam/apply'
],
resolve
),
meta
:
{
title
:
'
订单列表
'
title
:
'
在线申请
'
},
},
{
path
:
'/TravelSupplier'
,
//供应商列表
...
...
This diff is collapsed.
Click to expand it.
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