develop #16

Merged
uiujun merged 3 commits from develop into main 2025-10-10 14:25:26 +08:00
2 changed files with 11 additions and 2 deletions
Showing only changes of commit afa03b2fc2 - Show all commits

View File

@ -39,7 +39,10 @@ export default function Index({ title = '投诉列表' }) {
{...MyProTableProps.props}
request={async (params, sort) =>
MyProTableProps.request(
{ ...params, type: HouseWorkOrdersTypeEnum.Complaint.value },
{
...params,
type: [HouseWorkOrdersTypeEnum.Complaint.value],
},
sort,
Apis.WorkOrder.HouseWorkOrders.List,
)

View File

@ -41,7 +41,13 @@ export default function Index({ title = '工单管理' }) {
{...MyProTableProps.props}
request={async (params, sort) =>
MyProTableProps.request(
params,
{
...params,
type: [
HouseWorkOrdersTypeEnum.Repair.value,
HouseWorkOrdersTypeEnum.Incident.value,
],
},
sort,
Apis.WorkOrder.HouseWorkOrders.List,
)