完善服务模块缺少付款页的bug

This commit is contained in:
2026-06-02 11:35:31 +08:00
parent c3324d459a
commit 881262940c
35 changed files with 29069 additions and 557 deletions

View File

@@ -131,6 +131,8 @@ export type ServiceOrderType = {
appointmentTime: string
remark: string
status: ServiceOrderStatus
paymentStatus: number
payExpireAt?: string
currentAssignmentId: string
currentStaffId: string
acceptedAt: string
@@ -149,6 +151,9 @@ export type ServiceOrderType = {
executionRecord: ServiceExecutionRecordType | null
evidenceFiles: Array<ServiceEvidenceFileType>
review: ServiceReviewType | null
dispatchStatus: string
dispatchErrorCode: string
dispatchErrorMessage: string
}
export function getServiceOrderStatusText(status: ServiceOrderStatus): string {