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
9ecb44ca
Commit
9ecb44ca
authored
Aug 06, 2020
by
张俊
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
https://cloud.wodcloud.com/git/apaas/apaas-v3-ui
into dev
parents
b2347643
e59e42cf
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
src/components/service-tabs/service-tab-detail.vue
src/components/service-tabs/service-tab-detail.vue
+1
-0
src/pages/workbench/fwgl/fwglList.vue
src/pages/workbench/fwgl/fwglList.vue
+6
-1
No files found.
src/components/service-tabs/service-tab-detail.vue
View file @
9ecb44ca
...
...
@@ -91,6 +91,7 @@ export default {
margin-bottom
:
3px
;
}
.detail-item
.detail-text
{
word-break
:
break-all
;
font-size
:
14px
;
line-height
:
25px
;
color
:
#242c43
;
...
...
src/pages/workbench/fwgl/fwglList.vue
View file @
9ecb44ca
...
...
@@ -283,7 +283,8 @@ export default {
callback
:
this
.
deleteItem
,
class
:
"
warn
"
,
disabledRule
(
item
)
{
return
item
.
state
!=
2
;
// 只有下架状态可以删除
return
item
.
state
!==
0
;
},
},
],
...
...
@@ -1079,6 +1080,10 @@ export default {
label
:
"
删除
"
,
class
:
"
warn
"
,
callback
:
this
.
deleteItem
,
disabledRule
(
item
)
{
// 只有非下架状态可以删除(已上架,下架审核中)
return
item
.
state
==
1
||
item
.
state
==
3
;
},
},
],
},
...
...
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