form->fill([ 'price' => Cache::get('trigger_price', ''), ]); } protected function getFormSchema(): array { return [ Forms\Components\TextInput::make('price') ->numeric() ->label('触发价格(例如 21800)') ->required(), ]; } public function submit(): void { $data = $this->form->getState(); Cache::put('trigger_price', $data['price']); $this->dispatch('notify', type: 'success', title: '✅ 触发价格已更新为:' . $data['price']); } }