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
e5423b99
Commit
e5423b99
authored
Mar 31, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
fab22a50
5badb607
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
598 additions
and
1717 deletions
+598
-1717
ListCar.vue
src/components/Hotel/singleProduct/components/ListCar.vue
+1
-1
chooseCustomer.vue
src/components/TravelManager/TravelTeam/chooseCustomer.vue
+102
-0
editTeamInfo.vue
src/components/TravelManager/TravelTeam/editTeamInfo.vue
+457
-1690
travelTeamList.vue
src/components/TravelManager/TravelTeam/travelTeamList.vue
+20
-15
tripBusOrderList.vue
...ts/busManagement/BookAcar/components/tripBusOrderList.vue
+6
-5
list.vue
src/components/busManagement/BookAcar/list.vue
+3
-3
TravelManager2.vue
...ts/newTravelmanager/TravelGroupControl/TravelManager2.vue
+4
-1
menuManagement.vue
src/components/platformModule/menuManagement.vue
+5
-2
No files found.
src/components/Hotel/singleProduct/components/ListCar.vue
View file @
e5423b99
...
@@ -70,7 +70,7 @@
...
@@ -70,7 +70,7 @@
<div
v-if=
"crmOrderObj"
style=
"margin-bottom: 10px;"
>
<div
v-if=
"crmOrderObj"
style=
"margin-bottom: 10px;"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
<span
style=
"color: #2AAEF2;"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
</div>
</div>
<el-form
label-width=
"60px"
:model=
"parameters"
:rules=
"rules"
ref=
"parameters"
>
<el-form
label-width=
"60px"
:model=
"parameters"
:rules=
"rules"
ref=
"parameters"
>
<el-row
:gutter=
"20"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
...
...
src/components/TravelManager/TravelTeam/chooseCustomer.vue
0 → 100644
View file @
e5423b99
<
style
>
</
style
>
<
template
>
<el-card
class=
"box-card"
>
<div
slot=
"header"
class=
"clearfix"
>
<span>
选择同行
</span>
<el-button
style=
"float: right; padding: 3px 0"
type=
"text"
@
click=
"sureData"
>
确认选择
</el-button>
</div>
<div
class=
"chooseCustomerInfo"
>
<el-table
:data=
"dataList"
style=
"width:100%"
border
v-loading=
'loading'
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
fixed
label=
"同行名称"
min-width=
"180"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
CustomerName
}}
</
template
>
</el-table-column>
<el-table-column
fixed
label=
"联系电话"
min-width=
"180"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
ContactNumber
}}
</
template
>
</el-table-column>
<el-table-column
fixed
label=
"关联销售"
min-width=
"180"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
EmName
}}
</
template
>
</el-table-column>
<el-table-column
fixed
label=
"地址"
min-width=
"180"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
Address
}}
</
template
>
</el-table-column>
</el-table>
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"qMsg.currentPage"
layout=
"total,prev, pager, next, jumper"
:page-size=
"qMsg.pageSize"
:total=
"qMsg.total"
>
</el-pagination>
</div>
</el-card>
</template>
<
script
>
export
default
{
data
()
{
return
{
loading
:
false
,
dataList
:
[],
//数据列表
qMsg
:
{
pageIndex
:
1
,
currentPage
:
1
,
pageSize
:
8
,
total
:
0
,
},
saveLoading
:
false
,
//保存loading
selectData
:
[],
};
},
created
()
{
},
mounted
()
{
this
.
getCustomerList
();
},
methods
:
{
//确认选择
sureData
()
{
this
.
$emit
(
"success"
,
this
.
selectData
);
},
handleSelectionChange
(
val
)
{
var
selectRow
=
JSON
.
parse
(
JSON
.
stringify
(
val
));
this
.
selectData
=
selectRow
;
},
//翻页
handleCurrentChange
(
val
)
{
this
.
qMsg
.
pageIndex
=
val
;
this
.
getCustomerList
();
},
// 获取合作伙伴列表
getCustomerList
()
{
this
.
loading
=
true
;
this
.
apipost
(
"app_customer_GetCustomerListForCareOf"
,
this
.
qMsg
,
(
res
)
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
dataList
=
res
.
data
.
data
.
pages
.
pageData
;
this
.
qMsg
.
total
=
res
.
data
.
data
.
pages
.
count
;
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
}
},
(
err
)
=>
{
this
.
loading
=
false
;
}
);
},
},
};
</
script
>
src/components/TravelManager/TravelTeam/editTeamInfo.vue
View file @
e5423b99
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelTeam/travelTeamList.vue
View file @
e5423b99
...
@@ -65,7 +65,7 @@
...
@@ -65,7 +65,7 @@
layout=
"total,prev, pager, next, jumper"
:page-size=
"queryMsg.pageSize"
:total=
"queryMsg.total"
>
layout=
"total,prev, pager, next, jumper"
:page-size=
"queryMsg.pageSize"
:total=
"queryMsg.total"
>
</el-pagination>
</el-pagination>
<ul>
<ul>
<li
v-for=
"(item,index) in queryDataObj.dataList"
:key=
"i
ndex
"
<li
v-for=
"(item,index) in queryDataObj.dataList"
:key=
"i
tem.GTeamId
"
:class=
"
{'TC_hasContent':item.OPInnerRemark==''
&&
item.OPRemark==''}">
:class=
"
{'TC_hasContent':item.OPInnerRemark==''
&&
item.OPRemark==''}">
<div
class=
"TC_remarkContent"
>
<div
class=
"TC_remarkContent"
>
<div
class=
"el-col w_20"
>
<div
class=
"el-col w_20"
>
...
@@ -88,7 +88,7 @@
...
@@ -88,7 +88,7 @@
</div>
</div>
<div
class=
"el-col w_10"
>
<div
class=
"el-col w_10"
>
<div
class=
"p20"
>
<div
class=
"p20"
>
<div
class=
"mb title"
><i
class=
"iconfont icon-jiage"
></i><span>
仓
位信息
</span></div>
<div
class=
"mb title"
><i
class=
"iconfont icon-jiage"
></i><span>
机
位信息
</span></div>
<div
class=
"mb"
><span>
经济舱:
{{
item
.
YSeat
}}
</span></div>
<div
class=
"mb"
><span>
经济舱:
{{
item
.
YSeat
}}
</span></div>
<div
class=
"mb"
><span>
商务舱:
{{
item
.
CSeat
}}
</span></div>
<div
class=
"mb"
><span>
商务舱:
{{
item
.
CSeat
}}
</span></div>
<div
class=
"mb"
><span>
头等舱:
{{
item
.
FSeat
}}
</span></div>
<div
class=
"mb"
><span>
头等舱:
{{
item
.
FSeat
}}
</span></div>
...
@@ -107,7 +107,7 @@
...
@@ -107,7 +107,7 @@
<div
class=
"p20"
>
<div
class=
"p20"
>
<div
class=
"mb title"
><i
class=
"iconfont icon-tuandui"
></i><span>
合作伙伴
</span></div>
<div
class=
"mb title"
><i
class=
"iconfont icon-tuandui"
></i><span>
合作伙伴
</span></div>
<template
v-for=
"(subItem,subIndex) in item.TravelTeamPartnerList"
>
<template
v-for=
"(subItem,subIndex) in item.TravelTeamPartnerList"
>
<el-tag
:key=
"subIndex+1000
"
style=
"margin: 0 10px 10px 0
;"
>
{{
subItem
.
CustomerName
}}
</el-tag>
<el-tag
:key=
"subIndex+1000
0"
style=
"margin-right:10px
;"
>
{{
subItem
.
CustomerName
}}
</el-tag>
</
template
>
</
template
>
</div>
</div>
</div>
</div>
...
@@ -156,28 +156,29 @@
...
@@ -156,28 +156,29 @@
</el-pagination>
</el-pagination>
</div>
</div>
</div>
</div>
<el-dialog
class=
"app-attachment-dialog"
style=
"width:1000px;height:800px;margin:0 auto;z-index:99999
"
<el-dialog
class=
"app-attachment-dialog"
width=
"900"
:title=
"dialogTitle"
:visible
.
sync=
"isShowEditTeamDialog
"
:
title=
"dialogTitle"
:visible
.
sync=
"isShowEditTeamDialog"
:close-on-click-modal=
"false"
>
:
close-on-click-modal=
"false"
>
<editTeamInfo
:id=
"ID
"
></editTeamInfo>
<editTeamInfo
v-if=
"isShowEditTeamDialog"
:Q_GTeamId=
"GTeamId"
@
success=
"refreshPage
"
></editTeamInfo>
</el-dialog>
</el-dialog>
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
editTeamInfo
from
"./editTeamInfo"
;
//新增修改包机团
import
editTeamInfo
from
"../TravelTeam/editTeamInfo"
;
//新增修改包机团
export
default
{
export
default
{
components
:
{
editTeamInfo
},
provide
()
{
provide
()
{
return
{
return
{
reload
:
this
.
reload
reload
:
this
.
reload
}
}
},
},
components
:
{
editTeamInfo
},
data
()
{
data
()
{
return
{
return
{
isShowEditTeamDialog
:
false
,
//是否显示新增修改包机团弹窗
isShowEditTeamDialog
:
false
,
//是否显示新增修改包机团弹窗
dialogTitle
:
"添加包机信息"
,
//弹窗名称
dialogTitle
:
"添加包机信息"
,
//弹窗名称
ID
:
''
,
GTeamId
:
0
,
//包机团队Id
//查询参数
//查询参数
queryMsg
:
{
queryMsg
:
{
pageIndex
:
1
,
pageIndex
:
1
,
...
@@ -216,9 +217,6 @@
...
@@ -216,9 +217,6 @@
}
}
},
},
};
};
},
components
:
{
},
},
//监听器
//监听器
watch
:
{
watch
:
{
...
@@ -228,16 +226,23 @@
...
@@ -228,16 +226,23 @@
},
},
},
},
methods
:
{
methods
:
{
//新增修改包机团
//新增修改包机团
editTeam
(
item
)
{
editTeam
(
item
)
{
if
(
item
)
{
if
(
item
)
{
this
.
dialogTitle
=
"修改包机信息"
;
this
.
dialogTitle
=
"修改包机信息"
;
this
.
GTeamId
=
item
.
GTeamId
;
}
else
{
}
else
{
this
.
dialogTitle
=
"添加包机信息"
;
this
.
dialogTitle
=
"添加包机信息"
;
this
.
GTeamId
=
0
;
}
}
this
.
isShowEditTeamDialog
=
true
;
this
.
isShowEditTeamDialog
=
true
;
},
},
//刷新页面
refreshPage
()
{
this
.
isShowEditTeamDialog
=
false
;
this
.
getTravelTeamList
();
},
//翻页
//翻页
handleCurrentChange
(
val
)
{
handleCurrentChange
(
val
)
{
this
.
queryMsg
.
pageIndex
=
val
;
this
.
queryMsg
.
pageIndex
=
val
;
...
...
src/components/busManagement/BookAcar/components/tripBusOrderList.vue
View file @
e5423b99
...
@@ -628,7 +628,8 @@
...
@@ -628,7 +628,8 @@
<div
class=
"row-c justify-sb pb5"
:class=
"{'borderD':item.DiscountsMoney>0}"
>
<div
class=
"row-c justify-sb pb5"
:class=
"{'borderD':item.DiscountsMoney>0}"
>
<span
class=
"fz12 c9e"
>
订单总金额
</span>
<span
class=
"fz12 c9e"
>
订单总金额
</span>
<div
class=
"ml"
>
<div
class=
"ml"
>
<span
class=
"fz15 fbold"
>
{{ item.totalMoney.toFixed(2) }}
</span>
<!-- totalMoney -->
<span
class=
"fz15 fbold"
>
{{ item.TotalPrice.toFixed(2) }}
</span>
<span
class=
"fz12 ml"
>
<span
class=
"fz12 ml"
>
{{item.CurrencyName}}
{{item.CurrencyName}}
</span>
</span>
...
@@ -814,7 +815,7 @@
...
@@ -814,7 +815,7 @@
<el-table-column
prop=
"UnitPrice"
label=
"价格"
min-width=
"150"
>
<el-table-column
prop=
"UnitPrice"
label=
"价格"
min-width=
"150"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-input-number
v-if=
"priceType == 1"
v-model=
"scope.row.UnitPrice"
@
change=
"calcPrice()"
<el-input-number
v-if=
"priceType == 1"
v-model=
"scope.row.UnitPrice"
@
change=
"calcPrice()"
:min=
"
1
"
style=
"width:auto;"
></el-input-number>
:min=
"
0
"
style=
"width:auto;"
></el-input-number>
<span
v-if=
"priceType != 1"
>
<span
v-if=
"priceType != 1"
>
{{
scope
.
row
.
UnitPrice
}}
{{
scope
.
row
.
UnitPrice
}}
</span>
</span>
...
@@ -1340,9 +1341,9 @@
...
@@ -1340,9 +1341,9 @@
var
tempRoomPrice
=
0
;
var
tempRoomPrice
=
0
;
var
tempTotalPrice
=
0
;
var
tempTotalPrice
=
0
;
this
.
postMsg
.
details
&&
this
.
postMsg
.
details
.
forEach
(
item
=>
{
this
.
postMsg
.
details
&&
this
.
postMsg
.
details
.
forEach
(
item
=>
{
if
(
!
item
.
UnitPrice
){
//
if(!item.UnitPrice){
item
.
UnitPrice
=
1
//
item.UnitPrice = 1
}
//
}
item
.
Money
=
item
.
UnitPrice
+
item
.
StopBusPrice
+
item
.
RoomPrice
item
.
Money
=
item
.
UnitPrice
+
item
.
StopBusPrice
+
item
.
RoomPrice
if
(
item
.
UnitPrice
)
{
if
(
item
.
UnitPrice
)
{
tempUnitPrice
+=
Number
(
item
.
UnitPrice
);
tempUnitPrice
+=
Number
(
item
.
UnitPrice
);
...
...
src/components/busManagement/BookAcar/list.vue
View file @
e5423b99
...
@@ -449,9 +449,9 @@
...
@@ -449,9 +449,9 @@
},
},
mounted
()
{
mounted
()
{
// crm自动登陆传过来的参数
// crm自动登陆传过来的参数
if
(
this
.
$route
.
query
.
crmOrderObj
){
if
(
this
.
$route
.
query
.
crmOrderObj
){
this
.
crmOrderObj
=
this
.
$route
.
query
.
crmOrderObj
this
.
crmOrderObj
=
this
.
$route
.
query
.
crmOrderObj
}
}
},
},
created
()
{
created
()
{
this
.
getProvinceList
();
this
.
getProvinceList
();
...
...
src/components/newTravelmanager/TravelGroupControl/TravelManager2.vue
View file @
e5423b99
...
@@ -45,16 +45,19 @@
...
@@ -45,16 +45,19 @@
<TravelNotice
:class=
"
{'showOther':TeamType==3}" ref="TravelNotice" id="fourAnchor" @headCallBack="getNotice"
<TravelNotice
:class=
"
{'showOther':TeamType==3}" ref="TravelNotice" id="fourAnchor" @headCallBack="getNotice"
:subArray="NoticeParameters" :NoticeData="NoticeData" v-bind:PostConfig="PostConfig"
:subArray="NoticeParameters" :NoticeData="NoticeData" v-bind:PostConfig="PostConfig"
v-bind:AllCityList="AllCityList" v-bind:CountryID="PostConfig.CountryID">
</TravelNotice>
v-bind:AllCityList="AllCityList" v-bind:CountryID="PostConfig.CountryID">
</TravelNotice>
<!--常规团-->
<TravelPrice
@
saveMsg=
"SaveData(1)"
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
<TravelPrice
@
saveMsg=
"SaveData(1)"
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
:priceList=
"PriceList"
v-if=
"TeamType==0"
:PostConfig=
"PostConfig"
:modifyTcid=
"modifyTcid"
:priceList=
"PriceList"
v-if=
"TeamType==0"
:PostConfig=
"PostConfig"
:modifyTcid=
"modifyTcid"
:TeamType=
"TeamType"
:CurrentUserInfo=
"CurrentUserInfo"
:IsDirect=
"PostConfig.IsDirect"
></TravelPrice>
:TeamType=
"TeamType"
:CurrentUserInfo=
"CurrentUserInfo"
:IsDirect=
"PostConfig.IsDirect"
></TravelPrice>
<!--小包团-->
<TravelPrice2
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
:PostDaysTrip=
"PostDaysTrip"
<TravelPrice2
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
:PostDaysTrip=
"PostDaysTrip"
v-if=
"TeamType==1"
:priceList=
"PriceList"
:PostConfig=
"PostConfig"
:modifyTcid=
"modifyTcid"
v-if=
"TeamType==1"
:priceList=
"PriceList"
:PostConfig=
"PostConfig"
:modifyTcid=
"modifyTcid"
:TeamType=
"TeamType"
></TravelPrice2>
:TeamType=
"TeamType"
></TravelPrice2>
<!--一日游-->
<TravelPrice3
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
:PostDaysTrip=
"PostDaysTrip"
<TravelPrice3
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
:PostDaysTrip=
"PostDaysTrip"
v-if=
"TeamType==2"
:priceList=
"PriceList"
:PostConfig=
"PostConfig"
:modifyTcid=
"modifyTcid"
v-if=
"TeamType==2"
:priceList=
"PriceList"
:PostConfig=
"PostConfig"
:modifyTcid=
"modifyTcid"
:TeamType=
"TeamType"
></TravelPrice3>
:TeamType=
"TeamType"
></TravelPrice3>
<!--地接团-->
<TravelPrice4
@
saveMsg=
"SaveData(1)"
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
<TravelPrice4
@
saveMsg=
"SaveData(1)"
ref=
"TravelPrice"
id=
"fiveAnchor"
@
headCallBack=
"getPrice"
:PostDaysTrip=
"PostDaysTrip"
v-if=
"TeamType==3"
:priceList=
"PriceList"
:PostConfig=
"PostConfig"
:PostDaysTrip=
"PostDaysTrip"
v-if=
"TeamType==3"
:priceList=
"PriceList"
:PostConfig=
"PostConfig"
:modifyTcid=
"modifyTcid"
:TeamType=
"TeamType"
></TravelPrice4>
:modifyTcid=
"modifyTcid"
:TeamType=
"TeamType"
></TravelPrice4>
...
...
src/components/platformModule/menuManagement.vue
View file @
e5423b99
...
@@ -360,10 +360,12 @@
...
@@ -360,10 +360,12 @@
this
.
addMsg
.
Sort
=
updateList
.
Sort
this
.
addMsg
.
Sort
=
updateList
.
Sort
this
.
addMsg
.
GroupingCode
=
updateList
.
GroupingCode
this
.
addMsg
.
GroupingCode
=
updateList
.
GroupingCode
this
.
addMsg
.
MenuUrl
=
updateList
.
MenuUrl
this
.
addMsg
.
MenuUrl
=
updateList
.
MenuUrl
this
.
addMsg
.
menutype
=
updateList
.
MenuType
this
.
addMsg
.
MenuStatus
=
updateList
.
MenuStatus
.
toString
()
this
.
addMsg
.
MenuStatus
=
updateList
.
MenuStatus
.
toString
()
let
style
=
JSON
.
parse
(
updateList
.
MenuStyle
)
let
style
=
JSON
.
parse
(
updateList
.
MenuStyle
)
// this.addMsg.MenuStyleIcon = style.icon
console
.
log
(
style
,
'----'
)
this
.
addMsg
.
MenuStyleIcon
=
style
.
icon
this
.
addMsg
.
MenuStyleIcon
=
style
.
icon
this
.
addMsg
.
MenuStyleIcon
=
style
.
menutype
this
.
addMsg
.
MenuStyleColor
=
style
.
color
this
.
addMsg
.
MenuStyleColor
=
style
.
color
this
.
currentUpdateIndex
=
index
this
.
currentUpdateIndex
=
index
...
@@ -390,7 +392,8 @@
...
@@ -390,7 +392,8 @@
'MenuStyle'
:
''
,
'MenuStyle'
:
''
,
'MenuStatus'
:
'0'
,
'MenuStatus'
:
'0'
,
MenuStyleIcon
:
''
,
MenuStyleIcon
:
''
,
MenuStyleColor
:
''
MenuStyleColor
:
''
,
Sort
:
null
}
}
},
},
resetPageIndex
()
{
resetPageIndex
()
{
...
...
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