修复容器测试并补订单回归

This commit is contained in:
yml2213
2026-08-21 12:29:19 +08:00
parent 993ddcd034
commit e6ab139071
6 changed files with 77 additions and 10 deletions
@@ -58,6 +58,7 @@ import type {
import { formatDateTime } from '@/utils/date-time'
import { getImageIdentity } from '@/utils/image-identity'
import { useIsMobile } from '@/utils/use-is-mobile'
import { buildWorkerOrderQuery } from '@/utils/worker-order-query'
const STATUS_OPTIONS = [
{ value: 'in_progress', label: '代练中' },
@@ -86,15 +87,6 @@ type FeedbackFormValues = {
content?: string
}
function buildWorkerOrderQuery(status: string, keyword: string, page: number, pageSize: number) {
return {
keyword,
page,
pageSize,
...(status === 'vip_evidence_pending' ? { vipEvidencePending: true } : { status }),
}
}
type NoteTheme = 'success' | 'processing' | 'danger' | 'warning' | 'purple' | 'default'
const PRESET_NOTE_TAGS: Array<{ label: string; theme: NoteTheme }> = [