Commit 459dbe9a authored by zhengke's avatar zhengke

修改

parent bc7dead5
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
</template> </template>
<template v-slot:body-cell-Title="props"> <template v-slot:body-cell-Title="props">
<td style="width:400px;"> <td style="width:400px;">
<div v-html="props.row.Title" class="quetion_Title"> <div @click="goDetail(props.row)" v-html="props.row.Title" class="quetion_Title">
</div> </div>
</td> </td>
</template> </template>
...@@ -500,6 +500,12 @@ ...@@ -500,6 +500,12 @@
} }
}); });
}); });
},
//点击跳转
goDetail(item){
this.OpenNewUrl('questionInfo',{
'QuestionId':item.QuestionId
})
} }
} }
} }
......
This diff is collapsed.
...@@ -510,6 +510,11 @@ const routes = [{ ...@@ -510,6 +510,11 @@ const routes = [{
component: () => component: () =>
import("pages/course/question.vue") import("pages/course/question.vue")
}, },
{
path: "/course/questionInfo", //题库详情
component: () =>
import("pages/course/questionInfo.vue")
},
{ {
path: "/sale/quotation", //报价单 path: "/sale/quotation", //报价单
component: () => component: () =>
......
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