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

Loading…
Cancel
Save