Commit 2d2a1f83 authored by 黄奎's avatar 黄奎

页面修改

parent 0b5e07c5
......@@ -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);
}
......
<template>
<div class="DirectQuotation clearfix" v-loading="loading">
<DirectQuotation v-if="haveData" ref="QuotationPrice" :OfferArray="OfferArray" :postConfig="postData"
<DirectNewQuotation 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"></DirectNewQuotation>
<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 DirectNewQuotation 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: {
DirectQuotation: DirectQuotation
DirectNewQuotation: DirectNewQuotation
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment