Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ <h3 class="panel-title">
</div>
</div>
<div class="panel-footer">
<button type="button" class="btn btn-primary save-button" [disabled]="isDisabledSave" (click)="save()">
<button type="button" class="btn btn-info next-button" (click)="back()">
<span class="glyphicon glyphicon-chevron-left"></span>
<!-- Back -->
{{langJson.Back[1]}}
</button>
&nbsp;&nbsp;&nbsp;&nbsp;
<button type="button" class="btn btn-primary save-button" [disabled]="isDisabledSave" (click)="save()">
<span class="glyphicon glyphicon-saved"></span>
<!-- Save -->
{{langJson.Save[1]}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export class TreeList2Component implements OnInit {
public langJson = {
Index_Tree:[],
Designate_Index: [],
Back: [],
Send: [],
Save: [],
Quit: []
Expand Down Expand Up @@ -227,6 +228,14 @@ export class TreeList2Component implements OnInit {
}
});
}
/**
* back button process
*/
back() {
let origin = new URL(window.location.href).origin;
let redirect_uri = origin + "/workflow/activity/detail/" + $("#activity_id_text").text().trim();
document.location.href = redirect_uri;
}
/**
* サービスインデックス編集画面の送信ボタン
*/
Expand Down