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
6f382e65
Commit
6f382e65
authored
Jul 15, 2020
by
张俊
Browse files
Options
Browse Files
Download
Plain Diff
合并
parents
a7e0ee4d
fd012023
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
8 deletions
+18
-8
src/components/image-detail.vue
src/components/image-detail.vue
+2
-3
src/pages/workbench/app_build.vue
src/pages/workbench/app_build.vue
+4
-1
src/pages/workbench/fwgl/approveWorkspace.vue
src/pages/workbench/fwgl/approveWorkspace.vue
+6
-1
src/pages/workbench/fwgl/fwglList.vue
src/pages/workbench/fwgl/fwglList.vue
+2
-2
src/pages/workbench/yygl/app_detail.vue
src/pages/workbench/yygl/app_detail.vue
+4
-1
No files found.
src/components/image-detail.vue
View file @
6f382e65
...
...
@@ -86,8 +86,7 @@ export default {
},
},
methods
:
{
showDialog
(
image
,
id
)
{
image
.
id
=
id
showDialog
(
image
)
{
this
.
image
=
image
;
this
.
imageData
=
[];
this
.
getImageDetail
();
...
...
@@ -153,7 +152,7 @@ export default {
},
getImageDetail
()
{
this
.
$http
.
get
(
`/apaas/hubApi/image/imageDetails/
${
this
.
image
.
name
}
?app_id=
${
this
.
image
.
id
}
`
)
.
get
(
`/apaas/hubApi/image/imageDetails/
${
this
.
image
.
name
}
?app_id=
${
this
.
image
.
app_
id
}
`
)
.
then
(({
data
})
=>
{
this
.
imageData
=
data
.
data
||
[];
})
...
...
src/pages/workbench/app_build.vue
View file @
6f382e65
...
...
@@ -597,7 +597,10 @@ export default {
this
.
$refs
.
dialog
.
show
();
},
showImageDetail
(
item
)
{
this
.
$refs
.
imageDetail
.
showDialog
(
item
);
this
.
$refs
.
imageDetail
.
showDialog
({
...
item
,
app_id
:
this
.
app_id
});
},
stepsDone
()
{
this
.
done
=
true
;
...
...
src/pages/workbench/fwgl/approveWorkspace.vue
View file @
6f382e65
...
...
@@ -109,7 +109,12 @@ export default {
let
action
=
(
type
)
=>
{
this
.
$http
.
put
(
"
/apaas/service/v3/resource/apply/approve
"
,
null
,
{
params
:
{},
params
:
{
apply_id
:
item
.
apply_id
,
apply_type
:
item
.
apply_type
,
cloud_id
:
item
.
id
,
apply_state
:
type
,
},
})
.
then
(({
data
})
=>
{
if
(
data
.
success
==
1
)
{
...
...
src/pages/workbench/fwgl/fwglList.vue
View file @
6f382e65
...
...
@@ -921,11 +921,11 @@ export default {
actionList
:
[
{
getLabel
(
item
)
{
return
item
.
use_uid
?
"
已分配
"
:
"
分配
"
;
return
item
.
use_uid
!==
""
?
"
已分配
"
:
"
分配
"
;
},
callback
:
this
.
cloudAllot
,
disabledRule
(
item
)
{
return
item
.
use_uid
;
return
item
.
use_uid
!==
""
;
},
},
],
...
...
src/pages/workbench/yygl/app_detail.vue
View file @
6f382e65
...
...
@@ -390,7 +390,10 @@ export default {
},
methods
:
{
showImageDetail
(
item
)
{
this
.
$refs
.
imageDetail
.
showDialog
(
item
,
this
.
$route
.
params
.
id
);
this
.
$refs
.
imageDetail
.
showDialog
({
...
item
,
app_id
:
this
.
$route
.
params
.
id
});
},
getCurrentUser
()
{
this
.
$api
.
user
.
getNowUser
().
then
(({
data
})
=>
{
...
...
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