Commit 9c96875f by qiaoyanqi

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

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