Commit 01dc29a2 authored by youjie's avatar youjie

小包团,一日游

parent 213ab183
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<p>{{scope.row.OutBranchName}}</p> <p>{{scope.row.OutBranchName}}</p>
<span style="cursor: pointer;text-decoration: underline;" <span style="cursor: pointer;text-decoration: underline;"
@click="goTravel(scope.row.TCID)">{{scope.row.TCNUM}}({{scope.row.TCID}})</span> @click="goTravel(scope.row.TCID,scope.row.TeamType)">{{scope.row.TCNUM}}({{scope.row.TCID}})</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
...@@ -558,9 +558,12 @@ ...@@ -558,9 +558,12 @@
err => { } err => { }
); );
}, },
goTravel(TCID){//跳转到团队列表 goTravel(TCID,type){//跳转到团队列表
let path = 'TravelControlList'
if(type==1) path = 'TravelControlListSale'
if(type==2) path = 'oneDayTrip'
this.$router.push({ this.$router.push({
path: 'TravelControlList', path: path,
query: { query: {
TCID: TCID, TCID: TCID,
blank: 'y', blank: 'y',
......
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