提交 db297e21 编写于 作者: Neuromancer255's avatar Neuromancer255

工具栏是否显示逻辑调整

上级 d9373c9f
......@@ -30,10 +30,13 @@
* @memberof ${srfclassname('${view.name}')}
*/
get getToolBarLimit() {
let toolBarVisable:boolean = true;
if(this.${ctrl.name?lower_case}Models){
toolBarVisable = !Object.keys(this.${ctrl.name?lower_case}Models).every((tbitem:any)=>{
return this.${ctrl.name?lower_case}Models[tbitem].visabled === false;
let toolBarVisable:boolean = false;
if(this.righttoolbarModels){
Object.keys(this.righttoolbarModels).forEach((tbitem:any)=>{
if(this.righttoolbarModels[tbitem].type !== 'ITEMS' && this.righttoolbarModels[tbitem].visabled === true){
toolBarVisable = true;
return;
}
})
}
return toolBarVisable;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册