企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 下拉树一些数据不可选 ## 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; // 如果有子级设置不可选 }); //......同上 ~~~