|
@@ -243,6 +243,7 @@ $(function() {
|
|
|
$(".deptAllList ").css("display", "none")
|
|
|
$(".checkerList").css("display", "none")
|
|
|
$(".scoreList").css("display", "none")
|
|
|
+ $(".del-pop").remove();
|
|
|
/*$(".scoreDept .arrow").attr("src",iconDown)
|
|
|
$(".selectDept .arrow").attr("src",iconDown)
|
|
|
$(".selectAllDept .arrow").attr("src",iconDown)
|
|
@@ -626,13 +627,17 @@ function bindDeleteEvent(){
|
|
|
</div>
|
|
|
</div>`;
|
|
|
$(".taskTable .delete:not(.disable)").unbind("click").click(function(e){
|
|
|
+ e.stopPropagation();
|
|
|
global_TaskCodes=[$(this).attr("code")];
|
|
|
global_TaskDept=[$(this).attr("deptId")];
|
|
|
+ $(".del-pop").remove();
|
|
|
$(dom).insertAfter($(this)).show();
|
|
|
- $(".del-pop .cancel").unbind("click").click(function(){
|
|
|
+ $(".del-pop .cancel").unbind("click").click(function(ev){
|
|
|
+ ev.stopPropagation();
|
|
|
$(".del-pop").hide();
|
|
|
});
|
|
|
- $(".del-pop .del-confirm").unbind("click").click(function(){
|
|
|
+ $(".del-pop .del-confirm").unbind("click").click(function(ev){
|
|
|
+ ev.stopPropagation();
|
|
|
global_deleted=true;
|
|
|
$(".del-pop").hide();
|
|
|
allotTask(1);
|