data.ts 455 B

12345678910111213141516171819202122232425262728
  1. export type A2FromDataType = {
  2. siteLevel: 2;
  3. site: string[] | undefined;
  4. searchKey: string;
  5. pmUser: string;
  6. typeIn: "" | "pc" | "app-scan" | "app-manual";
  7. pageSize: number;
  8. pageNum: number;
  9. };
  10. export const options1 = [
  11. {
  12. value: "",
  13. label: "全部",
  14. },
  15. {
  16. value: "pc",
  17. label: "系统",
  18. },
  19. {
  20. value: "app-scan",
  21. label: "移动端扫码",
  22. },
  23. {
  24. value: "app-manual",
  25. label: "移动端手工",
  26. },
  27. ];