Commit 3b9ee8d4 authored by 黄奎's avatar 黄奎

页面修改

parent 5ed49ee4
...@@ -1555,14 +1555,15 @@ ...@@ -1555,14 +1555,15 @@
tab: '报价单' tab: '报价单'
} }
if(type){//新增报价单 if(type){//新增报价单
query.TeamType = 0 query.TeamType = item.TeamType;
query.TCID = item.TCID query.TCID = item.TCID;
query.LineID = item.LineID query.LineID = item.LineID;
query.ltID = item.ltID query.ltID = item.ltID;
query.DayNum = item.DayNum query.DayNum = item.DayNum;
query.OutDateTime = item.StartCityTime query.OutDateTime = item.StartCityTime;
query.OutBranchId = item.OutBranchId query.OutBranchId = item.OutBranchId;
query.ForbidChange = true query.ForbidChange = true;
query.Title=item.Title;
this.$router.push({ this.$router.push({
path: name, path: name,
query query
......
...@@ -311,9 +311,12 @@ ...@@ -311,9 +311,12 @@
if (this.$route.query.OutDateTime && this.$route.query.OutDateTime != '') { if (this.$route.query.OutDateTime && this.$route.query.OutDateTime != '') {
this.postData.OutDateTime = this.$route.query.OutDateTime; this.postData.OutDateTime = this.$route.query.OutDateTime;
} }
if (this.$route.query.OutBranchId && this.$route.query.OutBranchId > 0) { if (this.$route.query.OutBranchId) {
this.postData.OutBranchId = Number(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