Commit 69461de3 by qiaoyanqi

审批界面详情只读,并且隐藏按钮组

parent 9ff2970e
...@@ -7,7 +7,9 @@ export default { ...@@ -7,7 +7,9 @@ export default {
GMS.showDetailAction = true;//详情,点击确定按钮。记录此参数 GMS.showDetailAction = true;//详情,点击确定按钮。记录此参数
component = c; component = c;
c.bill = bill; c.bill = bill;
c.isReadOnly = true c.isReadOnly = true;
c.state = 'readOnly';
c.hideButtonGroup = 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
......
...@@ -76,6 +76,7 @@ ...@@ -76,6 +76,7 @@
:state="state" :state="state"
v-if="selectBill" v-if="selectBill"
@loadFinish="loadFinishFun" @loadFinish="loadFinishFun"
:hideButtonGroup="hideButtonGroup"
></gms-bill-form> ></gms-bill-form>
<div slot="footer" style="height: 0"></div> <div slot="footer" style="height: 0"></div>
</Modal> </Modal>
...@@ -112,6 +113,7 @@ export default { ...@@ -112,6 +113,7 @@ export default {
tableColnum: [], tableColnum: [],
subBillData: null, subBillData: null,
masterFieldsObj:{}, masterFieldsObj:{},
hideButtonGroup:false
}; };
}, },
mounted() { mounted() {
......
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