文件地址:application/admin/controller
在controller文件增加:
public function adds(){ ...... ......}
文件地址:application/admin/lang
在zh-cn.php文件增加:
'Adds' => '批量添加',
文件地址:application/admin/view
在view文件增加:
复制一份add.html,改名为adds.html
在index.html文件增加:
<a href="javascript:;" class="btn btn-success btn-adds" {:$auth->check('domainname/adds')?'':'hide'}" title="{:__('Adds')}"><i class="fa fa-plus"></i> {:__('Adds')}</a>
文件地址:public/assets/js
在require-table.js文件增加:
extend: { index_url: '', add_url: '', adds_url: '',//批量添加 edit_url: '', del_url: '', import_url: '', multi_url: '', dragsort_url: 'ajax/weigh',}
config: { firsttd: 'tbody tr td:first-child:not(:has(div.card-views))', toolbar: '.toolbar', refreshbtn: '.btn-refresh', addbtn: '.btn-add', addsbtn: '.btn-adds',//批量添加 editbtn: '.btn-edit', delbtn: '.btn-del', importbtn: '.btn-import', multibtn: '.btn-multi', disabledbtn: '.btn-disabled', editonebtn: '.btn-editone', dragsortfield: 'weigh',},
// 添加按钮事件$(toolbar).on('click', Table.config.addbtn, function () { var ids = Table.api.selectedids(table); var url = options.extend.add_url; if (url.indexOf("{ids}") !== -1) { url = Table.api.replaceurl(url, {ids: ids.length > 0 ? ids.join(",") : 0}, table); } Fast.api.open(url, __('Add'), $(this).data() || {});});// 批量添加按钮事件$(toolbar).on('click', Table.config.addsbtn, function () { var ids = Table.api.selectedids(table); var url = options.extend.adds_url; if (url.indexOf("{ids}") !== -1) { url = Table.api.replaceurl(url, {ids: ids.length > 0 ? ids.join(",") : 0}, table); } Fast.api.open(url, __('Adds'), $(this).data() || {});});
文件地址:public/assets/js/backend
在js文件增加:
adds_url: 'XXX/adds',//批量添加
//批量添加adds: function () { Controller.api.bindevent();},
希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, Fastadmin, ClassCMS, LeCMS, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。