| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "$schema": "http://json-schema.org/draft-04/schema",
- "title": "逆变器连接参数的配置",
- "type": "object",
- "required": [
- "UITemplateVersion",
- "DeviceConfigs"
- ],
- "format": "grid",
- "properties": {
- "UITemplateVersion": {
- "type": "string",
- "readOnly": true,
- "default": "1.0",
- "format": "hidden",
- "options": {
- "compact": true,
- "grid_columns": 12
- }
- },
- "DeviceConfigs": {
- "type": "array",
- "minItems": 1,
- "format": "grid",
- "uniqueItems": true,
- "title": "多个逆变器",
- "items": {
- "type": "object",
- "title": "逆变器",
- "format": "grid",
- "headerTemplate": "{{ self.DeviceName }} 的通讯地址: {{ self.SlaveAddress }}",
- "required": [ "DeviceName", "SlaveAddress" ],
- "properties": {
- "DeviceName": {
- "type": "string",
- "title": "设备名称",
- "options": {
- "infoText": "请给此设备一个易理解的名称(如: 厂房A中的1号XXX品牌逆变器),而之后系统中将以此名称来表示此设备",
- "grid_columns": 8
- }
- },
- "SlaveAddress": {
- "title": "通讯地址",
- "type": "integer",
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "每条通讯链路上的设备必须分配唯一的通讯地址, 请于 设备端 进行设置,再填写地址值至此",
- "grid_columns": 4
- }
- },
- "Description": {
- "title": "描述",
- "type": "string",
- "options": {
- "infoText": "对于此设备的补充说明",
- "grid_columns": 12
- }
- }
- }
- }
- }
- }
- }
|