zhangxc 4 سال پیش
والد
کامیت
26c03179ab
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/js/promise.js

+ 1 - 1
src/js/promise.js

@@ -119,7 +119,7 @@ const newinConf = {
   openMode: "_blank"  //每次都是新窗口打开为_blank,打开同一窗口填写任意字符串
 }
 
-const newWindowLocation = `width=${newinConf.width}, height=${newinConf.height}, left=${newinConf.left}, top=${newinConf.top} scrollbars=yes`
+const newWindowLocation = `width=${newinConf.width}, height=${newinConf.height}, left=${newinConf.left}, top=${newinConf.top},resizable=yes, scrollbars=yes`
 const openNewWin = function (url) {
   window.open(url, newinConf.openMode, newWindowLocation)
 }