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
8f1650e6
Commit
8f1650e6
authored
Jul 15, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应用管理列表fixed
parent
87cd7003
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
7 deletions
+33
-7
src/components/table/table-filter.vue
src/components/table/table-filter.vue
+14
-5
src/pages/workbench/yygl/yyglList.vue
src/pages/workbench/yygl/yyglList.vue
+19
-2
No files found.
src/components/table/table-filter.vue
View file @
8f1650e6
...
...
@@ -18,11 +18,19 @@
'margin-top': i
<
filterLength
?
'
0
'
:
'
10px
',
}"
>
<a
:class=
"
{ current: isCurrentFilter(item.prop, v) }"
@click.prevent="selectFilter(item.prop, v)"
v-text="v.name"
>
</a>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"v.name"
placement=
"top"
>
<a
class=
"text_clip"
:class=
"
{ current: isCurrentFilter(item.prop, v) }"
@click.prevent="selectFilter(item.prop, v)"
v-text="v.name"
>
</a>
</el-tooltip>
</li>
<div
...
...
@@ -189,6 +197,7 @@ export default {
display
:
block
;
height
:
30px
;
width
:
130px
;
padding
:
0
15px
;
box-sizing
:
border-box
;
border-radius
:
12px
;
text-align
:
center
;
...
...
src/pages/workbench/yygl/yyglList.vue
View file @
8f1650e6
...
...
@@ -172,6 +172,10 @@ export default {
name
:
"
开发者应用
"
,
value
:
1
,
},
{
name
:
"
未上架
"
,
value
:
0
,
},
],
},
];
...
...
@@ -740,6 +744,10 @@ export default {
name
:
"
开发者应用
"
,
value
:
1
,
},
{
name
:
"
未上架
"
,
value
:
0
,
},
],
},
];
...
...
@@ -823,6 +831,10 @@ export default {
name
:
"
开发者应用
"
,
value
:
1
,
},
{
name
:
"
未上架
"
,
value
:
0
,
},
],
},
];
...
...
@@ -1011,7 +1023,7 @@ export default {
},
].
concat
(
(
response
.
body
.
data
||
[]).
map
((
v
)
=>
({
name
:
v
.
text
,
name
:
v
.
value
,
value
:
v
.
value
,
}))
);
...
...
@@ -1136,8 +1148,13 @@ export default {
this
.
dialogInfo
.
cancelText
=
""
;
this
.
dialogInfo
.
sunbmitText
=
""
;
this
.
dialogInfo
.
submit
=
()
=>
{
debugger
;
this
.
$http
.
delete
(
`/apaas/hubApi/market/del/
${
item
.
app_id
}
`
)
.
delete
(
`/apaas/hubApi/market/del/
${
item
.
app_id
}
`
,
{
params
:
{
apply_id
:
item
.
apply_id
,
},
})
.
then
(({
data
})
=>
{
if
(
data
.
success
)
{
this
.
$message
({
...
...
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