Commit a34828af by 袁成

seeDetail新增隐藏工具栏选项

parent ee213d95
......@@ -738,6 +738,13 @@ export default {
"title": "页签名称",
"key": "displayName"
},
{
"isRequired": true,
"ref": "columnField",
"type": "Boolean",
"title": "隐藏工具栏",
"key": "hideButton"
}
]
},
"description": "指定跳转页面,配置单据id,通过在当前页签打开形式进行跳转",
......
......@@ -25,7 +25,8 @@ export default {
{
templateName: templateName,
id: billId,
state:'readOnly'
state:'readOnly',
hideButtonGroup: param.hideButton? true: false
},
{
openWay: "FUNCTAB",
......@@ -40,6 +41,7 @@ export default {
c.modal_visible = true;
c.isReadOnly = true;
c.state = 'readOnly'
c.hideButtonGroup = param.hideButton? true: false
});
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment