Laravel unisharp文件管理器如何禁用多选

yqhsw0fo  于 2022-12-01  发布在  其他
关注(0)|答案(1)|浏览(117)

Laravel unisharp文件管理器如何禁用多选

dtcbnfnu

dtcbnfnu1#

安装后的第一个程序包

php artisan vendor:publish --tag=lfm_public

然后在供应商/文件-文件管理器/js/script.js内部

var myParam = location.search.split('multiple=')[1];//new

if(myParam == 'false'){ //new
        multi_selection_enabled = multi_selection_enabled;//
    }else{
        multi_selection_enabled = !multi_selection_enabled;//here
  }

代替此代码

multi_selection_enabled = !multi_selection_enabled

然后在供应商/文件管理器/js/独立按钮. js内部

window.open(route_prefix + '?type=' + type+'?&multiple=false',
 'FileManager', 'width=900,height=600');

代替此代码

window.open(route_prefix + '?type=' + type', 'FileManager', 'width=900,height=600');

然后在供应商Laravel文件管理器src/views/index.blade.php中,您应该取消注解以下脚本行

<script src="{{ asset('vendor/laravel-filemanager/js/script.js') }}"></script>

它帮了我,你可以试试这个。

相关问题