在table的toolbar
在table.render
done: function(res, curr, count) {
? ? ? ? ? ? ? ? dropdown.render({
? ? ? ? ? ? ? ? ? ? elem: '#toolBar1' //可綁定在任意元素中,此處以上述按鈕為例
? ? ? ? ? ? ? ? ? ? , data: [{
? ? ? ? ? ? ? ? ? ? ? ? ? ? title: '設置審批部門(mén)'
? ? ? ? ? ? ? ? ? ? ? ? ? ? , id: 101
? ? ? ? ? ? ? ? ? ? ? ? , href: 'javascript:;' //開(kāi)啟超鏈接
? ? ? ? ? ? ? ? ? ? ? ? },? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? title: '設置來(lái)源單位'
? ? ? ? ? ? ? ? ? ? ? ? , id: 100
? ? ? ? ? ? ? ? ? ? ? ? , href: 'javascript:;'
? ? ? ? ? ? ? ? ? ? ? ? }, {
? ? ? ? ? ? ? ? ? ? ? ? title: '設置抄送單位'
? ? ? ? ? ? ? ? ? ? ? ? , id: 101
? ? ? ? ? ? ? ? ? ? ? ? , href: 'javascript:;'
? ? ? ? ? ? ? ? ? ? }]
? ? ? ? ? ? ? ? ? ? , id: 'toolBar1'
? ? ? ? ? ? ? ? ? ? //菜單被點(diǎn)擊的事件
? ? ? ? ? ? ? ? ? ? , click: function (obj) {
? ? ? ? ? ? ? ? ? ? ? ? console.log(obj.att);
? ? ? ? ? ? ? ? ? ? ? ? layer.msg('回調返回的參數已顯示再控制臺');
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? });
? ? ? ? ? ? },
并記得引入dropdown
layui.use(['form', 'table','dropdown']