样式调整

This commit is contained in:
Jerry Yan 2020-08-30 15:44:50 +08:00
parent f5530ed767
commit b9ce503ff0
2 changed files with 19 additions and 9 deletions

View File

@ -250,6 +250,7 @@
.receiveInfo { .receiveInfo {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 5px 0;
} }
.receiveInfo ._right { .receiveInfo ._right {
@ -262,7 +263,7 @@
._alipay, ._alipay,
._wechat { ._wechat {
height: 150px; height: 128px;
width: 50vw; width: 50vw;
} }

View File

@ -232,6 +232,8 @@ const app = new Vue({
method: "GET", method: "GET",
data: { data: {
page: this.currentPage, page: this.currentPage,
lat: this.location[0],
lng: this.location[1],
}, },
dataType: 'json', dataType: 'json',
success: (res) => { success: (res) => {
@ -251,6 +253,9 @@ const app = new Vue({
}, },
}, },
created() { created() {
var lat = localStorage.getItem('lat');
var lng = localStorage.getItem('lng');
if (!lat || !lng) {
plus.geolocation.getCurrentPosition((p) => { plus.geolocation.getCurrentPosition((p) => {
console.log(p.coords.latitude); console.log(p.coords.latitude);
console.log(p.coords.longitude); console.log(p.coords.longitude);
@ -260,5 +265,9 @@ const app = new Vue({
mui.alert('获取当前位置失败') mui.alert('获取当前位置失败')
waiting.close(); waiting.close();
}) })
} else {
this.location=[lat, lng];
this.loadData();
}
}, },
}) })