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

1

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