Commit ac81753e by 乔延琦

Merge branch 'develop-yuancheng' into 'develop'

seeDetail新增隐藏工具栏选项

See merge request GFP/RBC/rbc-frontend!76
parents ee213d95 a34828af
...@@ -738,6 +738,13 @@ export default { ...@@ -738,6 +738,13 @@ export default {
"title": "页签名称", "title": "页签名称",
"key": "displayName" "key": "displayName"
}, },
{
"isRequired": true,
"ref": "columnField",
"type": "Boolean",
"title": "隐藏工具栏",
"key": "hideButton"
}
] ]
}, },
"description": "指定跳转页面,配置单据id,通过在当前页签打开形式进行跳转", "description": "指定跳转页面,配置单据id,通过在当前页签打开形式进行跳转",
......
...@@ -25,7 +25,8 @@ export default { ...@@ -25,7 +25,8 @@ export default {
{ {
templateName: templateName, templateName: templateName,
id: billId, id: billId,
state:'readOnly' state:'readOnly',
hideButtonGroup: param.hideButton? true: false
}, },
{ {
openWay: "FUNCTAB", openWay: "FUNCTAB",
...@@ -40,6 +41,7 @@ export default { ...@@ -40,6 +41,7 @@ export default {
c.modal_visible = true; c.modal_visible = true;
c.isReadOnly = true; c.isReadOnly = true;
c.state = 'readOnly' 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