1.0.1.ts 928 B

12345678910111213141516171819202122232425262728
  1. import { ScreenCtrl } from "@/modules/editor/controllers/ScreenCtrl";
  2. import { createObj } from "../factory";
  3. export function dataTransform(data: any) {
  4. if (data.version == "1.0.1") {
  5. return data;
  6. }
  7. data.version = "1.0.1";
  8. if (!data.compMap) {
  9. const root = createObj({compKey: "Page"}, false);
  10. root.id = "root";
  11. root.value.useFor = data.platform;
  12. data.compMap = {
  13. root,
  14. };
  15. const card = createObj({compKey: "Container"}, false);
  16. data.compMap[card.id] = card;
  17. data.compMap.root.children.default = [card.id]
  18. return data
  19. }
  20. if (!data.compScreenMap) { //默认为手机 long页面
  21. data.compMap.root.value.pageMode = "long";
  22. data.compMap.root.value.useFor = "mobile";
  23. data.compMap.root.value.pageSizeType = "normal";
  24. data.compScreenMap = {"mobilelongnormal": ScreenCtrl.createScreenCards(data.compMap, data.compMap.root)}
  25. }
  26. return data;
  27. }