1234567891011121314151617181920212223 |
- <?php
- $account_id = Dever::input('id');
- $account = Dever::db('account', 'api')->find($account_id);
- return [
- 'update' => [
- 'field' => [
- 'platform_setting_id' => 'hidden',
- 'platform_setting_name' => [
- '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' => [
- 'type' => 'textarea',
- 'autosize' => ['minRows' => 2],
- ],
- ],
- ],
- ];
|