Commit a23ad4c2 by 乔延琦

Merge branch 'develop-zhouyi' into 'develop'

Develop zhouyi

See merge request GFP/RBC/rbc-frontend!159
parents 05fdbad6 98b88c3f
...@@ -91,7 +91,7 @@ export default { ...@@ -91,7 +91,7 @@ export default {
return { return {
isReadOnly: false, isReadOnly: false,
showDetail: false, showDetail: false,
state: null, state: '',
billId: "", billId: "",
modal_visible: false, modal_visible: false,
showBiffForm: false, showBiffForm: false,
...@@ -231,7 +231,13 @@ export default { ...@@ -231,7 +231,13 @@ export default {
}, 100); }, 100);
}, },
setFieldFromMaster(bill){ setFieldFromMaster(bill){
if(!this.actionParam.param.masterFields) return if(
!this.actionParam
|| !this.actionParam.param
|| !this.actionParam.param.masterFields
) {
return
}
let obj = this.actionParam.param.masterFields.find( let obj = this.actionParam.param.masterFields.find(
(v) => v.billName == this.selectBill (v) => v.billName == this.selectBill
); );
......
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