Browse Source

bug5550,5552

zhangxc 5 years ago
parent
commit
4c276ab2b0
2 changed files with 5 additions and 1 deletions
  1. 1 0
      src/css/qcScore.less
  2. 4 1
      src/js/qcScore.js

+ 1 - 0
src/css/qcScore.less

@@ -470,6 +470,7 @@
     margin-right: 10px;
     position: relative;
     background: #fff;
+    display: none;
     .flaw-title{
       position: absolute;
       top:0;

+ 4 - 1
src/js/qcScore.js

@@ -624,6 +624,9 @@ function formatFlawKeys(data){
         global_modules=data;
         getRecordDetail();
         $("#loading").hide();
+        setTimeout(function(){
+          $(".operation").show()
+        },50)
       }
     });
   }
@@ -636,7 +639,7 @@ function formatFlawKeys(data){
       if(res.data.code==='0') {
         global_check = 1
         $(".check").text("重新核查")
-        $.alerModal({"message":`<div class="checkTipsBox"><img class="checkImg" src=${checkOk}><p class="checkTxt">核成功</p></div>`,type:"tip",time:'1000',isFather: true, fatherWrapper: $(".flaw-table", parent.document)});
+        $.alerModal({"message":`<div class="checkTipsBox"><img class="checkImg" src=${checkOk}><p class="checkTxt">核成功</p></div>`,type:"tip",time:'1000',isFather: true, fatherWrapper: $(".flaw-table", parent.document)});
        
       }else{
         $.alerModal({"message":res.msg ||"核查失败",type:"tip",time:'1000',isFather: true, fatherWrapper: $(".flaw-table", parent.document)});