增加管理员联系二维码

This commit is contained in:
yml2213
2026-08-15 16:24:36 +08:00
parent 521cbe9d38
commit 00491daf5b
9 changed files with 72 additions and 105 deletions
@@ -179,6 +179,9 @@ export function saveAdminWorkerFinanceConfig(payload: {
qrCodeImage?: unknown
instructions?: string
}
adminContact?: {
wechatQrCodeImage?: unknown
}
withdraw?: {
enabled?: boolean
instructions?: string
-6
View File
@@ -153,12 +153,6 @@ export function saveWorkerAcceptanceDraft(
)
}
export function cancelWorkerOrder(workOrderId: number) {
return apiPost<{ order: WorkOrder }>(
`/api/v1/worker/orders/${workOrderId}/cancel`,
)
}
export function lookupCollectOrder(orderNo: string) {
return apiPost<CollectLookupResponse>('/api/v1/collect/lookup', { orderNo })
}