flat: bug修复
This commit is contained in:
@@ -182,7 +182,7 @@
|
||||
</tabcontrolVue>
|
||||
<SelectJobs ref="selectJobsModel"></SelectJobs>
|
||||
<!-- 后门 -->
|
||||
<view class="backdoor" @click="loginbackdoor">
|
||||
<view class="backdoor" v-if="!isMachineEnv" @click="loginbackdoor">
|
||||
<my-icons type="gift-filled" size="60"></my-icons>
|
||||
</view>
|
||||
</AppLayout>
|
||||
@@ -276,9 +276,7 @@ const resetCountdown = () => {
|
||||
const returnToHome = () => {
|
||||
stopCountdown();
|
||||
stopScanAnimation();
|
||||
uni.switchTab({
|
||||
url: '/pages/index/index',
|
||||
});
|
||||
useUserStore().logOutApp();
|
||||
};
|
||||
|
||||
// 取消登录
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<scroll-view :scroll-y="true" class="nearby-scroll" @scrolltolower="scrollBottom">
|
||||
<view class="nearby-map" @touchmove.stop.prevent>
|
||||
<map
|
||||
style="width: 100%; height:410rpx "
|
||||
style="width: 100%; height: 410rpx"
|
||||
:latitude="latitudeVal"
|
||||
:longitude="longitudeVal"
|
||||
:markers="mapCovers"
|
||||
@@ -16,7 +16,7 @@
|
||||
<image class="view-sx" :class="{ active: rangeShow }" src="@/static/icon/shaixun.png"></image>
|
||||
</view>
|
||||
<transition name="fade-slide">
|
||||
<view class="select-list" v-if="rangeShow">
|
||||
<view class="select-list" v-show="rangeShow">
|
||||
<view class="list-item button-click" v-for="(item, index) in range" @click="changeRadius(item)">
|
||||
{{ item }}km
|
||||
</view>
|
||||
@@ -147,6 +147,7 @@ function changeRangeShow() {
|
||||
}
|
||||
|
||||
function changeRadius(item) {
|
||||
console.log(item);
|
||||
pageState.search.radius = item;
|
||||
rangeShow.value = false;
|
||||
progressChange(item);
|
||||
@@ -244,7 +245,7 @@ function getInit() {
|
||||
}
|
||||
|
||||
function progressChange(value) {
|
||||
const range = 1 + value;
|
||||
const range = value < 1 ? 1 : value;
|
||||
pageState.search.radius = range;
|
||||
mapCircles.value = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user