forked from jly8866/archer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
修改回滚SQL逻辑,可以由该工单的申请人、审核人、副审核人提交回滚申请,提交时可以修改SQL内容等要素。
- Loading branch information
liujing
committed
Jul 28, 2017
1 parent
aa2ca28
commit f8b2e53
Showing
8 changed files
with
64 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
$(document).ready(function () { | ||
var isRollback = window.location.pathname.indexOf("rollback"); | ||
if (isRollback != -1){ | ||
$("#btnSubmitRollback").click(function () { | ||
var editWorkflowNname = $("#editWorkflowNname").val(); | ||
var editSqlContent = $("#editSqlContent").val(); | ||
var editClustername = $("#editClustername").val(); | ||
var editIsbackup = $("#editIsbackup").val(); | ||
var editReviewman = $("#editReviewman").val(); | ||
var editSubReviewman = $("#editSubReviewman").val(); | ||
sessionStorage.removeItem('editWorkflowDetailId'); | ||
sessionStorage.setItem('editWorkflowNname', editWorkflowNname); | ||
sessionStorage.setItem('editSqlContent', editSqlContent); | ||
sessionStorage.setItem('editClustername', editClustername); | ||
sessionStorage.setItem('editIsbackup', editIsbackup); | ||
sessionStorage.setItem('editReviewman', editReviewman); | ||
sessionStorage.setItem('editSubReviewman', editSubReviewman); | ||
}); | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters