| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- declare(strict_types=1);
- return json_decode(<<<'JSON'
- [
- {
- "type": "input",
- "title": "AppKey",
- "field": "app_key",
- "props": {
- "placeholder": "请输入AppKey"
- },
- "_fc_id": "id_Fj8wmdlxp75qacc",
- "name": "ref_F5uymdlxp75qadc",
- "display": true,
- "hidden": false,
- "_fc_drag_tag": "input"
- },
- {
- "type": "input",
- "title": "AppSecret",
- "field": "app_secret",
- "props": {
- "placeholder": "请输入AppSecret"
- },
- "_fc_id": "id_Fk7hmdlxp75raec",
- "name": "ref_Fo16mdlxp75rafc",
- "display": true,
- "hidden": false,
- "_fc_drag_tag": "input"
- },
- {
- "type": "input",
- "title": "AppCode",
- "field": "app_code",
- "props": {
- "placeholder": "请输入AppCode"
- },
- "_fc_id": "id_F0wwmdlxp75ragc",
- "name": "ref_F8mxmdlxp75rahc",
- "display": true,
- "hidden": false,
- "_fc_drag_tag": "input"
- }
- ]
- JSON, true);
|