Browse Source

完善出纳付款列表

master
yunuo970428 4 months ago
parent
commit
602c7e8528
  1. 24
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/chunafukuan/chunafukuanguanli/cashier.vue

24
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/chunafukuan/chunafukuanguanli/cashier.vue

@ -226,7 +226,7 @@
<el-form-item prop="payDate"><el-date-picker class="addinputInfo addinputw" v-model="formobj.payDate" type="date" clearable value-format="yyyy-MM-dd" placeholder="请选择日期"/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-row v-if="showHide">
<el-col :span="12">
<div class="span-sty"><span class="icon">*</span>付款账号</div>
<el-form-item prop="payBankAccount">
@ -283,6 +283,7 @@ export default {
return {
btndisabled: false,
submitdisabled: false,
showHide: true,
btnList: [
{
type: 'primary',
@ -557,16 +558,18 @@ export default {
this.getList()
},
changePayWay(value) {
let bb = null
this.payWay_list.forEach((e) => {
if (e.dictValue === value) {
bb = {
key: e.dictKey,
value: e.dictValue
}
const choose = this.payWay_list.filter((item) => item.dictValue === value)
if (choose !== null && choose.length > 0) {
this.formobj.payWayKey = choose[0].dictKey
if (choose[0].groupName === '0') {
this.showHide = false
} else {
this.showHide = true
}
})
this.formobj.payWayKey = bb.key
} else {
this.formobj.payWayKey = ''
this.showHide = true
}
},
changerRceiveCompany(value) {
const choose = this.receiveCompany_list.filter((item) => item.name === value)
@ -788,6 +791,7 @@ export default {
}
this.disabledCost = false
this.submitdisabled = false
this.showHide = true
this.diploma_list = []
this.$refs['form_obj'].resetFields()
},

Loading…
Cancel
Save