12345678910111213141516171819202122232425 |
- <?php
- return [
- 'update' => [
- 'field' => [
- 'platform_id' => [
- 'type' => 'hidden',
- 'default' => 'Dever::call("Api/Manage/Lib/Platform.getId")',
- ],
- 'key' => [
- 'type' => 'textarea',
- 'autosize' => ['minRows' => 2],
- ],
- 'value' => [
- 'type' => 'textarea',
- 'autosize' => ['minRows' => 2],
- ],
- 'type' => [
- 'type' => 'cascader',
- 'option' => 'Dever::call("Api/Lib/Util.fieldType", "{platform_id}")',
- 'clearable' => true,
- ],
- ],
- 'drag' => 'sort',
- ],
- ];
|