// 藏品信息键值对的映射 export const goodsChangeObj = { name: "藏品名称", namePrimitive: "原名", dictNum: "藏品编号名称", num: "藏品编号", dictAge: "年代", dictTexture: "文物质地", ageSpecific: "具体年代", dictGoodType: "文物类别", pcs: "实际数量", dictLevel: "文物级别", size: "外形尺寸", sizeSpecific: "具体尺寸", dictQualityScope: "质量范围", quality: "具体质量", complete: "完残程度", repair: "保存状态", dictCheckInScope: "入藏时间范围", checkInYear: "入藏年度", author: "著者", vision: "版本", onFile: "存卷", description: "来源说明", thumb: "藏品图片", fileIds: "附件信息", } as any; // 状态的筛选 export const statusObj = { 0: "待办理", //草稿中 1: "待审核", //待审核 2: "审核不通过", //审核不通过 3: "已完成", //审核通过 } as any; // 入库出库的状态筛选 export const storageStatusObj = { "0": "未入库", temp: "待审核通过", in: "已入库 ", out: "已出库", } as any; // 藏品总账,操作记录 export const logTypeObj = { in: "入库管理", out: "出库管理", move: "藏品移库", edit: "藏品修改", } as any; // 藏品总账,操作记录跳转 export const logTypeOpenObj = { in: "#/object/3/look?k=1&d=null&id=", out: "出库管理", move: "藏品移库", edit: "藏品修改", } as any;