This commit is contained in:
pushuo 2022-08-05 19:05:14 +08:00
parent 7f438877b3
commit fd88d859aa
2 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ class SettingController extends Controller
*/
public function store(Request $request)
{
$settings = json_decode($request->getContent(), true);
$settings = $request->all();
foreach ($settings as $key => $value) {
$data = [
'type' => 'system',
@ -67,6 +67,6 @@ class SettingController extends Controller
SettingRepo::createOrUpdate($data);
}
return json_success("修改成功");
return redirect($this->getRedirect())->with('success', '修改成功');
}
}

View File

@ -2,12 +2,11 @@
@section('title', '系统设置')
@section('content')
<div id="plugins-app-form" class="card h-min-600">
<div class="card-body">
<h6 class="border-bottom pb-3 mb-4">基础设置</h6>
<form action="" method="POST" id="app">
<form action="{{ admin_route('settings.store') }}" method="POST" id="app">
@csrf
<x-admin::form.row title="默认地址">
<div class="d-flex">
@ -65,6 +64,7 @@
@push('footer')
<script>
const country_id = {{ system_setting('base.country_id', '1') }};
const zone_id = {{ system_setting('base.zone_id', '1') }};
// 获取身份
const getZones = (country_id) => {
@ -73,7 +73,7 @@
$('select[name="zone_id"]').html('');
res.data.zones.forEach((zone) => {
$('select[name="zone_id"]').append(`
<option value="${zone.id}">${zone.name}</option>
<option ${zone_id == zone.id ? 'selected' : ''} value="${zone.id}">${zone.name}</option>
`);
});
} else {