File size: 1,411 Bytes
c9d0005
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
  "schema": {
    "type": "object",
    "properties": {
      "input": {
        "title": "简单输入框",
        "type": "string",
        "min": 6,
        "rules": [
          {
            "pattern": "^[A-Za-z0-9]+$",
            "message": "只允许填写英文字母和数字"
          }
        ]
      },
      "select": {
        "title": "单选",
        "type": "string",
        "tooltip": "单项选择",
        "enum": [
          "a",
          "b",
          "c"
        ],
        "enumNames": [
          "早",
          "中",
          "晚"
        ]
      },
      "date": {
        "title": "日期",
        "type": "string",
        "widget": "dateRange"
      },
      "listName2": {
        "title": "对象数组",
        "description": "对象数组嵌套功能",
        "type": "array",
        "min": 1,
        "max": 3,
        "items": {
          "type": "object",
          "properties": {
            "input1": {
              "title": "简单输入框",
              "type": "string"
            },
            "select1": {
              "title": "单选",
              "type": "string",
              "enum": [
                "a",
                "b",
                "c"
              ],
              "enumNames": [
                "早",
                "中",
                "晚"
              ]
            }
          }
        }
      }
    }
  }
}