diff --git a/src/modules/dropdown.js b/src/modules/dropdown.js index 2099296b..2bab9663 100644 --- a/src/modules/dropdown.js +++ b/src/modules/dropdown.js @@ -19,7 +19,13 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ // 外部接口 var dropdown = { - config: {}, + config: { + customName: { // 自定义 data 字段名 + id: 'id', + title: 'title', + children: 'child' + } + }, index: layui[MOD_NAME] ? (layui[MOD_NAME].index + 10000) : 0, // 设置全局项 @@ -140,6 +146,9 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ elem.attr('id') || that.index ); + // 初始化自定义字段名 + options.customName = $.extend({}, dropdown.config.customName, options.customName); + if(options.show || (type === 'reloadData' && that.elemView && $('body').find(that.elemView.get(0)).length)) that.render(rerender, type); //初始即显示或者面板弹出之后执行了刷新数据 that.events(); // 事件 }; @@ -148,6 +157,7 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ Class.prototype.render = function(rerender, type){ var that = this; var options = that.config; + var customName = options.customName; var elemBody = $('body'); // 默认菜单内容 @@ -164,9 +174,10 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ // 遍历菜单项 var eachItemView = function(views, data){ // var views = []; + layui.each(data, function(index, item){ // 是否存在子级 - var isChild = item.child && item.child.length > 0; + var isChild = item[customName.children] && item[customName.children].length > 0; var isSpreadItem = ('isSpreadItem' in item) ? item.isSpreadItem : options.isSpreadItem var title = function(title){ var templet = item.templet || options.templet; @@ -176,7 +187,7 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ : laytpl(templet).render(item); } return title; - }(util.escape(item.title)); + }(util.escape(item[customName.title])); // 初始类型 var type = function(){ @@ -193,7 +204,7 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){ return ''; }(); - if(type !== '-' && (!item.title && !item.id && !isChild)) return; + if(type !== '-' && (!item[customName.title] && !item[customName.id] && !isChild)) return; //列表元素 var viewLi = $(['