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
680c7170
Commit
680c7170
authored
Aug 10, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'xym' into dev
parents
0e6f1f32
247e6b74
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
200 additions
and
92 deletions
+200
-92
src/components/apass-table.vue
src/components/apass-table.vue
+5
-4
src/pages/workbench/component-center/process-management/designer/index.vue
...ch/component-center/process-management/designer/index.vue
+192
-80
src/pages/workbench/fwgl/fwglList.vue
src/pages/workbench/fwgl/fwglList.vue
+3
-8
No files found.
src/components/apass-table.vue
View file @
680c7170
...
...
@@ -499,10 +499,11 @@ export default {
.more_action_list
>
li
:first-child::before
{
content
:
""
;
position
:
absolute
;
top
:
-14px
;
right
:
calc
(
50%
-
14px
);
width
:
28px
;
height
:
14px
;
top
:
-20px
;
right
:
calc
(
50%
-
20px
);
width
:
40px
;
height
:
20px
;
/* background-color: red; */
}
.more_action_list
>
li
:first-child::after
{
content
:
""
;
...
...
src/pages/workbench/component-center/process-management/designer/index.vue
View file @
680c7170
This diff is collapsed.
Click to expand it.
src/pages/workbench/fwgl/fwglList.vue
View file @
680c7170
...
...
@@ -106,7 +106,7 @@
:title=
"dialogInfo.title"
:msg=
"dialogInfo.msg"
:submit=
"dialogInfo.submit"
:sunbmit
T
ext=
"dialogInfo.sunbmitText"
:sunbmit
-t
ext=
"dialogInfo.sunbmitText"
></apass-dialog>
<allot-info-confirm
...
...
@@ -148,6 +148,7 @@ export default {
title
:
""
,
msg
:
""
,
submit
:
null
,
sunbmitText
:
""
,
},
listUrl
:
""
,
deleteUrl
:
""
,
...
...
@@ -1064,8 +1065,7 @@ export default {
callback
(
item
)
{
if
(
item
.
state
==
0
)
{
return
null
;
// 已下架,上架的操作需要普通用户申请
}
else
if
(
item
.
state
==
1
)
{
}
else
if
(
item
.
state
==
1
)
{
return
_self
.
soldOutItem
(
item
);
// 已上架,超管用户可以直接下架
}
else
if
(
item
.
state
==
2
)
{
return
_self
.
soldUpItem
(
item
);
// 上架审核中,超管用户可以直接上架
...
...
@@ -1398,7 +1398,6 @@ export default {
applyForSoldUpItem
(
item
)
{
this
.
dialogInfo
.
title
=
"
提示
"
;
this
.
dialogInfo
.
msg
=
"
确认申请上架此服务吗?
"
;
this
.
dialogInfo
.
cancelText
=
"
取消
"
;
this
.
dialogInfo
.
sunbmitText
=
"
发送通知
"
;
this
.
dialogInfo
.
submit
=
()
=>
{
this
.
$http
...
...
@@ -1433,7 +1432,6 @@ export default {
this
.
dialogInfo
.
title
=
"
是否确定下架服务
"
;
this
.
dialogInfo
.
msg
=
"
下架此服务会导致用户被迫暂停对服务的调用,下架前需向超级管理员发送通知,超级管理员通过后此服务将会从服务超市中下架。
"
;
this
.
dialogInfo
.
cancelText
=
"
取消
"
;
this
.
dialogInfo
.
sunbmitText
=
"
发送通知
"
;
this
.
dialogInfo
.
submit
=
()
=>
{
this
.
$http
...
...
@@ -1467,7 +1465,6 @@ export default {
soldUpItem
(
item
)
{
this
.
dialogInfo
.
title
=
"
提示
"
;
this
.
dialogInfo
.
msg
=
"
确认上架此服务吗?
"
;
this
.
dialogInfo
.
cancelText
=
""
;
this
.
dialogInfo
.
sunbmitText
=
"
确定
"
;
this
.
dialogInfo
.
submit
=
()
=>
{
this
.
$http
...
...
@@ -1501,7 +1498,6 @@ export default {
this
.
dialogInfo
.
title
=
"
提示
"
;
this
.
dialogInfo
.
msg
=
"
下架此服务会导致调用该服务的<br />用户被迫暂停对服务的调用
"
;
this
.
dialogInfo
.
cancelText
=
""
;
this
.
dialogInfo
.
sunbmitText
=
"
确定
"
;
this
.
dialogInfo
.
submit
=
()
=>
{
this
.
$http
...
...
@@ -1534,7 +1530,6 @@ export default {
deleteItem
(
item
)
{
this
.
dialogInfo
.
title
=
""
;
this
.
dialogInfo
.
msg
=
"
是否删除该条服务?
"
;
this
.
dialogInfo
.
cancelText
=
""
;
this
.
dialogInfo
.
sunbmitText
=
""
;
this
.
dialogInfo
.
submit
=
()
=>
{
this
.
$http
...
...
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