Commit 365f1d65 authored by 沈良进's avatar 沈良进
parents 419b18f3 2f17fd63
...@@ -2055,7 +2055,7 @@ ...@@ -2055,7 +2055,7 @@
}, },
//跳转到团控列表 //跳转到团控列表
gotoTravelList(item) { gotoTravelList(item) {
var path = "/TravelControlList"; var path = "";
//小包团 //小包团
if (item.TeamType == 1) { if (item.TeamType == 1) {
path = "/TravelControlListSale"; path = "/TravelControlListSale";
...@@ -2071,6 +2071,8 @@ ...@@ -2071,6 +2071,8 @@
//包机 //包机
else if (item.TeamType == 4) { else if (item.TeamType == 4) {
path = "/TravelTeam"; path = "/TravelTeam";
}else{
path = "/TravelControlList";
} }
var params = { var params = {
tcmun: item.TCNUM tcmun: item.TCNUM
......
...@@ -1564,14 +1564,17 @@ ...@@ -1564,14 +1564,17 @@
this.queryMsg = this.$store.state.pageCondition; this.queryMsg = this.$store.state.pageCondition;
} }
} }
var myDate = new Date(); if(!this.$route.query.tcmun){
var nowDate = var myDate = new Date();
myDate.getFullYear() + var nowDate =
"-" + myDate.getFullYear() +
parseInt(myDate.getMonth() + 1) + "-" +
"-" + parseInt(myDate.getMonth() + 1) +
myDate.getDate(); "-" +
this.queryMsg.StartGroupDate = nowDate; myDate.getDate();
this.queryMsg.StartGroupDate = nowDate;
}
if ( if (
this.queryCommonData.IsParentCompany != 1 && this.queryCommonData.IsParentCompany != 1 &&
userInfo.RB_Branch_id != 49 userInfo.RB_Branch_id != 49
......
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