Commit 614439bb authored by 吴春's avatar 吴春

1

parent 2933919e
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
GetDayStr(dateStr, dayNum) { GetDayStr(dateStr, dayNum) {
return this.$commonUtils.AddDay(dateStr, dayNum); return this.$commonUtils.AddDay(dateStr, dayNum);
}, },
GetTrip(id, TCID) { GetTrip(id, TCID,type) {
this.tripList = []; this.tripList = [];
this.startDate = ''; this.startDate = '';
var nTCID = 0; var nTCID = 0;
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
var msg = { var msg = {
configId: id, configId: id,
tcid: nTCID, tcid: nTCID,
isClick: 1 //不算统计 isClick: type==2?0:1 //不算统计
}; };
if (id !== undefined) { if (id !== undefined) {
//根据ID 获取行程内容 //根据ID 获取行程内容
......
...@@ -1198,8 +1198,11 @@ ...@@ -1198,8 +1198,11 @@
getJourney(id, TCID, title) { getJourney(id, TCID, title) {
var that = this; var that = this;
this.tripTitle = title; this.tripTitle = title;
console.log("id",id);
console.log("TCID",TCID);
this.$nextTick(() => { this.$nextTick(() => {
that.$refs.comTeam.GetTrip(id, TCID); that.$refs.comTeam.GetTrip(id, TCID,2);
}); });
that.outerVisible = true; that.outerVisible = true;
}, },
......
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