Commit 79c0bd1a authored by 黄奎's avatar 黄奎

页面修改

parent d0cc4070
...@@ -232,7 +232,7 @@ ...@@ -232,7 +232,7 @@
msg.TCID = this.$route.query.TCID msg.TCID = this.$route.query.TCID
} }
this.loading = true; this.loading = true;
console.log("msg",msg); console.log("msg", msg);
this.apipost( this.apipost(
"travel_get_GetMyTravelInfo_V4", "travel_get_GetMyTravelInfo_V4",
msg, msg,
...@@ -280,6 +280,7 @@ ...@@ -280,6 +280,7 @@
if (tempData.OutBranchName && tempData.OutBranchName != '') { if (tempData.OutBranchName && tempData.OutBranchName != '') {
this.postData.OutBranchId = Number(tempData.OutBranchId); this.postData.OutBranchId = Number(tempData.OutBranchId);
} }
this.postData.TeamType=tempData.TeamType;
this.postData.OfferPayType = tempData.OfferPayType; this.postData.OfferPayType = tempData.OfferPayType;
this.postData.SaleOfferPayType = tempData.SaleOfferPayType; this.postData.SaleOfferPayType = tempData.SaleOfferPayType;
this.postData.TravelState = tempData.TravelState; this.postData.TravelState = tempData.TravelState;
...@@ -299,33 +300,14 @@ ...@@ -299,33 +300,14 @@
}, },
}, },
created() { created() {
this.postData.OfferId = this.$route.query.offerid > 0 ? this.$route.query.offerid : 0; if (this.$route.query.offerid && this.$route.query.offerid > 0) {
this.getPostData(); this.postData.OfferId = this.$route.query.offerid;
}
//从团控列表跳转信息 //从团控列表跳转信息
// if (this.$route.query.TeamType && this.$route.query.TeamType >= 0) {
// this.postData.TeamType = Number(this.$route.query.TeamType);
// }
if (this.$route.query.TCID && this.$route.query.TCID > 0) { if (this.$route.query.TCID && this.$route.query.TCID > 0) {
this.postData.TCID = this.$route.query.TCID this.postData.TCID = this.$route.query.TCID
} }
// if (this.$route.query.LineID && this.$route.query.LineID > 0) { this.getPostData();
// this.postData.LineId = Number(this.$route.query.LineID);
// }
// if (this.$route.query.ltID && this.$route.query.ltID > 0) {
// this.postData.LineteamId = Number(this.$route.query.ltID);
// }
// if (this.$route.query.DayNum && this.$route.query.DayNum > 0) {
// this.postData.DayNum = this.$route.query.DayNum;
// }
// if (this.$route.query.OutDateTime && this.$route.query.OutDateTime != '') {
// this.postData.OutDateTime = this.$route.query.OutDateTime;
// }
// if (this.$route.query.OutBranchId && this.$route.query.OutBranchId != '') {
// this.postData.OutBranchId = Number(this.$route.query.OutBranchId);
// }
// if (this.$route.query.Title && this.$route.query.Title != '') {
// this.postData.Title = this.$route.query.Title;
// }
//团控列表跳转参数结束 //团控列表跳转参数结束
console.log("this.post", this.postData); console.log("this.post", this.postData);
}, },
......
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