Commit 6393e0d7 authored by zhengke's avatar zhengke

增加跳转

parent 263c8da2
......@@ -291,6 +291,11 @@
.page_bdm .yixuanze_money{
float: right;
}
.FD_yijian{
margin-left:20px;
cursor:pointer;
text-decoration: underline;
}
</style>
<template>
......@@ -321,7 +326,7 @@
<tr v-for="(o,ox) in GetDetail.TCIDAndTCNUMList" class="_fujiashuoming_tr">
<td :colspan="3">
{{o.TCNUM}}({{o.TCID}})
<span v-if="GetDetail.IsShowPlanUrl === 1" style="margin-left:20px;">旅客意见/{{o.GuestSurveyNum}}份</span>
<span v-if="GetDetail.IsShowPlanUrl === 1" @click="goInves('investigationList',o.TCID)" class="FD_yijian">旅客意见/{{o.GuestSurveyNum}}份</span>
</td>
<td @click="jumpPage('TravelControlList',o.TCNUM,1)"> <span class="_jump_page _font_bold">查看团队</span> </td>
<td @click="jumpPage('RegistrationList',o.TCID,7)"> <span class="_jump_page _font_bold">查看报名</span> </td>
......@@ -2457,7 +2462,15 @@ export default {
blank: "y"
}
});
}
},
goInves(path,TCID){
this.$router.push({
name: path,
query: {
TCID:TCID,
}
});
},
},created(){
if(this.$route.query.pageIndex){
this.pageIndex = this.$route.query.pageIndex;
......
......@@ -365,6 +365,11 @@
display: inline-block;
width:90%;
}
.FD_yijian{
margin-left:20px;
cursor:pointer;
text-decoration: underline;
}
</style>
<template>
......@@ -385,7 +390,7 @@
<td :colspan="4" v-if="GetDetail.Is_Merge===1">单据号:{{o.FinanceId}}</td>
<td :colspan="3">
{{o.TCNUM}}{{o.TCID}}
<span v-if="GetDetail.IsShowPlanUrl === 1" style="margin-left:20px;">旅客意见/{{o.GuestSurveyNum}}</span>
<span v-if="GetDetail.IsShowPlanUrl === 1" @click="goInves('investigationList',o.TCID)" class="FD_yijian">旅客意见/{{o.GuestSurveyNum}}</span>
</td>
<td @click="jumpPage('TravelControlList',o.TCNUM,1)"> <span class="_jump_page _font_bold">查看团队</span> </td>
<td @click="jumpPage('RegistrationList',o.TCID,7)"> <span class="_jump_page _font_bold">查看报名</span> </td>
......@@ -963,6 +968,14 @@ export default {
}
});
},
goInves(path,TCID){
this.$router.push({
name: path,
query: {
TCID:TCID,
}
});
},
inited (viewer){
this.$viewer = viewer
},
......
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