Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
document-management
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ry-istanbul-web
document-management
Commits
1fb8361d
Commit
1fb8361d
authored
Nov 26, 2022
by
lxyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 跳转尝试
parent
e2166e7f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
106 deletions
+33
-106
index.js
src/router/index.js
+24
-97
index.vue
src/views/dataList/product/index.vue
+1
-1
index.vue
src/views/system/customer/index.vue
+2
-2
index.vue
src/views/taskList/index.vue
+6
-6
No files found.
src/router/index.js
View file @
1fb8361d
...
...
@@ -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: {
...
...
src/views/dataList/product/index.vue
View file @
1fb8361d
...
...
@@ -85,7 +85,7 @@ export default {
// 返回跟踪文档
blackTaskList
()
{
this
.
$router
.
push
({
path
:
'/documentManagement/ta
skList
'
path
:
'/documentManagement/ta
ilAfter
'
})
},
dateFilter
(
time
)
{
...
...
src/views/system/customer/index.vue
View file @
1fb8361d
...
...
@@ -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
}
...
...
src/views/taskList/index.vue
View file @
1fb8361d
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment