import { DeptType } from "@/store/organization"; export const deptTypeDesc = { [DeptType.corps]: "总队", [DeptType.detachment]: "支队", [DeptType.brigade]: "大队", }; export const deptTypeOptions = [ { label: deptTypeDesc[DeptType.corps], value: DeptType.corps, }, { label: deptTypeDesc[DeptType.detachment], value: DeptType.detachment, }, { label: deptTypeDesc[DeptType.brigade], value: DeptType.brigade, }, ];