export type B2FromDataType = { siteArr: undefined | string[]; isUploadScene: 1 | 0; province: string; city: string; region: string; searchKey: string; pmUser: string; auditStatus: "" | 0 | 1 | 2 | 3; pushStatus: "" | 0 | 2 | 3; jsonStatus: "" | 0 | 2 | 3; pageSize: number; pageNum: number; }; export type B2FromDataArer = { siteArr: undefined | string[]; province: string; city: string; }; // 场景审核 export const B1options1 = [ { value: "", label: "全部", }, { value: 0, label: "待审核", }, { value: 1, label: "初审通过", }, { value: 2, label: "审核通过", }, { value: 3, label: "审核驳回", }, ]; // 审核状态数据转换 export const B1options1Obj = { 0: "待审核", 1: "初审通过", 2: "审核通过", 3: "审核驳回", }; // 推送状态状态数据转换 export const B1options2Obj = { 0: "待推送", 2: "推送成功", 3: "推送失败", }; // 场景推送: export const B1options2 = [ { value: "", label: "全部", }, { value: 0, label: "待推送", }, { value: 2, label: "推送成功", }, { value: 3, label: "推送失败", }, ]; // Json推送: export const B1options3 = [ { value: "", label: "全部", }, { value: 0, label: "待推送", }, { value: 2, label: "推送成功", }, { value: 3, label: "推送失败", }, ];