Commit 1fb8361d by lxyang

feat: 跳转尝试

parent e2166e7f
......@@ -139,17 +139,7 @@ export const constantRoutes = [
props: {
default: false
}
},
{
component: () => import('@/views/taskList/index'),
meta: {
icon: '',
title: '跟踪文档详情'
},
name: 'taskListIndex',
path: 'taskListIndex',
hidden: true
},
}
// {
// component: () => import('@/views/dataList/putIn/index'),
// meta: {
......@@ -161,92 +151,29 @@ export const constantRoutes = [
// }
]
},
// {
// component: Layout,
// name: '系统管理',
// meta: {
// icon: 'system',
// title: '系统管理'
// },
// path: '/system',
// children: [
// {
// component: () => import('@/views/system/customer/index'),
// meta: {
// icon: '',
// title: '客户管理'
// },
// name: '客户管理',
// path: 'customer'
// },
// {
// path: 'account',
// name: '投放账号管理',
// meta: {
// icon: '',
// title: '投放账号管理'
// },
// component: () => import('@/views/system/account/index'),
// },
// {
// component: () => import('@/views/system/user/index'),
// hidden: true,
// meta: {
// icon: '',
// title: '用户管理'
// },
// name: '用户管理',
// path: 'user'
// },
// // 任务1590隐藏掉运营报告模块(原因:该模块没什么用还存在问题)
// // {
// // component: () => import('@/views/report/operate/index'),
// // meta: {
// // icon: 'user',
// // title: '运营报告'
// // },
// // name: '运营报告',
// // path: 'operate'
// // },
// {
// component: () => import('@/views/system/authority'),
// meta: {
// icon: '',
// title: '权限配置'
// },
// name: '权限配置',
// path: 'authority'
// },
// {
// component: () => import('@/views/system/popupotice'),
// meta: {
// icon: '',
// title: '上线公告管理'
// },
// name: '上线公告管理',
// path: 'popUpnOtice'
// },
// {
// component: () => import('@/views/system/creativeInspirationAccount'),
// meta: {
// icon: '',
// title: '可见创意灵感账号'
// },
// name: '可见创意灵感账号',
// path: 'creativeInspirationAccount'
// },
// {
// component: () => import('@/views/system/collectionData'),
// meta: {
// icon: '',
// title: '收数服务配置'
// },
// name: '收数服务配置',
// path: 'collectionData'
// }
// ]
// },
{
component: Layout,
name: '跟踪文档详情',
meta: {
icon: 'system',
title: '跟踪文档详情'
},
path: '/taskList',
children: [
{
component: () => import('@/views/taskList/index'),
meta: {
icon: '',
title: '跟踪文档详情'
},
name: 'taskListIndex',
path: 'taskListIndex',
props: {
default: false
}
},
]
},
// {
// component: Layout,
// meta: {
......
......@@ -85,7 +85,7 @@ export default {
// 返回跟踪文档
blackTaskList() {
this.$router.push({
path: '/documentManagement/taskList'
path: '/documentManagement/tailAfter'
})
},
dateFilter(time) {
......
......@@ -323,8 +323,8 @@ export default {
routerTaskListDetails(row) {
try {
this.$router.push({
name: 'taskListIndex',
params: {
path: 'taskList/taskListIndex',
query: {
id: row.docDocumentId,
name: row.name
}
......
......@@ -63,10 +63,10 @@ export default {
watch: {
},
created() {
this.init()
this.$nextTick(() => {
this.tableHeight();
})
// this.init()
// this.$nextTick(() => {
// this.tableHeight();
// })
},
computed: {
// 计算过的height
......@@ -77,8 +77,8 @@ export default {
methods: {
// 初始化
init() {
let name = this.$route.params.name
let id = this.$route.params.id
let name = this.$route.query.name
let id = this.$route.query.id
let taskListIndexTitle = localStorage.getItem("taskListIndexTitle")
let taskListIndexId = localStorage.getItem("taskListIndexId")
if (name || id) {
......
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