aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/menus/menus.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/menus/menus.component.html')
-rw-r--r--deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/menus/menus.component.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/menus/menus.component.html b/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/menus/menus.component.html
new file mode 100644
index 00000000..9537bfd7
--- /dev/null
+++ b/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/menus/menus.component.html
@@ -0,0 +1,54 @@
+<!--
+/**
+ * Copyright (c) 2017 ZTE Corporation.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and the Apache License 2.0 which both accompany this distribution,
+ * and are available at http://www.eclipse.org/legal/epl-v10.html
+ * and http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Contributors:
+ * ZTE - initial API and implementation and/or initial documentation
+ */
+-->
+
+<div>
+ <label class="wf-name">{{name}}</label>
+ <!-- <button type="button" class="btn white btn-right" (click)="showRestConfigModal()">
+ <i class="fa fa-cog"></i>{{ 'WORKFLOW.SETTING' | translate:param }}
+ </button> -->
+ <button type="button" class="plx-btn btn-right" (click)="checkBack(confirmSave)">
+ <i class="fa fa-arrow-left"></i>{{ 'WORKFLOW.BACK' | translate }}
+ </button>
+ <button type="button" class="plx-btn plx-btn-primary btn-right" (click)="save()" [disabled]="!(canSave && hasRight)">
+ <i class="fa fa-save"></i>{{ 'WORKFLOW.SAVE' | translate }}
+ </button>
+</div>
+
+<wfm-rest-config></wfm-rest-config>
+
+<template #confirmSave let-c="close" let-d="dismiss">
+ <div class="modal-header">
+ <h4 class="modal-title">{{ 'WORKFLOW.CONFIRM' | translate }}</h4>
+ <button type="button" class="close" (click)="d('Cross click')">
+ <span class="plx-ico-close-16"></span>
+ </button>
+ </div>
+ <div class="modal-body">
+ <div class="row alert-modal">
+ <span class="tip-img warning"></span>
+ <div class="tip-info">
+ <div class="alert-title">{{ 'WORKFLOW.CONFIRM_SAVE1' | translate }}</div>
+ <div class="alert-result">{{ 'WORKFLOW.CONFIRM_SAVE2' | translate }}</div>
+ </div>
+ </div>
+ </div>
+ <div class="modal-footer">
+ <div class="form-group">
+ <div class="btnGroup modal-btn">
+ <button type="button" class="plx-btn plx-btn-guide" (click)="saveBack();">{{ 'WORKFLOW.CONFIRM_SAVE_BACK' | translate }}</button>
+ <button type="button" class="plx-btn" (click)="back();">{{ 'WORKFLOW.CONFIRM_BACK' | translate }}</button>
+ </div>
+ </div>
+ </div>
+</template>