1、房屋收费退费
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-19 14:43:45 +08:00
parent 2684133491
commit 89b1c527fa
7 changed files with 291 additions and 38 deletions

View File

@@ -85,7 +85,8 @@ async function handleConfirm() {
const data = cloneDeep(await formApi.getValues());
record.value.payType = data.payType
record.value.chargeCycle = data.chargeCycle
await houseChargeUpdate(record.value) ;
record.value.chargeStatus = '4'
await houseChargeUpdate(record.value);
resetInitialized();
emit('reload');
modalApi.close();
@@ -115,7 +116,7 @@ async function handleClosed() {
</DescriptionsItem>
<DescriptionsItem label="费用类型">
<component
v-if="costItem"
v-if="costItem"
:is="renderDict(costItem?.costType,'pro_expense_type')"
/>
</DescriptionsItem>
@@ -123,7 +124,7 @@ async function handleClosed() {
{{ record.startTime }}
</DescriptionsItem>
<DescriptionsItem label="房间">
{{ room.roomNumber }}
{{ room?.roomNumber }}
</DescriptionsItem>
<DescriptionsItem label="面积(㎡)">
{{ `${room?.area} (套内面积:${room?.insideInArea}` }}
@@ -134,7 +135,7 @@ async function handleClosed() {
<DescriptionsItem label="附加费">
{{ costItem?.surcharge }}
</DescriptionsItem>
<DescriptionsItem label="应收金额" :span="2">
<DescriptionsItem label="缴费金额" :span="2">
<span style="font-size: 16px;font-weight: 600;color: red" v-if="record.amountReceivable">
{{ record.amountReceivable }}
</span>