会议管理

This commit is contained in:
FLL 2025-07-05 09:59:25 +08:00
parent e28ddabf57
commit 5e050a381c
3 changed files with 10 additions and 4 deletions

View File

@ -6,9 +6,15 @@ import {rentalOrderList} from "#/api/property/rentalOrder";
export const querySchema: FormSchemaGetter = () => [
{
component: 'Select',
fieldName: 'orderId',
label: '订单号',
fieldName: 'orderId',
component: 'ApiSelect',
componentProps: {
api: rentalOrderList,
resultField: 'rows',
labelField: 'orderNo',
valueField: 'id',
},
},
{
component: 'Select',

View File

@ -104,7 +104,7 @@ function handleMultiDelete() {
<template>
<Page :auto-content-height="true">
<BasicTable table-title="绿植租赁-订单收费列表">
<BasicTable table-title="订单收费列表">
<template #toolbar-tools>
<Space>
<a-button

View File

@ -149,6 +149,6 @@ export const modalSchema: FormSchemaGetter = () => [
{
label: '备注',
fieldName: 'remark',
component: 'Input',
component: 'Textarea',
},
];