作者 lihan
1 个管道 的构建 通过 耗费 0 秒

自动定位功能

... ... @@ -153,7 +153,9 @@ class IndexController extends HomeBaseController
'lat' => request()->param('lat'),
'lng' => request()->param('lng')
];
Db::name('user')->update($position);
if(Db::name('user')->update($position)) {
$this->success('', '', true);
}
}
}
\ No newline at end of file
... ...
... ... @@ -200,7 +200,13 @@
lng:longitude
},
type:"POST",
dataType:"JSON"
dataType:"JSON",
success : function (data) {
if(data.data === true) {
window.location.reload();
}
}
})
}
});
... ...