Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
Project
Project
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
Administrator
dsk-cr20g
Commits
e8c7d61d
Commit
e8c7d61d
authored
Jun 08, 2023
by
xiongjinke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
73d0bc89
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
6 deletions
+16
-6
gjjl.vue
...erate-ui/src/views/project/projectList/component/gjjl.vue
+5
-1
zlwd.vue
...erate-ui/src/views/project/projectList/component/zlwd.vue
+11
-5
No files found.
dsk-operate-ui/src/views/project/projectList/component/gjjl.vue
View file @
e8c7d61d
...
...
@@ -133,6 +133,10 @@
type
:
String
,
default
:
""
},
detailId
:
{
//从企业详情跳转过来ID
type
:
Number
,
default
:
0
},
datas
:[],
//数据源
},
name
:
'gjjl'
,
...
...
@@ -157,7 +161,7 @@
recordlist
:[],
//列表数据源
isdel
:
false
,
delID
:
''
,
//删除记录的ID
projectId
:
parseInt
(
this
.
$route
.
query
.
id
),
//项目详情id
projectId
:
this
.
detailId
?
this
.
detailId
:
parseInt
(
this
.
$route
.
query
.
id
),
//项目详情id
userId
:
this
.
$store
.
state
.
user
.
userId
,
//当前用户id
projectList
:[],
//关联项目
}
...
...
dsk-operate-ui/src/views/project/projectList/component/zlwd.vue
View file @
e8c7d61d
...
...
@@ -123,6 +123,12 @@
import
{
getZLWD
,
delZLWD
}
from
"@/api/project/project"
;
export
default
{
name
:
'zlwd'
,
props
:
{
detailId
:
{
//从企业详情跳转过来ID
type
:
Number
,
default
:
0
}
},
data
(){
return
{
isupload
:
false
,
...
...
@@ -132,12 +138,12 @@
fileList
:
[],
headers
:
{
Authorization
:
"Bearer "
+
getToken
(),
filePath
:
this
.
$route
.
query
.
id
,
filePath
:
this
.
detailId
?
this
.
detailId
:
this
.
$route
.
query
.
id
,
},
param
:{
pageNum
:
1
,
pagesize
:
20
,
filePath
:
this
.
$route
.
query
.
id
,
filePath
:
this
.
detailId
?
this
.
detailId
:
this
.
$route
.
query
.
id
,
keyword
:
''
,
},
fileDatas
:[],
...
...
@@ -151,9 +157,9 @@
},
methods
:{
getall
(){
this
.
param
.
filePath
=
this
.
$route
.
query
.
id
this
.
param
.
filePath
=
this
.
detailId
?
this
.
detailId
:
this
.
$route
.
query
.
id
this
.
filename
=
''
this
.
headers
.
filePath
=
this
.
$route
.
query
.
id
this
.
headers
.
filePath
=
this
.
detailId
?
this
.
detailId
:
this
.
$route
.
query
.
id
this
.
handleCurrentChange
(
1
)
},
getList
(){
...
...
@@ -176,7 +182,7 @@
getFile
(
row
){
if
(
row
.
type
==
'file'
){
this
.
filename
=
row
.
name
this
.
headers
.
filePath
=
this
.
$route
.
query
.
id
+
'/'
+
row
.
name
this
.
headers
.
filePath
=
this
.
detailId
?
this
.
detailId
:
this
.
$route
.
query
.
id
+
'/'
+
row
.
name
this
.
param
.
filePath
=
row
.
filePath
this
.
handleCurrentChange
(
1
)
...
...
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