| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "success": true,
- "code": 0,
- "message": null,
- "data": {
- "xtype": "formpanel",
- "items": [{
- "xtype": "textfield",
- "name": "text",
- "bind": "{text}",
- "fieldLabel": "文本",
- "allowBlank": true,
- "columnWidth": 1
- }, {
- "xtype": "numberfield",
- "name": "num1",
- "bind": "{num1}",
- "fieldLabel": "加数",
- "allowBlank": false,
- "columnWidth": 0.5
- }, {
- "xtype": "numberfield",
- "name": "num2",
- "bind": "{num2}",
- "fieldLabel": "加数",
- "allowBlank": false,
- "columnWidth": 0.5
- }, {
- "xtype": "numberfield",
- "name": "sum",
- "bind": "{sum}",
- "fieldLabel": "和",
- "allowBlank": false,
- "columnWidth": 1
- }, {
- "xtype": "detailGridField",
- "columnWidth": 1,
- "configUrl": "resources/json/detailGridColumns1.json"
- }, {
- "xtype": "datefield",
- "name": "createTime",
- "bind": "{createTime}",
- "fieldLabel": "制单日期",
- "allowBlank": true,
- "columnWidth": 0.25
- }, {
- "xtype": "textfield",
- "name": "creator",
- "bind": "{creator}",
- "fieldLabel": "制单人",
- "allowBlank": true,
- "columnWidth": 0.25
- }, {
- "xtype": "textfield",
- "name": "field1",
- "bind": "{field1}",
- "fieldLabel": "field1",
- "allowBlank": true,
- "columnWidth": 1
- }, {
- "xtype": "textfield",
- "name": "field2",
- "bind": "{field2}",
- "fieldLabel": "field2",
- "allowBlank": true,
- "columnWidth": 1
- }]
- }
- }
|