12345678910111213141516171819202122232425262728 |
- <?php
- $account_id = Dever::input('id');
- $account = Dever::db('account', 'api')->find($account_id);
- return array
- (
- 'update' => array
- (
- 'field' => array
- (
- 'platform_setting_id' => 'hidden',
- 'platform_setting_name' => array
- (
- 'name' => '参数名',
- 'type' => 'show',
- 'default' => 'Dever::call("api/platform_setting-find", "{platform_setting_id}")["name"]',
- //'disable' => true,
- //'option' => 'Dever::call("api/app.getSetting", '.$account['platform_id'].')',
- //'remote' => 'api/manage.getSettingName',
- //'remote_default' => false,
- ),
- 'value' => array
- (
- 'type' => 'textarea',
- 'autosize' => array('minRows' => 2),
- ),
- ),
- ),
- );
|