Kaynağa Gözat

加入toast 功能

吴学文 6 yıl önce
ebeveyn
işleme
e3ca400191

+ 2 - 2
java110-front/src/main/resources/static/js/core.js

@@ -331,7 +331,7 @@
         number:"number"
     }
 
-})(window.vc)
+})(window.vc);
 
 /**
 toast
@@ -341,7 +341,7 @@ toast
                      duration=isNaN(duration)?3000:duration;
                      var m = document.createElement('div');
                      m.innerHTML = msg;
-                     m.style.cssText="max-width:60%;min-width: 150px;padding:0 14px;height: 40px;color: rgb(255, 255, 255);line-height: 40px;text-align: center;border-radius: 4px;position: fixed;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index: 999999;background: rgba(0, 0, 0,.7);font-size: 16px;";
+                     m.style.cssText="max-width:60%;min-width: 150px;padding:0 14px;height: 40px;color: rgb(255, 255, 255);line-height: 40px;text-align: center;border-radius: 4px;position: fixed;top: 30%;left: 50%;transform: translate(-50%, -50%);z-index: 999999;background: rgba(0, 0, 0,.7);font-size: 16px;";
                      document.body.appendChild(m);
                      setTimeout(function() {
                        var d = 0.5;