page-style.uts 1.9 KB
Newer Older
H
hdx 已提交
1 2

export type PageStyleItem = {
3
  key : string
H
hdx 已提交
4 5 6 7
  type : string
  value : UTSJSONObject
}

8 9 10
export const PageStyleArray = [
  {
    key: "navigationBarBackgroundColor",
H
hdx 已提交
11 12 13 14 15
    type: "string",
    value: {
      oldValue: "#F8F8F8",
      newValue: "#F0F0F0",
    }
16 17 18
  },
  {
    key: "navigationBarTextStyle",
H
hdx 已提交
19 20 21 22 23
    type: "string",
    value: {
      oldValue: "white",
      newValue: "black",
    }
24 25 26
  },
  {
    key: "navigationBarTitleText",
H
hdx 已提交
27 28 29 30 31
    type: "string",
    value: {
      oldValue: "old title",
      newValue: "new title",
    }
32 33 34
  },
  {
    key: "navigationStyle",
H
hdx 已提交
35 36 37 38 39
    type: "string",
    value: {
      oldValue: "default",
      newValue: "custom",
    }
40 41 42
  },
  {
    key: "backgroundColor",
H
hdx 已提交
43 44 45 46 47
    type: "string",
    value: {
      oldValue: "#ffffff",
      newValue: "#000000",
    }
48 49 50
  },
  {
    key: "backgroundColorContent",
H
hdx 已提交
51 52 53 54 55
    type: "string",
    value: {
      oldValue: "#ffffff",
      newValue: "#000000",
    }
56 57 58
  },
  {
    key: "backgroundTextStyle",
H
hdx 已提交
59 60 61 62 63
    type: "string",
    value: {
      oldValue: "dark",
      newValue: "light",
    }
64 65 66
  },
  {
    key: "enablePullDownRefresh",
H
hdx 已提交
67 68 69 70 71
    type: "boolean",
    value: {
      oldValue: true,
      newValue: false,
    }
72 73 74
  },
  {
    key: "onReachBottomDistance",
H
hdx 已提交
75 76 77 78 79
    type: "number",
    value: {
      oldValue: 50,
      newValue: 100,
    }
80 81 82
  },
  {
    key: "pageOrientation",
H
hdx 已提交
83 84 85 86 87
    type: "string",
    value: {
      oldValue: "auto",
      newValue: "portrait",
    }
88 89 90
  },
  {
    key: "backgroundColorTop",
H
hdx 已提交
91 92 93 94 95
    type: "string",
    value: {
      oldValue: "#ffffff",
      newValue: "#000000",
    }
96 97 98
  },
  {
    key: "backgroundColorBottom",
H
hdx 已提交
99 100 101 102 103
    type: "string",
    value: {
      oldValue: "#ffffff",
      newValue: "#000000",
    }
104 105 106
  },
  {
    key: "navigationBarAutoBackButton",
H
hdx 已提交
107 108 109 110 111
    type: "boolean",
    value: {
      oldValue: true,
      newValue: false,
    }
112
  }] as PageStyleItem[]