Commit 4147fe27 authored by 黄奎's avatar 黄奎

11

parent cf5d7d07
...@@ -1934,6 +1934,7 @@ ...@@ -1934,6 +1934,7 @@
import priceDialog from "../TravelNewQuotation/priceDialog.vue"; import priceDialog from "../TravelNewQuotation/priceDialog.vue";
import EditLeaveGroup from "./components/EditLeaveGroup.vue"; import EditLeaveGroup from "./components/EditLeaveGroup.vue";
import DateLimit from "../../public/DateLimit.vue"; import DateLimit from "../../public/DateLimit.vue";
import comChooseTrip from "../../commonPage/comChooseTrip.vue";
export default { export default {
components: { components: {
commonBusInfo, commonBusInfo,
...@@ -1942,6 +1943,7 @@ ...@@ -1942,6 +1943,7 @@
priceDialog, priceDialog,
EditLeaveGroup, EditLeaveGroup,
DateLimit, DateLimit,
comChooseTrip,
}, },
provide() { provide() {
return { return {
......
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
AssistantList: [], //助理OP AssistantList: [], //助理OP
PriceTeamType: 0, //团队类型, PriceTeamType: 0, //团队类型,
PriceTeamTypeName: "", //团队类型, PriceTeamTypeName: "", //团队类型,
OfferArray:[],
}, },
pMsg: { pMsg: {
offerId: 0, offerId: 0,
...@@ -127,7 +128,7 @@ ...@@ -127,7 +128,7 @@
this.haveData = false; this.haveData = false;
this.loading = true; this.loading = true;
this.apipost( this.apipost(
"travel_get_GetMyTravelInfo_V5", "travel_get_PriceOfferInfo",
this.pMsg, this.pMsg,
res => { res => {
this.loading = false; this.loading = false;
...@@ -222,9 +223,7 @@ ...@@ -222,9 +223,7 @@
this.postData.PriceTeamTypeName = tempData.PriceTeamTypeName; this.postData.PriceTeamTypeName = tempData.PriceTeamTypeName;
this.postData.PriceTeamType = tempData.PriceTeamType; this.postData.PriceTeamType = tempData.PriceTeamType;
if (tempData.OfferArray) { if (tempData.OfferArray) {
tempData.OfferArray.forEach(item => { this.postData.OfferArray = tempData.OfferArray;
this.OfferArray.push(item)
})
} }
this.haveData = true; this.haveData = true;
} else { } else {
...@@ -242,9 +241,6 @@ ...@@ -242,9 +241,6 @@
if (this.$route.query.offerid) { if (this.$route.query.offerid) {
this.pMsg.offerId = this.$route.query.offerid; this.pMsg.offerId = this.$route.query.offerid;
} }
// if (this.$route.query.BatchNum) {
// this.pMsg.BatchNum = this.$route.query.BatchNum;
// }
this.getPostData(); this.getPostData();
}, },
components: { components: {
......
...@@ -255,7 +255,6 @@ ...@@ -255,7 +255,6 @@
this.postData.PriceTeamType = tempData.PriceTeamType; this.postData.PriceTeamType = tempData.PriceTeamType;
if (tempData.OfferArray) { if (tempData.OfferArray) {
this.postData.OfferArray = tempData.OfferArray; this.postData.OfferArray = tempData.OfferArray;
} }
this.haveData = true; this.haveData = true;
} else { } else {
......
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