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
ec393c40
Commit
ec393c40
authored
Nov 12, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
地接报价调整
parent
45d8e403
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
123 additions
and
32 deletions
+123
-32
roomReservationsDetails.vue
src/components/Hotel/roomReservationsDetails.vue
+19
-8
leaderReimbursement.vue
src/components/LeaderManagement/leaderReimbursement.vue
+55
-7
bookDinnerStatisticsDetails.vue
src/components/Restaurant/bookDinnerStatisticsDetails.vue
+19
-7
BusInfo.vue
src/components/busManagement/BusInfo.vue
+15
-4
admissionStatisticsDetails.vue
src/components/scenicSpot/admissionStatisticsDetails.vue
+15
-6
No files found.
src/components/Hotel/roomReservationsDetails.vue
View file @
ec393c40
...
...
@@ -38,7 +38,6 @@
top
:
0
;
z-index
:
10
;
}
</
style
>
<
template
>
...
...
@@ -209,9 +208,22 @@
</td>
</tr>
</table>
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiajiudian'
)
}}
:
<font
style=
"color:red;"
>
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiajiudian'
)
}}
:
<font
style=
"color:red;"
>
{{
subItem
.
OfferHotelName
}}
(
{{
subItem
.
OfferUnitPrice
}}
/
{{
$t
(
'hotel.hotel_people'
)
}}
)
</font></span>
{{
subItem
.
OfferUnitPrice
}}
<template
v-if=
"subItem.IsHotelChange"
>
<el-tooltip
:content=
"subItem.HotelChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"subItem.HotelChangeValue>0"
>
+
{{
subItem
.
HotelChangeValue
}}
</
template
>
<
template
v-else
>
{{
subItem
.
HotelChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
/{{$t('hotel.hotel_people')}})
</font>
</span>
</td>
<!-- 机位总数/(Y/E/F) -->
<td
v-if=
"childIndex==0"
:rowspan=
"6"
>
...
...
@@ -803,8 +815,9 @@
if
(
objData
.
list
&&
objData
.
list
.
length
>
0
)
{
var
str
=
""
;
objData
.
list
.
forEach
((
cItem
,
cIndex
)
=>
{
str
+=
(
cIndex
==
0
?
""
:
","
)
+
cItem
.
TCNUM
+
this
.
$t
(
'objFill.shiyongle'
)
+
cItem
.
LastUseNum
+
this
.
$t
(
'hotel.hotel_room'
);
str
+=
(
cIndex
==
0
?
""
:
","
)
+
cItem
.
TCNUM
+
this
.
$t
(
'objFill.shiyongle'
)
+
cItem
.
LastUseNum
+
this
.
$t
(
'hotel.hotel_room'
);
});
if
(
str
!=
""
)
{
this
.
Info
(
str
);
...
...
@@ -1286,7 +1299,6 @@
this
.
getList
();
}
}
</
script
>
<
style
>
.roomReservationsDetailsTalbe
{
...
...
@@ -1358,5 +1370,4 @@
.roomReservationsDetailsTalbe
.hotelTable
tr
td
{
border
:
none
;
}
</
style
>
</
style
>
\ No newline at end of file
src/components/LeaderManagement/leaderReimbursement.vue
View file @
ec393c40
...
...
@@ -152,8 +152,21 @@
</div>
</
template
>
</template>
<
template
v-if=
"item.BusOfferPrice&&item.BusOfferPrice"
>
<br
/>
{{
$t
(
'objFill.baojia'
)
}}
:
<font
style=
"color:red;"
>
{{
item
.
BusOfferPrice
}}
</font>
<
template
v-if=
"item.BusOfferPrice&&item.BusOfferPrice>0"
>
<br
/>
{{
$t
(
'objFill.baojia'
)
}}
:
<font
style=
"color:red;"
>
{{
item
.
BusOfferPrice
}}
<template
v-if=
"item.IsBusChange"
>
<el-tooltip
:content=
"item.BusChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"item.BusChangeValue>0"
>
+
{{
item
.
BusChangeValue
}}
</
template
>
<
template
v-else
>
{{
item
.
BusChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
</font>
</template>
</td>
<td>
...
...
@@ -313,7 +326,19 @@
<br
/>
<span
style=
"font-weight:bold;font-size:14px;"
>
{{$t('objFill.baojiajiudian')}}:
<font
style=
"color:red;"
>
{{subItem.OfferHotelName}}(
{{subItem.OfferUnitPrice}}/{{$t('hotel.hotel_people')}})
</font></span>
{{subItem.OfferUnitPrice}}
<
template
v-if=
"subItem.IsHotelChange"
>
<el-tooltip
:content=
"subItem.HotelChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"subItem.HotelChangeValue>0"
>
+
{{
subItem
.
HotelChangeValue
}}
</
template
>
<
template
v-else
>
{{
subItem
.
HotelChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
/{{$t('hotel.hotel_people')}})
</font></span>
<br
/>
<span
style=
"color:red"
v-if=
"subItem.StandardRoomPrice"
>
{{$t('objFill.shijijine')}}:{{subItem.StandardRoomPrice}}/{{$t('objFill.v101.LeaderManagement.renbiaoj')}}
</span>
...
...
@@ -588,7 +613,18 @@
<
template
v-if=
"subItem.DinnerOfferPrice&&subItem.DinnerOfferPrice>0"
>
<br
/>
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiacanting'
)
}}
:
<font
style=
"color:red;"
>
{{
subItem
.
DinnerOfferName
}}
(
{{
subItem
.
DinnerOfferPrice
}}
/
{{
$t
(
'hotel.hotel_people'
)
}}
)
{{
subItem
.
DinnerOfferName
}}
(
{{
subItem
.
DinnerOfferPrice
}}
<template
v-if=
"subItem.IsDinnerChange"
>
<el-tooltip
:content=
"subItem.DinnerChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"subItem.DinnerChangeValue>0"
>
+
{{
subItem
.
DinnerChangeValue
}}
</
template
>
<
template
v-else
>
{{
subItem
.
DinnerChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
/{{$t('hotel.hotel_people')}})
</font></span>
</template>
</td>
...
...
@@ -726,7 +762,18 @@
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiajingdian'
)
}}
:
<font
style=
"color:red;"
>
{{
subItem
.
ScenicOfferName
}}
(
{{
subItem
.
ScenicOfferPrice
}}
/
{{
$t
(
'hotel.hotel_people'
)
}}
)
</font>
(
{{
subItem
.
ScenicOfferPrice
}}
<template
v-if=
"subItem.IsScenicChange"
>
<el-tooltip
:content=
"subItem.ScenicChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"subItem.ScenicChangeValue>0"
>
+
{{
subItem
.
ScenicChangeValue
}}
</
template
>
<
template
v-else
>
{{
subItem
.
ScenicChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
/{{$t('hotel.hotel_people')}})
</font>
</span>
</template>
</td>
...
...
@@ -753,7 +800,7 @@
{{childItem.DiscountPrice}}%
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"3"
>
{{scenicTotalPrice(subItem, subItem.TicketPriceList)}}
{{scenicTotalPrice(subItem, subItem.TicketPriceList)}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"3"
>
<span
v-if=
"subItem.PayStyle === 1"
>
{{$t('objFill.xianfu')}}
</span>
...
...
@@ -2419,8 +2466,9 @@
arrList
(
x
.
ScenicStatisticsList
)
//门票
})
arrList
(
data
.
OtherOrderReportList
)
//其它
this
.
list
=
data
;
console
.
log
(
"this.list"
,
this
.
list
);
var
lineArray
=
[
168
];
//新欧洲线只显示标准间
var
lineId
=
0
;
//转成数字类型
...
...
src/components/Restaurant/bookDinnerStatisticsDetails.vue
View file @
ec393c40
...
...
@@ -100,8 +100,22 @@
</el-popover>
<
template
v-if=
"subItem.DinnerOfferPrice&&subItem.DinnerOfferPrice>0"
>
<br
/>
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiacanting'
)
}}
:
<font
style=
"color:red;"
>
{{
subItem
.
DinnerOfferName
}}
(
{{
subItem
.
DinnerOfferPrice
}}
/
{{
$t
(
'hotel.hotel_people'
)
}}
)
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiacanting'
)
}}
:
<font
style=
"color:red;"
>
{{
subItem
.
DinnerOfferName
}}
(
{{
subItem
.
DinnerOfferPrice
}}
<template
v-if=
"subItem.IsDinnerChange"
>
<el-tooltip
:content=
"subItem.DinnerChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"subItem.DinnerChangeValue>0"
>
+
{{
subItem
.
DinnerChangeValue
}}
</
template
>
<
template
v-else
>
{{
subItem
.
DinnerChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
/{{$t('hotel.hotel_people')}})
</font></span>
</template>
</td>
...
...
@@ -230,8 +244,8 @@
{{
$t
(
'salesModule.SureTime'
)
}}
:
</td>
<td
style=
"text-align:left;"
>
<el-date-picker
class=
'w135'
v-model=
"subItem.SureTime"
type=
"date"
:placeholder=
"$t('salesModule.SureTime')"
value-format=
"yyyy-MM-dd"
>
<el-date-picker
class=
'w135'
v-model=
"subItem.SureTime"
type=
"date"
:placeholder=
"$t('salesModule.SureTime')"
value-format=
"yyyy-MM-dd"
>
</el-date-picker>
</td>
</tr>
...
...
@@ -567,7 +581,6 @@
},
err
=>
{});
}
};
</
script
>
<
style
>
...
...
@@ -619,5 +632,4 @@
.bookDinnerStatisticsTalbe
.dinnerTable
tr
td
{
border
:
none
;
}
</
style
>
</
style
>
\ No newline at end of file
src/components/busManagement/BusInfo.vue
View file @
ec393c40
...
...
@@ -156,7 +156,6 @@
line-height
:
34px
;
text-align
:
left
;
}
</
style
>
<
template
>
<div
class=
"flexOne busInfo"
>
...
...
@@ -252,7 +251,20 @@
</span>
<br
/>
</div>
{{
$t
(
'objFill.v101.busManagement.chezhibj'
)
}}
:
<font
style=
"color:red"
>
{{
scope
.
row
.
BusOfferPrice
}}
</font>
{{
$t
(
'objFill.v101.busManagement.chezhibj'
)
}}
:
<font
style=
"color:red"
>
{{
scope
.
row
.
BusOfferPrice
}}
<template
v-if=
"scope.row.IsBusChange"
>
<el-tooltip
:content=
"scope.row.BusChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"scope.row.BusChangeValue>0"
>
+
{{
scope
.
row
.
BusChangeValue
}}
</
template
>
<
template
v-else
>
{{
scope
.
row
.
BusChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
</font>
</template>
</el-table-column>
<!--
...
...
@@ -857,5 +869,4 @@
this
.
getSupplierList
();
}
};
</
script
>
</
script
>
\ No newline at end of file
src/components/scenicSpot/admissionStatisticsDetails.vue
View file @
ec393c40
...
...
@@ -53,7 +53,6 @@
<span
class=
"spanlink"
@
click=
"goUrl('ticketManagement',subItem,'门票管理')"
>
{{
subItem
.
ScenicName
}}
</span>
</td>
</tr>
<tr>
...
...
@@ -75,9 +74,21 @@
</table>
<template
v-if=
"subItem.ScenicOfferPrice&& subItem.ScenicOfferPrice>0"
>
<br
/>
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiajingdian'
)
}}
:
<font
style=
"color:red;"
>
<span
style=
"font-weight:bold;font-size:14px;"
>
{{
$t
(
'objFill.baojiajingdian'
)
}}
:
<font
style=
"color:red;"
>
{{
subItem
.
ScenicOfferName
}}
(
{{
subItem
.
ScenicOfferPrice
}}
/
{{
$t
(
'hotel.hotel_people'
)
}}
)
</font>
(
{{
subItem
.
ScenicOfferPrice
}}
<template
v-if=
"subItem.IsScenicChange"
>
<el-tooltip
:content=
"subItem.ScenicChangeRemark"
>
<font
style=
"color:blue;"
>
<template
v-if=
"subItem.ScenicChangeValue>0"
>
+
{{
subItem
.
ScenicChangeValue
}}
</
template
>
<
template
v-else
>
{{
subItem
.
ScenicChangeValue
}}
</
template
>
</font>
</el-tooltip>
</template>
/{{$t('hotel.hotel_people')}})
</font>
</span>
</template>
</td>
...
...
@@ -321,7 +332,6 @@
this
.
getCurrencyList
();
},
}
</
script
>
<
style
>
.admissionStatisticsDetailsTalbe
{
...
...
@@ -368,5 +378,4 @@
.admissionStatisticsDetailsTalbe
.scenicTable
tr
td
{
border
:
none
;
}
</
style
>
</
style
>
\ No newline at end of file
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