master #1

Merged
bichangxiong merged 2 commits from master into prod 2025-08-26 14:15:20 +08:00
2 changed files with 8 additions and 3 deletions

View File

@@ -33,8 +33,13 @@ export const querySchema: FormSchemaGetter = () => [
export const columns: VxeGridProps['columns'] = [ export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 }, { type: 'checkbox', width: 60 },
{ {
title: '房屋', title: '费用类型',
field: 'roomNumber', field: 'costType',
slots: {
default: ({ row }) => {
return renderDict(row.costType, 'pro_expense_type');
},
},
}, },
{ {
title: '费用项目', title: '费用项目',

View File

@@ -36,7 +36,7 @@ async function handleOpenChange(open: boolean) {
<BasicModal :footer="false" :fullscreen-button="false" title="缴费审核详情" class="w-[70%]"> <BasicModal :footer="false" :fullscreen-button="false" title="缴费审核详情" class="w-[70%]">
<Descriptions v-if="paymentReviewDetail" size="small" :column="2" bordered <Descriptions v-if="paymentReviewDetail" size="small" :column="2" bordered
:labelStyle="{width:'120px'}"> :labelStyle="{width:'120px'}">
<DescriptionsItem label="房屋"> <DescriptionsItem label="房屋" v-if="paymentReviewDetail.roomNumber">
{{ paymentReviewDetail.roomNumber }} {{ paymentReviewDetail.roomNumber }}
</DescriptionsItem> </DescriptionsItem>
<DescriptionsItem label="费用项目"> <DescriptionsItem label="费用项目">