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
2d2a1f83
Commit
2d2a1f83
authored
Jul 31, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
0b5e07c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
50 deletions
+20
-50
CostNewPriceMun.vue
...ents/TravelManager/TravelNewQuotation/CostNewPriceMun.vue
+14
-45
QuotationNewPrice.vue
...ts/TravelManager/TravelNewQuotation/QuotationNewPrice.vue
+6
-5
No files found.
src/components/TravelManager/TravelNewQuotation/CostNewPriceMun.vue
View file @
2d2a1f83
...
...
@@ -162,50 +162,13 @@
</td>
</tr>
</table>
<div
class=
"seat-box"
style=
"display:none;"
>
<div
class=
"left"
style=
"float:left;margin:6px 0 0 64px;"
>
座位
</div>
<div
class=
"right"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
prop=
"YSeat"
>
<el-input
placeholder=
"人数"
v-model=
"postConfig.YSeat"
maxlength=
"2"
@
keyup
.
native=
"checkInteger(postConfig,'YSeat')"
>
<
template
slot=
"prepend"
>
经济舱/上铺
</
template
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
prop=
"CSeat"
>
<el-input
placeholder=
"人数"
v-model=
"postConfig.CSeat"
maxlength=
"2"
@
keyup
.
native=
"checkInteger(postConfig,'CSeat')"
>
<
template
slot=
"prepend"
>
商务舱/中铺
</
template
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
prop=
"FSeat"
>
<el-input
placeholder=
"人数"
v-model=
"postConfig.FSeat"
maxlength=
"2"
@
keyup
.
native=
"checkInteger(postConfig,'FSeat')"
>
<
template
slot=
"prepend"
>
头等舱/下铺
</
template
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item>
<el-input
placeholder=
"人数"
v-model=
"postConfig.LowNum"
maxlength=
"2"
>
<
template
slot=
"prepend"
>
最低成团人数
</
template
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
</div>
</div>
<br
/>
<!--去掉删除功能 closable @close="handleClose(index)"-->
<el-tag
v-for=
"(item, index) in orderList"
:key=
"index"
style=
"margin-right: 10px;margin-bottom: 10px; cursor: pointer;"
:type=
"index ===tabsActive ? '':'info'"
@
click=
"selectTag(index)"
:disable-transitions=
"false"
>
@
click=
"selectTag(index)"
:disable-transitions=
"false"
>
{{`报价单${index + 1}${item.queryMsg.IsDefault ? '(默认)' : ''}`}}
</el-tag>
<!--HK2023-07-28 注释-->
...
...
@@ -246,8 +209,7 @@
CostNumberList
:
[]
},
orderList
:
[],
//下拉框默认值
defaultSelect
:
0
,
queryMsg
:
{
IsDefault
:
false
,
//汇率输入
...
...
@@ -255,9 +217,7 @@
//人数
PeopleNumber
:
""
},
//币种下拉
currencyType
:
""
,
checkedPei
:
[],
LineTeamList
:
[],
//系列下拉列表
companyList
:
[],
//出团公司
teamList
:
[],
...
...
@@ -374,8 +334,9 @@
},
createDayTripPrice
()
{
for
(
let
i
=
0
;
i
<
this
.
orderList
.
length
;
i
++
)
{
this
.
orderList
[
i
].
dayCostPrice
=
this
.
createDayTripPriceItem
([...
this
.
orderList
[
i
].
dayCostPrice
])
this
.
orderList
[
i
].
dayCostPrice
=
this
.
createDayTripPriceItem
([...
this
.
orderList
[
i
].
dayCostPrice
])
;
}
this
.
$forceUpdate
()
},
//生成行程报价
createDayTripPriceItem
(
dayCostPrice
)
{
...
...
@@ -400,6 +361,14 @@
HotelName
:
""
,
//酒店名称
RebatePrice
:
0
,
//回佣
OtherPrice
:
0
,
//其它费用(保险、司导杂费等)
DinnerIds
:
""
,
//晚餐Id
DinnerName
:
""
,
//晚餐名称
LunchIds
:
""
,
//午餐编号
LunchName
:
""
,
//午餐名称
TicketIds
:
""
,
//景点编号
TicketName
:
""
,
//景点名称
OtherName
:
""
,
//其它杂支名称
BreakfastName
:
""
,
//早餐名称
};
dayCostPrice
.
push
(
dayItem
);
}
...
...
src/components/TravelManager/TravelNewQuotation/QuotationNewPrice.vue
View file @
2d2a1f83
<
template
>
<div
class=
"DirectQuotation clearfix"
v-loading=
"loading"
>
<DirectQuotation
v-if=
"haveData"
ref=
"QuotationPrice"
:OfferArray=
"OfferArray"
:postConfig=
"postData"
<Direct
New
Quotation
v-if=
"haveData"
ref=
"QuotationPrice"
:OfferArray=
"OfferArray"
:postConfig=
"postData"
:dayCostPrice=
"dayCostPriceList"
:otherPrice=
"otherPrice"
:teamPrice=
"teamPrice"
:LineList=
"LineList"
:CostCurrencyList=
"CostCurrencyList"
:CostNumberList=
"CostNumberList"
:CurrencyNumberListExt=
"CurrencyNumberListExt"
></DirectQuotation>
:CurrencyNumberListExt=
"CurrencyNumberListExt"
></Direct
New
Quotation>
<div
class=
"btnFixedDiv"
v-if=
"haveData"
>
<div
class=
"toTop"
>
<i
class=
"iconfont icon-huidaodingbu"
></i>
...
...
@@ -18,8 +18,8 @@
</div>
</
template
>
<
script
>
import
Vue
from
'Vue'
import
DirectQuotation
from
"../TravelNewQuotation/DirectNewQuotation"
;
import
Direct
New
Quotation
from
"../TravelNewQuotation/DirectNewQuotation"
;
export
default
{
data
()
{
return
{
...
...
@@ -228,6 +228,7 @@
msg
,
res
=>
{
this
.
loading
=
false
;
console
.
log
(
"travel_get_GetMyTravelInfo_V3"
,
res
.
data
);
if
(
res
.
data
.
resultCode
==
1
)
{
var
tempData
=
res
.
data
.
data
;
if
(
tempData
.
ID
&&
tempData
.
ID
>
0
)
{
...
...
@@ -289,7 +290,7 @@
this
.
getPostData
();
},
components
:
{
Direct
Quotation
:
Direct
Quotation
Direct
NewQuotation
:
DirectNew
Quotation
}
};
...
...
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