多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 下拉树一些数据不可选 ## 12.7.下拉树一些数据不可选 以演示页面的权限管理为例,让类型为按钮不可选: ~~~ // 这个是treeTable提供的遍历数据的方法 insTb.eachData(function(i,item){ if (!item.isMenu) item.disabled = true; // 如果是按钮设置不可选 }); // 渲染下拉树 var insXmSel = xmSelect.render({ el: '#authoritiesEditParentSel', data: insTb.options.data, // 用treeTabled的数据 model: {label: {type: 'text'}}, prop: { name: 'authorityName', value: 'authorityId' }, radio: true, clickClose: true, tree: { show: true, indent: 15, strict: false, expandedKeys: true } }); ~~~ 让父级不可选: ~~~ insTb.eachData(function(i,item){ if (item.children&&item.children.length) item.disabled = true; // 如果有子级设置不可选 }); //......同上 ~~~