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
fd5bd877
Commit
fd5bd877
authored
Nov 26, 2022
by
lxyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:跳转问题修改
parent
ada2b6a6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
15 deletions
+14
-15
product.js
src/api/system/product.js
+1
-1
index.vue
src/views/dataList/product/index.vue
+2
-7
index.vue
src/views/system/customer/index.vue
+11
-7
No files found.
src/api/system/product.js
View file @
fd5bd877
...
...
@@ -2,7 +2,7 @@ import request from '@/utils/request'
// 文档差异
export
function
doctaskFinddifference
(
data
)
{
return
request
({
url
:
'/api/doc/doctask/finddifference/'
+
data
+
'&pageindex=1&pagesize=999'
,
url
:
'/api/doc/doctask/finddifference/'
+
data
+
'
?
&pageindex=1&pagesize=999'
,
method
:
'get'
})
}
...
...
src/views/dataList/product/index.vue
View file @
fd5bd877
...
...
@@ -46,16 +46,10 @@
</
template
>
<
script
>
//
//
接口调用方法
// 接口调用方法
import
{
doctaskFinddifference
}
from
"@/api/system/product"
;
// // 克隆方法
// import {
// deepClone
// } from "@/utils/index";
// // 下载方法
// import { hackDownloadFileNew } from "@/utils/ruoyi";
export
default
{
data
()
{
return
{
...
...
@@ -83,6 +77,7 @@ export default {
methods
:
{
// 初始化
init
()
{
console
.
log
(
this
.
$route
.
query
,
'this.$route.query'
)
this
.
title
=
this
.
$route
.
query
.
name
this
.
deleteId
=
this
.
$route
.
query
.
id
this
.
searchCustomer
()
...
...
src/views/system/customer/index.vue
View file @
fd5bd877
...
...
@@ -321,13 +321,17 @@ export default {
},
// 跳转跟踪文档详情界面
routerTaskListDetails
(
row
)
{
this
.
$router
.
push
({
path
:
'/documentManagement/taskListDetails'
,
query
:
{
id
:
row
.
docDocumentId
,
name
:
row
.
name
}
})
try
{
this
.
$router
.
push
({
name
:
'taskListDetails'
,
query
:
{
id
:
row
.
docDocumentId
,
name
:
row
.
name
}
})
}
catch
(
err
)
{
console
.
log
(
err
)
}
},
// table显示内容
isEmpty
(
row
,
name
)
{
...
...
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