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

页面修改

parent d7832d10
......@@ -1919,7 +1919,9 @@
if (this.$route.query.tcmun) {
this.queryMsg.TCNUM = this.$route.query.tcmun;
}
if (this.$route.query.TCID) {
this.queryMsg.TCID = this.$route.query.TCID;
}
if (userInfo.IsParentCompany == undefined) {
this.queryCommonData.IsParentCompany = 2;
} else {
......
......@@ -317,24 +317,34 @@
this.Error(res.data.message);
}
this.loading = false
}
);
});
},
goTravel(item) { //跳转到团队列表
var newPath = "TravelControlList";
var query = {
TCID: item.TCID,
blank: 'y',
tab: '团控列表'
};
if (item.TeamType == 1) {
newPath = "TravelControlListSale"
newPath = "TravelControlListSale";
query = {
TCID: item.TCID,
blank: 'y',
tab: '团控列表'
};
}
if (item.TeamType == 2) {
newPath = "oneDayTrip"
}
this.$router.push({
path: newPath,
query: {
TCID: item.TCID,
newPath = "oneDayTrip";
query = {
id: item.TCID,
blank: 'y',
tab: '团控列表'
};
}
this.$router.push({
path: newPath,
query: query
});
}
}
......
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