fixed columns

This commit is contained in:
Edward Yang 2022-06-30 10:07:08 +08:00
parent 2eaf2f1e69
commit 21daa9cd9a
1 changed files with 5 additions and 1 deletions

View File

@ -14,11 +14,13 @@ return [
'name' => 'api_key',
'label' => 'API Key',
'type' => 'string',
'required' => true,
],
[
'name' => 'api_secret',
'label' => 'API Secret',
'type' => 'string',
'required' => true,
],
[
'name' => 'description',
@ -29,11 +31,13 @@ return [
'name' => 'country',
'label' => '国家',
'type' => 'select',
'option' => ['China', 'USA']
'option' => ['China', 'USA'],
'required' => true,
],
[
'name' => 'active',
'label' => '是否开启',
'type' => 'bool',
'required' => true,
]
];