整票提交

zth
lijingjia 3 weeks ago
parent 6150236abc
commit 26888248bd

@ -321,10 +321,17 @@ export const formSchema: FormSchema[] = [
{ {
field: 'currency', field: 'currency',
label: '币别/金额', label: '币别/金额',
slot: 'currency',
component: 'Input', component: 'Input',
dynamicDisabled: true, dynamicDisabled: true,
colProps: { span: 4 } colProps: { span: 4 }
}, },
{
field: 'currency',
label: '',
show: false,
component: 'Input',
},
{ {
field: 'settlementTypeId', field: 'settlementTypeId',
label: '结算方式', label: '结算方式',

@ -46,7 +46,11 @@
<div class="ds-detail-box"> <div class="ds-detail-box">
<!-- 表单区域 --> <!-- 表单区域 -->
<div class="form-area mt15"> <div class="form-area mt15">
<BasicForm @register="registerForm" /> <BasicForm @register="registerForm">
<template #currency="{ model }">
{{ model.currency }} / {{ model.amount }}
</template>
</BasicForm>
</div> </div>
<!-- 结算明细 --> <!-- 结算明细 -->
<div> <div>

@ -1194,6 +1194,7 @@ function handleEdit(data) {
break break
// //
case 'BILL_RECV_REJECTED': case 'BILL_RECV_REJECTED':
case 'BILL_PAY_REJECTED':
go({ go({
path: '/approve-fee/all-check', path: '/approve-fee/all-check',
query: { query: {

Loading…
Cancel
Save