|
|
@ -30,7 +30,7 @@ |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty">财务付款形式</div> |
|
|
|
<el-form-item> |
|
|
|
<el-select class="addinputInfo" v-model="formobj.finPaymentFormKey" placeholder="请选择" clearable filterable> |
|
|
|
<el-select class="addinputInfo" disabled v-model="formobj.finPaymentFormKey" placeholder="请选择" clearable filterable> |
|
|
|
<el-option v-for="item in finPayment_list" :disabled="item.dictValue == '按收款账号合并付款'" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
@ -279,6 +279,8 @@ export default { |
|
|
|
req.init({ orgPath: window.sessionStorage.getItem('defaultOrgPath'), userSid: window.sessionStorage.getItem('userSid') }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.formobj = res.data |
|
|
|
this.formobj.finPaymentFormKey = '01' |
|
|
|
this.formobj.finPaymentFormValue = '按资方合同编号单笔付款' |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|