代碼示例
                        
layui.config({
  base: '__STATIC__/plugin/layui/common/', //拓展模塊的根目錄
})
.extend({
   formTable: '/formTable/formTable'
});
layui.use(['table', 'form', 'formTable'], function () {
   // 查詢自動(dòng)提示
   formTable.render({
	elem: 'input[name=parts]',
	url: "{:url('ajaxGetParts')}",
	width: 730,
	height: 180,
	table: {
	   cols: [[
		{ type: 'numbers', title: '編碼', width: '3%' },
                { field: 'peij_no', title: '品牌', width: '10%'},
           ]],
	   height: 180,
	   tool: {
		'add': (data) => {
                     // 表格tool觸發(fā)事件
		},
	    },
	    rowDouble: (data) => {
		//觸發(fā)行雙擊事件
	    }
	 },
    })
})