Commit 6393e0d7 authored by zhengke's avatar zhengke

增加跳转

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