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
947f9675
Commit
947f9675
authored
Nov 26, 2022
by
lxyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:修改传参数方式
parent
93039060
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
index.vue
src/views/system/customer/index.vue
+2
-2
index.vue
src/views/taskList/index.vue
+13
-3
No files found.
src/views/system/customer/index.vue
View file @
947f9675
...
...
@@ -323,8 +323,8 @@ export default {
routerTaskListDetails
(
row
)
{
try
{
this
.
$router
.
push
({
path
:
'/documentManagement/
taskListIndex'
,
query
:
{
name
:
'
taskListIndex'
,
params
:
{
id
:
row
.
docDocumentId
,
name
:
row
.
name
}
...
...
src/views/taskList/index.vue
View file @
947f9675
...
...
@@ -77,9 +77,19 @@ export default {
methods
:
{
// 初始化
init
()
{
console
.
log
(
this
.
$route
.
query
,
'this.$route.query'
)
this
.
title
=
this
.
$route
.
query
.
name
this
.
deleteId
=
this
.
$route
.
query
.
id
let
name
=
this
.
$route
.
params
.
name
let
id
=
this
.
$route
.
params
.
id
let
taskListIndexTitle
=
localStorage
.
getItem
(
"taskListIndexTitle"
)
let
taskListIndexId
=
localStorage
.
getItem
(
"taskListIndexId"
)
if
(
name
||
id
)
{
this
.
title
=
name
this
.
deleteId
=
id
localStorage
.
setItem
(
"taskListIndexTitle"
,
name
)
localStorage
.
setItem
(
"taskListIndexId"
,
id
)
}
else
if
(
taskListIndexTitle
||
taskListIndexId
)
{
this
.
title
=
taskListIndexTitle
this
.
deleteId
=
taskListIndexId
}
this
.
searchCustomer
()
},
// 返回跟踪文档
...
...
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