Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apaas-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gzga-jzapi
apaas-ui
Commits
6166798a
Commit
6166798a
authored
Jun 23, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
服务管理列表和应用管理列表fixed
parent
6773d688
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
src/pages/workbench/fwgl/fwglList.vue
src/pages/workbench/fwgl/fwglList.vue
+10
-2
src/pages/workbench/yygl/yyglList.vue
src/pages/workbench/yygl/yyglList.vue
+8
-4
No files found.
src/pages/workbench/fwgl/fwglList.vue
View file @
6166798a
...
...
@@ -509,7 +509,11 @@ export default {
(
item
.
service_apply_info
&&
item
.
service_apply_info
.
approval_time
)
||
""
;
return
helper
.
dateStringTransform
(
date
);
return
item
.
service_apply_info
&&
item
.
service_apply_info
.
approval_status
==
1
?
helper
.
dateStringTransform
(
date
)
:
"
-
"
;
},
align
:
"
center
"
,
},
...
...
@@ -778,7 +782,11 @@ export default {
(
item
.
service_apply_info
&&
item
.
service_apply_info
.
approval_time
)
||
""
;
return
helper
.
dateStringTransform
(
date
);
return
item
.
service_apply_info
&&
item
.
service_apply_info
.
approval_status
==
1
?
helper
.
dateStringTransform
(
date
)
:
"
-
"
;
},
align
:
"
center
"
,
},
...
...
src/pages/workbench/yygl/yyglList.vue
View file @
6166798a
...
...
@@ -1207,9 +1207,13 @@ export default {
this
.
$refs
.
dialog
.
show
();
},
deploymentAction
(
item
)
{
// console.log("deployment " + item.app_name);
console
.
log
(
"
一键部署功能设计中···
"
);
},
// TODO: 一键部署功能设计中
setTimeout
(()
=>
{
this
.
$message
({
message
:
`一键部署
${
item
.
app_name
}
成功.`
,
type
:
"
success
"
,
});
},
200
);
},
// FIXME: 一键部署功能设计中
changePageSize
(
value
)
{
this
.
pageSize
=
value
;
this
.
currentPage
=
1
;
...
...
@@ -1219,7 +1223,7 @@ export default {
},
detailItem
(
item
)
{
this
.
$router
.
push
(
`
${
this
.
detailsUrl
+
(
this
.
type
===
1
?
item
.
deploy_id
:
item
.
app_id
)
}
`
`
${
this
.
detailsUrl
+
[
item
.
deploy_id
,
item
.
app_id
,
item
.
id
][
this
.
type
]
}
`
);
},
soldUpItem
(
item
)
{
...
...
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