12345678910111213141516171819202122232425262728 |
- <?php
- return [
- 'update' => [
- 'field' => [
- 'platform_id' => [
- 'rules' => true,
- 'type' => 'select',
- 'remote' => 'api/manage.getApi',
-
- 'remote_default' => false,
- ],
- 'api_id' => [
- 'rules' => true,
- 'type' => 'select',
- 'placeholder' => '选择接口',
- ],
-
- ],
- 'drag' => 'sort',
- ],
- ];
|