This commit is contained in:
pushuo 2022-08-05 19:18:43 +08:00
parent 3dc300e6be
commit b4d25ce7c6
1 changed files with 5 additions and 1 deletions

View File

@ -63,10 +63,14 @@
@push('footer')
<script>
@if (session('success'))
layer.msg('{{ session('success') }}')
@endif
const country_id = {{ system_setting('base.country_id', '1') }};
const zone_id = {{ system_setting('base.zone_id', '1') }};
// 获取身份
// 获取
const getZones = (country_id) => {
$http.get(`countries/${country_id}/zones`).then((res) => {
if (res.data.zones.length > 0) {