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

11

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