[修改]修改文本 调整了布局

This commit is contained in:
makotocc0107
2024-08-27 17:02:16 +08:00
parent 016e6b215d
commit 90b0ebaf93
10 changed files with 98 additions and 44 deletions

View File

@@ -21,6 +21,11 @@ class ManageExporter extends SettingsPage
protected static string $settings = ExporterSettings::class;
protected static ?string $navigationLabel = 'Exporter配置管理'; // 设置侧边栏的中文名称
protected static ?string $title = 'Exporter配置管理'; // 自定义页面标题
public function form(Form $form): Form
{
return $form
@@ -28,10 +33,10 @@ class ManageExporter extends SettingsPage
Fieldset::make()
->schema([
TextInput::make('exposer_bind')
->label('bind')
->label('端口')
->required(),
TextInput::make('exposer_thread')
->label('thread')
->label('线程')
->required(),
]),