feat(person/collection): collection
This commit is contained in:
60
app/management/person/collection/config.ts
Normal file
60
app/management/person/collection/config.ts
Normal 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 }],
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user