feat(person/collection): collection

This commit is contained in:
2026-02-05 10:57:26 +08:00
parent ee47aed128
commit 885bf210c3
19 changed files with 2616 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
export const dispatchOpts: Record<
number,
{ label: string; opts: Array<{ label: string; value: number }> }
> = {
1: {
label: "待领取",
opts: [{ label: "标注中", value: 2 }],
},
2: {
label: "标注中",
opts: [
{ label: "标注中", value: 2 },
{ label: "审核中", value: 4 },
],
},
3: {
label: "标注完成",
opts: [
{ label: "标注中", value: 2 },
{ label: "审核中", value: 4 },
],
},
4: {
label: "审核中",
opts: [
{ label: "标注中", value: 2 },
{ label: "审核中", value: 4 },
{ label: "复审中", value: 6 },
],
},
5: {
label: "审核完成",
opts: [
{ label: "标注中", value: 2 },
{ label: "审核中", value: 4 },
{ label: "复审中", value: 6 },
{ label: "复审完成", value: 7 },
],
},
6: {
label: "复审中",
opts: [
{ label: "标注中", value: 2 },
{ label: "审核中", value: 4 },
{ label: "复审中", value: 6 },
],
},
7: {
label: "复审完成",
opts: [
{ label: "标注中", value: 2 },
{ label: "审核中", value: 4 },
{ label: "复审中", value: 6 },
],
},
8: {
label: "无法标注",
opts: [{ label: "标注中", value: 2 }],
},
}