update:添加征求管理意见的界面
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -59,8 +59,11 @@
|
||||
<el-table-column
|
||||
prop="oldStandNum"
|
||||
label="类别"
|
||||
align="center"
|
||||
>
|
||||
align="center">
|
||||
<template slot-scope="scope">
|
||||
<a @click="oldPreview(scope.row)" class="table-jump">{{ scope.row.oldStandNum }}</a>
|
||||
</template>
|
||||
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="oldStandName"
|
||||
@@ -176,6 +179,9 @@ export default {
|
||||
case '查看':
|
||||
this.handlePreview(command[0])
|
||||
break
|
||||
case '查看类别':
|
||||
this.oldPreview(command[0])
|
||||
break
|
||||
case '收藏':
|
||||
this.collectInfo(command[0])
|
||||
break
|
||||
@@ -275,13 +281,23 @@ export default {
|
||||
},
|
||||
// 点击查看
|
||||
handlePreview (item) {
|
||||
let routeUrl = this.$router.resolve({
|
||||
name: 'consultationDetails',
|
||||
params: {
|
||||
id: item.id,
|
||||
pageType: 'INLAND_STAND'
|
||||
}
|
||||
})
|
||||
let routeUrl = this.$router.resolve({
|
||||
name: 'consultationDetails',
|
||||
params: {
|
||||
id: item.id,
|
||||
pageType: 'INLAND_STAND'
|
||||
}
|
||||
})
|
||||
window.open(routeUrl.href, '_blank')
|
||||
},
|
||||
oldPreview (item) {
|
||||
let routeUrl = this.$router.resolve({
|
||||
name: 'categoryDetails',
|
||||
params: {
|
||||
id: item.id,
|
||||
pageType: 'INLAND_STAND'
|
||||
}
|
||||
})
|
||||
window.open(routeUrl.href, '_blank')
|
||||
},
|
||||
// handlePreview (params) {
|
||||
|
||||
@@ -2409,6 +2409,18 @@ const routes = [
|
||||
menuId: ''
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/categoryDetails/:id/:pageType',
|
||||
name: 'categoryDetails',
|
||||
component: () =>
|
||||
import('@/pages/details/categoryDetails/index'),
|
||||
meta: {
|
||||
requireAuth: true,
|
||||
title: '管理征求意见',
|
||||
isBoolean: true,
|
||||
menuId: ''
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/standInvolveProjectTwo',
|
||||
name: 'standInvolveProjectTwo',
|
||||
|
||||
Reference in New Issue
Block a user