Commit 9c96875f by qiaoyanqi

单据 详情按钮,是否展示按钮组配置

parent a49f80e3
...@@ -31,7 +31,7 @@ export default { ...@@ -31,7 +31,7 @@ export default {
c.subBillData = obj.BILLDETAILOBJ; c.subBillData = obj.BILLDETAILOBJ;
c.modal_visible = true; c.modal_visible = true;
c.state = 'readOnly' c.state = 'readOnly'
c.hideButtonGroup = true c.hideButtonGroup = param.param.showButtonGroup? false: true;
c.$nextTick(()=>{ c.$nextTick(()=>{
component.addListener({ component.addListener({
close: function() { close: function() {
......
...@@ -12,7 +12,7 @@ export default { ...@@ -12,7 +12,7 @@ export default {
c.bill = bill; c.bill = bill;
c.isReadOnly = true; c.isReadOnly = true;
c.state = 'readOnly'; c.state = 'readOnly';
c.hideButtonGroup = true; c.hideButtonGroup = param.param.showButtonGroup? false: true;
let tableName = null; let tableName = null;
if(param.param && param.param.tableName){ if(param.param && param.param.tableName){
tableName = param.param.tableName tableName = param.param.tableName
......
...@@ -1449,6 +1449,12 @@ export default { ...@@ -1449,6 +1449,12 @@ export default {
"title": "单据界面", "title": "单据界面",
"key": "billDefineName", "key": "billDefineName",
"type": "String", "type": "String",
},{
 "isRequired": true,
"ref": "columnField",
"type": "Boolean",
"title": "展示工具栏",
"key": "showButtonGroup"
}] }]
}, },
"description": "", "description": "",
...@@ -1475,6 +1481,12 @@ export default { ...@@ -1475,6 +1481,12 @@ export default {
"title": "单据界面", "title": "单据界面",
"key": "billDefineName", "key": "billDefineName",
"type": "String", "type": "String",
},{
 "isRequired": true,
"ref": "columnField",
"type": "Boolean",
"title": "展示工具栏",
"key": "showButtonGroup"
}] }]
}, },
"description": "", "description": "",
......
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