缴费审核
This commit is contained in:
@@ -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: '费用项目',
|
||||||
|
@@ -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="费用项目">
|
||||||
|
Reference in New Issue
Block a user