Commit 1fb8361d by lxyang

feat: 跳转尝试

parent e2166e7f
...@@ -139,17 +139,7 @@ export const constantRoutes = [ ...@@ -139,17 +139,7 @@ export const constantRoutes = [
props: { props: {
default: false default: false
} }
}, }
{
component: () => import('@/views/taskList/index'),
meta: {
icon: '',
title: '跟踪文档详情'
},
name: 'taskListIndex',
path: 'taskListIndex',
hidden: true
},
// { // {
// component: () => import('@/views/dataList/putIn/index'), // component: () => import('@/views/dataList/putIn/index'),
// meta: { // meta: {
...@@ -161,92 +151,29 @@ export const constantRoutes = [ ...@@ -161,92 +151,29 @@ export const constantRoutes = [
// } // }
] ]
}, },
// { {
// component: Layout, component: Layout,
// name: '系统管理', name: '跟踪文档详情',
// meta: { meta: {
// icon: 'system', icon: 'system',
// title: '系统管理' title: '跟踪文档详情'
// }, },
// path: '/system', path: '/taskList',
// children: [ children: [
// { {
// component: () => import('@/views/system/customer/index'), component: () => import('@/views/taskList/index'),
// meta: { meta: {
// icon: '', icon: '',
// title: '客户管理' title: '跟踪文档详情'
// }, },
// name: '客户管理', name: 'taskListIndex',
// path: 'customer' path: 'taskListIndex',
// }, props: {
// { default: false
// 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, // component: Layout,
// meta: { // meta: {
......
...@@ -85,7 +85,7 @@ export default { ...@@ -85,7 +85,7 @@ export default {
// 返回跟踪文档 // 返回跟踪文档
blackTaskList() { blackTaskList() {
this.$router.push({ this.$router.push({
path: '/documentManagement/taskList' path: '/documentManagement/tailAfter'
}) })
}, },
dateFilter(time) { dateFilter(time) {
......
...@@ -323,8 +323,8 @@ export default { ...@@ -323,8 +323,8 @@ export default {
routerTaskListDetails(row) { routerTaskListDetails(row) {
try { try {
this.$router.push({ this.$router.push({
name: 'taskListIndex', path: 'taskList/taskListIndex',
params: { query: {
id: row.docDocumentId, id: row.docDocumentId,
name: row.name name: row.name
} }
......
...@@ -63,10 +63,10 @@ export default { ...@@ -63,10 +63,10 @@ export default {
watch: { watch: {
}, },
created() { created() {
this.init() // this.init()
this.$nextTick(() => { // this.$nextTick(() => {
this.tableHeight(); // this.tableHeight();
}) // })
}, },
computed: { computed: {
// 计算过的height // 计算过的height
...@@ -77,8 +77,8 @@ export default { ...@@ -77,8 +77,8 @@ export default {
methods: { methods: {
// 初始化 // 初始化
init() { init() {
let name = this.$route.params.name let name = this.$route.query.name
let id = this.$route.params.id let id = this.$route.query.id
let taskListIndexTitle = localStorage.getItem("taskListIndexTitle") let taskListIndexTitle = localStorage.getItem("taskListIndexTitle")
let taskListIndexId = localStorage.getItem("taskListIndexId") let taskListIndexId = localStorage.getItem("taskListIndexId")
if (name || id) { 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