Commit 63f495d4 by qiaoyanqi

刷新

parent 519f5017
...@@ -70,8 +70,12 @@ export default { ...@@ -70,8 +70,12 @@ export default {
loadFinishFun(bill) { loadFinishFun(bill) {
console.log('billState', bill.getMasterData().getValue('billState')) console.log('billState', bill.getMasterData().getValue('billState'))
const workflowState = bill.getMasterData().getValue('billState') const workflowState = bill.getMasterData().getValue('billState')
if ([90,92].includes(workflowState)) { if (this.state != 'readOnly' && [90,92].includes(workflowState)) {
this.state = 'readOnly' this.state = 'readOnly';
this.init = false;
this.$nextTick(() => {
this.init = true;
});
} }
let that = this; let that = this;
setTimeout(() => { setTimeout(() => {
......
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