123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- $platform_id = Dever::input('set')['platform_id'] ?? 0;
- if (!$platform_id) {
- $platform_id = Dever::input('field')['platform_id'] ?? 0;
- }
- return array
- (
- 'update' => array
- (
- 'field' => array
- (
- 'sign_id' => array
- (
- 'type' => 'select',
- 'option' => 'Dever::call("api/util.getPlatformSign", '.$platform_id.')',
- 'clearable' => true,
- 'default' => '',
- ),
- 'sign_arg' => array
- (
- 'type' => 'textarea',
- 'autosize' => array('minRows' => 2),
- ),
- 'success' => array
- (
- 'type' => 'textarea',
- 'autosize' => array('minRows' => 2),
- ),
- 'error' => array
- (
- 'type' => 'textarea',
- 'autosize' => array('minRows' => 2),
- ),
- ),
- ),
- );
|