|
|
@ -44,7 +44,7 @@ |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
<el-col :span="10" :offset="1"> |
|
|
|
<el-col :span="10" :offset="1"> |
|
|
|
<el-form-item label="本行收款户名" prop="accountUsername"> |
|
|
|
<el-form-item label="本行收款户名" prop="accountUsername"> |
|
|
|
<el-input :value="form.accountUsername" @focus="getFocus" @input="val => checkName(val, form, 'accountUsername')" ref="accountUsername"></el-input> |
|
|
|
<el-input :value="form.accountUsername" disabled @focus="getFocus" @input="val => checkName(val, form, 'accountUsername')" ref="accountUsername"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="金额" prop="money"> |
|
|
|
<el-form-item label="金额" prop="money"> |
|
|
|
<el-input :value="form.money" @input="val => ismoney(val, form, 'money')" ref="money"></el-input> |
|
|
|
<el-input :value="form.money" @input="val => ismoney(val, form, 'money')" ref="money"></el-input> |
|
|
@ -304,7 +304,6 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
this.form.insertDate = tmpFunc() |
|
|
|
this.form.insertDate = tmpFunc() |
|
|
|
this.form.exchangeNumber = 20082289056288 |
|
|
|
this.form.exchangeNumber = 20082289056288 |
|
|
|
// this.form.exchangeName = '交换行名' |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
mounted() { |
|
|
|
const parentId = '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,5,29,345,359' |
|
|
|
const parentId = '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,5,29,345,359' |
|
|
@ -334,7 +333,7 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
getBlur() { |
|
|
|
getBlur() { |
|
|
|
this.form.accountUsername = '小白' |
|
|
|
this.form.accountUsername = this.dataFlow.userName; |
|
|
|
}, |
|
|
|
}, |
|
|
|
ismoney: ismoney, |
|
|
|
ismoney: ismoney, |
|
|
|
inputListen: inputListen, |
|
|
|
inputListen: inputListen, |
|
|
@ -343,7 +342,8 @@ export default { |
|
|
|
}, |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
computed: { |
|
|
|
...mapGetters({ |
|
|
|
...mapGetters({ |
|
|
|
getSelectList: 'system/getSelectList' |
|
|
|
getSelectList: 'system/getSelectList', |
|
|
|
|
|
|
|
dataFlow: 'system/dataFlow' |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|