jqh 5 년 전
부모
커밋
ac85e32c6b

+ 1 - 1
resources/assets/dcat-admin/slider.js

@@ -3,7 +3,7 @@
     function Slider(cnf) {
         this.opts = {
             direction: cnf.direction || "left",
-            wight: cnf.width || null,
+            width: cnf.width || null,
             height: cnf.height || null,
             dom: $(cnf.dom),
             time: cnf.time || null,

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
resources/assets/dcat-admin/slider.min.js


+ 1 - 1
resources/views/filter/right-side-container.blade.php

@@ -15,7 +15,7 @@
 
                 <div class="pull-right">
                     <span class="btn btn-trans close-slider font-16">
-                        <i class="fa  fa-long-arrow-right"></i>
+                        <i class="ti-shift-right"></i>
                     </span>
                 </div>
             </div>

+ 1 - 1
src/Grid/Filter/AbstractFilter.php

@@ -81,7 +81,7 @@ abstract class AbstractFilter
     /**
      * @var int
      */
-    protected $width = 8;
+    protected $width = 10;
 
     /**
      * @var string

+ 1 - 1
src/Grid/Filter/Between.php

@@ -16,7 +16,7 @@ class Between extends AbstractFilter
     /**
      * @var int
      */
-    protected $width = 11;
+    protected $width = 12;
 
     /**
      * @var bool

+ 1 - 1
src/Grid/Filter/In.php

@@ -14,7 +14,7 @@ class In extends AbstractFilter
     /**
      * @var int
      */
-    protected $width = 10;
+    protected $width = 12;
 
     /**
      * Get condition of this filter.

+ 1 - 0
src/Grid/Tools/FilterButton.php

@@ -62,6 +62,7 @@ class FilterButton extends AbstractTool
             dom: '#{$id}',
             background: '#FFF',
             shade: false,
+            width: '480px',
         });
         
         $(document).one('pjax:complete', function () {// 跳转新页面时移除弹窗

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.