update
This commit is contained in:
parent
5fb40d839b
commit
38531b0c51
@ -2,8 +2,8 @@
|
||||
"name" : "驿佳",
|
||||
"appid" : "__UNI__F870657",
|
||||
"description" : "",
|
||||
"versionName": "1.0.4",
|
||||
"versionCode": 104,
|
||||
"versionName" : "1.0.5",
|
||||
"versionCode" : 105,
|
||||
"transformPx" : false,
|
||||
/* 5+App特有相关 */
|
||||
"app-plus" : {
|
||||
@ -68,8 +68,7 @@
|
||||
/* ios打包配置 */
|
||||
"ios" : {
|
||||
"dSYMs" : false,
|
||||
"info": {
|
||||
},
|
||||
"info" : {},
|
||||
"NSLocationWhenInUseUsageDescription" : "驿达APP需要获取您的位置信息,用于后台为您持续提供附近服务区的相关服务。",
|
||||
"NSLocationAlwaysAndWhenInUseUsageDescription" : "驿达APP需要获取您的位置信息,用于后台为您持续提供附近服务区的相关服务",
|
||||
"NSLocationAlwaysUsageDescription" : "驿达APP需要持续获取位置信息,以便在后台为您持续提供附近服务区的相关服务。",
|
||||
@ -156,9 +155,7 @@
|
||||
"urlCheck" : false
|
||||
},
|
||||
"usingComponents" : true,
|
||||
"requiredPrivateInfos": [
|
||||
"getLocation"
|
||||
],
|
||||
"requiredPrivateInfos" : [ "getLocation" ],
|
||||
"__usePrivacyCheck__" : true,
|
||||
"lazyCodeLoading" : "requiredComponents",
|
||||
"permission" : {
|
||||
|
||||
@ -737,8 +737,15 @@ export default {
|
||||
this.handleGetMemberData();
|
||||
this.handleGetOnlineShoppingMall();
|
||||
},
|
||||
onHide(){
|
||||
this.isLoading = false
|
||||
},
|
||||
onUnload() {
|
||||
this.isShow = false;
|
||||
this.isLoading = false
|
||||
},
|
||||
destroyed(){
|
||||
this.isLoading = false
|
||||
},
|
||||
onShow() {
|
||||
uni.hideTabBar({
|
||||
|
||||
@ -62,7 +62,8 @@
|
||||
</view>
|
||||
</scroll-view>
|
||||
|
||||
<view v-show="selectTab === 1" style="background-color: #fff;margin-top: 24rpx;">
|
||||
<view v-if="chaegeBoxList && chaegeBoxList.length > 0"
|
||||
style="background-color: #fff;margin-top: 24rpx;">
|
||||
<ChargeBox :showType="'horizontal'" :serviceAreaList="chaegeBoxList" pageType="scanCode"
|
||||
:showStore="true" :comeForm="'home'" :showPadding="true" />
|
||||
</view>
|
||||
@ -94,7 +95,11 @@
|
||||
<view class="foodList">
|
||||
<view class="foodItem" v-for="(item, index) in foodList" :key="index"
|
||||
@click="handleGoFoodShop(item)">
|
||||
<image class="foodSrc" :src="item.IMAGE_URL" />
|
||||
<!-- <view class="foodSrc" :style="{ backgroundImage: `url(${item.IMAGE_URL})` }"></view> -->
|
||||
<view class="foodSrcBox">
|
||||
<image class="foodSrc" mode="aspectFit" lazy-load="true" :src="item.IMAGE_URL" />
|
||||
</view>
|
||||
|
||||
<view class="foodDetail">
|
||||
<view class="foodName">{{ item.COMMODITY_NAME }}</view>
|
||||
<!-- <view class="foodInfo">月售249 仅剩13份</view> -->
|
||||
@ -167,7 +172,7 @@
|
||||
|
||||
</view>
|
||||
<tabbar :page="'/pages/home/newIndex'" />
|
||||
<CustomLoading :visible="isLoading" @update:visible="val => isLoading = val" />
|
||||
<CustomLoading v-if="isLoading" :visible="isLoading" @update:visible="val => isLoading = val" />
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -182,6 +187,7 @@ import {
|
||||
} from "../../utils/publicMethods";
|
||||
|
||||
export default {
|
||||
|
||||
components: { tabbar, CustomLoading, ChargeBox },
|
||||
data() {
|
||||
return {
|
||||
@ -233,8 +239,6 @@ export default {
|
||||
}),
|
||||
},
|
||||
async onLoad() {
|
||||
console.log('1111');
|
||||
|
||||
// await getApp().globalData.initReady;
|
||||
// 获取手机参数对页面进行适配 主要是用于拿到胶囊的位置
|
||||
let systemInfo = uni.getSystemInfoSync();
|
||||
@ -263,6 +267,7 @@ export default {
|
||||
this.handleOnShowUpdate(currentService)
|
||||
}
|
||||
}
|
||||
this.isLoading = false;
|
||||
},
|
||||
// 下拉刷新
|
||||
async onPullDownRefresh() {
|
||||
@ -275,6 +280,10 @@ export default {
|
||||
await this.handleOnLoad()
|
||||
this.isLoading = false
|
||||
},
|
||||
onHide() {
|
||||
this.isLoading = false
|
||||
this.$forceUpdate();
|
||||
},
|
||||
methods: {
|
||||
...mapMutations({
|
||||
setArea: "setHomeServer",
|
||||
@ -286,8 +295,10 @@ export default {
|
||||
}),
|
||||
// onshow需要更新得内容
|
||||
async handleOnShowUpdate(currentService) {
|
||||
// this.isLoading = true
|
||||
this.isLoading = true
|
||||
let allServiceList = uni.getStorageSync("allServiceList");
|
||||
this.chaegeBoxList = []
|
||||
this.$forceUpdate()
|
||||
console.log('allServiceListallServiceListallServiceList', allServiceList);
|
||||
if (allServiceList && allServiceList.length > 0) {
|
||||
allServiceList.forEach((item) => {
|
||||
@ -296,10 +307,16 @@ export default {
|
||||
}
|
||||
})
|
||||
}
|
||||
this.chaegeBoxList = [this.serverPart]
|
||||
// 拿到当前服务区的点餐数据
|
||||
await this.handleGetCurrentService()
|
||||
// this.isLoading = false
|
||||
|
||||
|
||||
let _this = this
|
||||
setTimeout(() => {
|
||||
_this.chaegeBoxList = [_this.serverPart.SERVERPART_NAME]
|
||||
}, 500)
|
||||
|
||||
this.isLoading = false
|
||||
this.$forceUpdate()
|
||||
},
|
||||
// 跳转精选活动
|
||||
@ -330,7 +347,7 @@ export default {
|
||||
},
|
||||
// 切换tab
|
||||
handleChangeTab(obj) {
|
||||
this.selectTab = obj.value
|
||||
// this.selectTab = obj.value
|
||||
if (obj.value === 2) {
|
||||
// 出行导航
|
||||
uni.navigateTo({
|
||||
@ -354,7 +371,7 @@ export default {
|
||||
|
||||
this.nearPart = serviceInfo.currentService;
|
||||
this.serverPart = serviceInfo.currentService;
|
||||
this.chaegeBoxList = [serviceInfo.nearThreeList[0]]
|
||||
// this.chaegeBoxList = [serviceInfo.nearThreeList[0]]
|
||||
console.log('this.serverPart', this.serverPart);
|
||||
// 拿到当前服务区的点餐数据
|
||||
await this.handleGetCurrentService()
|
||||
@ -908,10 +925,27 @@ export default {
|
||||
box-sizing: border-box;
|
||||
padding: 24rpx;
|
||||
|
||||
.foodSrcBox {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 8rpx;
|
||||
overflow: hidden;
|
||||
|
||||
.foodSrc {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
margin-bottom: 16rpx;
|
||||
background-repeat: no-repeat;
|
||||
// margin-bottom: 16rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.foodSrc {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
// margin-bottom: 16rpx;
|
||||
}
|
||||
|
||||
.foodDetail {
|
||||
|
||||
@ -75,47 +75,31 @@
|
||||
<view class="contentBox">
|
||||
<view class="boxItem">
|
||||
<view class="itemLabel">1、会员推荐</view>
|
||||
<view class="itemValue"
|
||||
>成功推荐一名新会员加入,奖励推荐人<span class="light">50</span
|
||||
>个积分。</view
|
||||
>
|
||||
<view class="itemValue">成功推荐一名新会员加入,奖励推荐人<span class="light">50</span>个积分。</view>
|
||||
</view>
|
||||
|
||||
<view class="boxItem" style="margin-top: 24rpx">
|
||||
<view class="itemLabel">2、参与活动</view>
|
||||
<view class="itemValue"
|
||||
>参加服务区内的各类活动(如节庆活动、主题活动等),每次奖励<span
|
||||
class="light"
|
||||
>20-50</span
|
||||
>个积分不等。</view
|
||||
>
|
||||
<view class="itemValue">参加服务区内的各类活动(如节庆活动、主题活动等),每次奖励<span class="light">20-50</span>个积分不等。</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="contentItem" style="margin-top: 48rpx">
|
||||
<view class="itemTitle">
|
||||
<image
|
||||
class="pointIcon"
|
||||
src="https://eshangtech.com/wanmeiyizhanImg/home/specialIntegral.svg"
|
||||
/>
|
||||
<image class="pointIcon" src="https://eshangtech.com/wanmeiyizhanImg/home/specialIntegral.svg" />
|
||||
<span class="titleText">特殊积分</span>
|
||||
</view>
|
||||
|
||||
<view class="contentBox">
|
||||
<view class="boxItem">
|
||||
<view class="itemLabel">1、生日礼遇</view>
|
||||
<view class="itemValue"
|
||||
>在会员生日月份,到服务区消费单笔满<span class="light">10</span
|
||||
>元额外赠送</view
|
||||
>
|
||||
<view class="itemValue">在会员生日月份,到服务区消费单笔满<span class="light">10</span>元额外赠送</view>
|
||||
</view>
|
||||
|
||||
<view class="boxItem" style="margin-top: 24rpx">
|
||||
<view class="itemLabel">2、节假日优惠</view>
|
||||
<view class="itemValue"
|
||||
>在特定节假日期间,消费可额外得双倍积分。</view
|
||||
>
|
||||
<view class="itemValue">在特定节假日期间,消费可额外得双倍积分。</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@ -228,24 +212,28 @@ export default {
|
||||
<style scoped lang="less">
|
||||
.main {
|
||||
width: 100vw;
|
||||
// height: 100vh;
|
||||
min-height: 100vh;
|
||||
// background: #fff;
|
||||
background: #fff;
|
||||
box-sizing: border-box;
|
||||
padding: 32rpx 40rpx;
|
||||
padding-bottom: env(safe-area-inset-bottom); /* 兼容 iOS 11.2+ */
|
||||
padding-bottom: constant(safe-area-inset-bottom); /* 兼容 iOS <11.2 */
|
||||
// padding-bottom: env(safe-area-inset-bottom); /* 兼容 iOS 11.2+ */
|
||||
// padding-bottom: constant(safe-area-inset-bottom); /* 兼容 iOS <11.2 */
|
||||
|
||||
.contentItem {
|
||||
width: 100%;
|
||||
|
||||
.itemTitle {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.pointIcon {
|
||||
width: 48rpx;
|
||||
height: 48rpx;
|
||||
margin-right: 8rpx;
|
||||
}
|
||||
|
||||
.titleText {
|
||||
font-family: "PingFangSC";
|
||||
font-weight: 600;
|
||||
@ -260,9 +248,11 @@ export default {
|
||||
.itemContent {
|
||||
width: 100%;
|
||||
margin-top: 16rpx;
|
||||
|
||||
.smallTitle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.label {
|
||||
font-family: "PingFangSC";
|
||||
font-weight: 400;
|
||||
@ -272,12 +262,14 @@ export default {
|
||||
text-align: left;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.labelIcon {
|
||||
width: 80rpx;
|
||||
height: 32rpx;
|
||||
margin-left: 8rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.value {
|
||||
font-family: "PingFangSC";
|
||||
font-weight: 400;
|
||||
@ -293,6 +285,7 @@ export default {
|
||||
.table {
|
||||
width: 100%;
|
||||
margin-top: 16rpx;
|
||||
|
||||
.header {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
@ -301,6 +294,7 @@ export default {
|
||||
border-radius: 6rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.firstCol {
|
||||
width: 172rpx;
|
||||
font-family: "PingFangSC";
|
||||
@ -311,6 +305,7 @@ export default {
|
||||
text-align: left;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.secondCol {
|
||||
width: calc(100% - 172rpx);
|
||||
font-family: "PingFangSC";
|
||||
@ -322,6 +317,7 @@ export default {
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
|
||||
.row {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
@ -329,6 +325,7 @@ export default {
|
||||
border-bottom: 1px solid #f5f6f7;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.firstCol {
|
||||
width: 172rpx;
|
||||
font-family: "PingFangSC";
|
||||
@ -339,6 +336,7 @@ export default {
|
||||
text-align: left;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.secondCol {
|
||||
width: calc(100% - 172rpx);
|
||||
font-family: "PingFangSC";
|
||||
@ -355,6 +353,7 @@ export default {
|
||||
.contentBox {
|
||||
width: 100%;
|
||||
margin-top: 16rpx;
|
||||
|
||||
.boxItem {
|
||||
.itemLabel {
|
||||
font-family: "PingFangSC";
|
||||
@ -365,6 +364,7 @@ export default {
|
||||
text-align: left;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.itemValue {
|
||||
margin-top: 4rpx;
|
||||
font-family: PingFangSC, PingFang SC;
|
||||
@ -374,6 +374,7 @@ export default {
|
||||
line-height: 40rpx;
|
||||
text-align: left;
|
||||
font-style: normal;
|
||||
|
||||
.light {
|
||||
color: #ba922f;
|
||||
margin: 0 8rpx;
|
||||
|
||||
@ -629,6 +629,13 @@ export default {
|
||||
},
|
||||
// 直接点击回车 触发搜索
|
||||
handleConfirmToSearch() {
|
||||
if (!this.endObj.name) {
|
||||
uni.showToast({
|
||||
title: "请选择目的地",
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
if (this.pointList && this.pointList.length > 0 && !this.endObj.location) {
|
||||
this.handleGoUsMap(this.pointList[0]);
|
||||
this.endPlaceFocus = false;
|
||||
|
||||
@ -934,7 +934,7 @@ export default {
|
||||
};
|
||||
},
|
||||
async onLoad(query) {
|
||||
this.isLoading = true;
|
||||
// this.isLoading = true;
|
||||
let systemInfo = uni.getSystemInfoSync();
|
||||
let type = uni.getStorageSync("loginType");
|
||||
this.loginType = type;
|
||||
@ -957,7 +957,7 @@ export default {
|
||||
// this.isLoading = false;
|
||||
},
|
||||
async onShow() {
|
||||
this.isLoading = true;
|
||||
// this.isLoading = true;
|
||||
if (this.isFirst) {
|
||||
this.isFirst = false;
|
||||
} else {
|
||||
@ -972,6 +972,7 @@ export default {
|
||||
await this.handleGetMerchant();
|
||||
}
|
||||
}
|
||||
// this.isLoading = false;
|
||||
},
|
||||
computed: {
|
||||
...mapGetters({
|
||||
@ -1520,12 +1521,12 @@ export default {
|
||||
if (this.user.MEMBERSHIP_MOBILEPHONE) {
|
||||
let id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}`,
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}&buyType=${item.SCANCODE_ORDER}`,
|
||||
});
|
||||
} else {
|
||||
let id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}`,
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}&buyType=${item.SCANCODE_ORDER}`,
|
||||
});
|
||||
this.isLogin = true;
|
||||
}
|
||||
|
||||
@ -421,12 +421,12 @@ export default {
|
||||
if (this.user.MEMBERSHIP_MOBILEPHONE) {
|
||||
let id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}`,
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}&buyType=${item.SCANCODE_ORDER}`,
|
||||
});
|
||||
} else {
|
||||
let id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}`,
|
||||
url: `/pages/shopPages/shop/index?id=${id}&mid=${item.MERCHANTS_ID}&province=${item.PROVINCE_CODE}&buyType=${item.SCANCODE_ORDER}`,
|
||||
});
|
||||
this.isLogin = true;
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
6
unpackage/dist/build/app-plus/app-service.js
vendored
6
unpackage/dist/build/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
2
unpackage/dist/build/app-plus/app-view.js
vendored
2
unpackage/dist/build/app-plus/app-view.js
vendored
File diff suppressed because one or more lines are too long
2
unpackage/dist/build/app-plus/manifest.json
vendored
2
unpackage/dist/build/app-plus/manifest.json
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
547
unpackage/dist/dev/app-plus/app-service.js
vendored
547
unpackage/dist/dev/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
777
unpackage/dist/dev/app-plus/app-view.js
vendored
777
unpackage/dist/dev/app-plus/app-view.js
vendored
File diff suppressed because it is too large
Load Diff
2
unpackage/dist/dev/app-plus/manifest.json
vendored
2
unpackage/dist/dev/app-plus/manifest.json
vendored
File diff suppressed because one or more lines are too long
@ -1119,8 +1119,8 @@ function populateParameters(result) {
|
||||
var parameters = {
|
||||
appId: "__UNI__F870657",
|
||||
appName: "驿佳",
|
||||
appVersion: "1.0.4",
|
||||
appVersionCode: "104",
|
||||
appVersion: "1.0.5",
|
||||
appVersionCode: "105",
|
||||
appLanguage: getAppLanguage(hostLanguage),
|
||||
uniCompileVersion: "4.45",
|
||||
uniCompilerVersion: "4.45",
|
||||
@ -1220,8 +1220,8 @@ var getAppBaseInfo = {
|
||||
result = sortObject(Object.assign(result, {
|
||||
appId: "__UNI__F870657",
|
||||
appName: "驿佳",
|
||||
appVersion: "1.0.4",
|
||||
appVersionCode: "104",
|
||||
appVersion: "1.0.5",
|
||||
appVersionCode: "105",
|
||||
appLanguage: getAppLanguage(hostLanguage),
|
||||
hostVersion: version,
|
||||
hostLanguage: hostLanguage,
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
||||
@ -447,8 +447,15 @@ var _default = {
|
||||
this.handleGetMemberData();
|
||||
this.handleGetOnlineShoppingMall();
|
||||
},
|
||||
onHide: function onHide() {
|
||||
this.isLoading = false;
|
||||
},
|
||||
onUnload: function onUnload() {
|
||||
this.isShow = false;
|
||||
this.isLoading = false;
|
||||
},
|
||||
destroyed: function destroyed() {
|
||||
this.isLoading = false;
|
||||
},
|
||||
onShow: function onShow() {
|
||||
uni.hideTabBar({
|
||||
|
||||
@ -265,7 +265,7 @@ var _default = {
|
||||
while (1) {
|
||||
switch (_context.prev = _context.next) {
|
||||
case 0:
|
||||
_this.isLoading = true;
|
||||
// this.isLoading = true;
|
||||
systemInfo = uni.getSystemInfoSync();
|
||||
type = uni.getStorageSync("loginType");
|
||||
_this.loginType = type;
|
||||
@ -281,12 +281,12 @@ var _default = {
|
||||
if (query.come) {
|
||||
_this.come = query.come;
|
||||
}
|
||||
_context.next = 10;
|
||||
_context.next = 9;
|
||||
return _this.handleGetServerpartDetail(_this.serverpart);
|
||||
case 10:
|
||||
_context.next = 12;
|
||||
case 9:
|
||||
_context.next = 11;
|
||||
return _this.handleGetMerchant();
|
||||
case 12:
|
||||
case 11:
|
||||
case "end":
|
||||
return _context.stop();
|
||||
}
|
||||
@ -302,31 +302,30 @@ var _default = {
|
||||
while (1) {
|
||||
switch (_context2.prev = _context2.next) {
|
||||
case 0:
|
||||
_this2.isLoading = true;
|
||||
if (!_this2.isFirst) {
|
||||
_context2.next = 5;
|
||||
_context2.next = 4;
|
||||
break;
|
||||
}
|
||||
_this2.isFirst = false;
|
||||
_context2.next = 15;
|
||||
_context2.next = 14;
|
||||
break;
|
||||
case 5:
|
||||
case 4:
|
||||
currentService = uni.getStorageSync("currentService");
|
||||
console.log("onShow", currentService);
|
||||
console.log("serverpart", _this2.serverpart);
|
||||
console.log("come", _this2.come);
|
||||
// && this.come !== "chargeBox"
|
||||
if (!(currentService.SERVERPART_ID !== _this2.serverpart)) {
|
||||
_context2.next = 15;
|
||||
_context2.next = 14;
|
||||
break;
|
||||
}
|
||||
_this2.serverpart = currentService.SERVERPART_ID;
|
||||
_context2.next = 13;
|
||||
_context2.next = 12;
|
||||
return _this2.handleGetServerpartDetail(_this2.serverpart);
|
||||
case 13:
|
||||
_context2.next = 15;
|
||||
case 12:
|
||||
_context2.next = 14;
|
||||
return _this2.handleGetMerchant();
|
||||
case 15:
|
||||
case 14:
|
||||
case "end":
|
||||
return _context2.stop();
|
||||
}
|
||||
@ -963,12 +962,12 @@ var _default = {
|
||||
if (this.user.MEMBERSHIP_MOBILEPHONE) {
|
||||
var id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: "/pages/shopPages/shop/index?id=".concat(id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE)
|
||||
url: "/pages/shopPages/shop/index?id=".concat(id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE, "&buyType=").concat(item.SCANCODE_ORDER)
|
||||
});
|
||||
} else {
|
||||
var _id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: "/pages/shopPages/shop/index?id=".concat(_id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE)
|
||||
url: "/pages/shopPages/shop/index?id=".concat(_id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE, "&buyType=").concat(item.SCANCODE_ORDER)
|
||||
});
|
||||
this.isLogin = true;
|
||||
}
|
||||
|
||||
@ -394,12 +394,12 @@ var _default = {
|
||||
if (this.user.MEMBERSHIP_MOBILEPHONE) {
|
||||
var id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: "/pages/shopPages/shop/index?id=".concat(id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE)
|
||||
url: "/pages/shopPages/shop/index?id=".concat(id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE, "&buyType=").concat(item.SCANCODE_ORDER)
|
||||
});
|
||||
} else {
|
||||
var _id = item.SERVERPARTSHOP_IDS.split(",")[0];
|
||||
uni.navigateTo({
|
||||
url: "/pages/shopPages/shop/index?id=".concat(_id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE)
|
||||
url: "/pages/shopPages/shop/index?id=".concat(_id, "&mid=").concat(item.MERCHANTS_ID, "&province=").concat(item.PROVINCE_CODE, "&buyType=").concat(item.SCANCODE_ORDER)
|
||||
});
|
||||
this.isLogin = true;
|
||||
}
|
||||
|
||||
@ -164,8 +164,6 @@ export async function handleGetIOSPosition() {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
|
||||
const data = permision.judgeIosPermission("location")
|
||||
|
||||
|
||||
let locationFirst = uni.getStorageSync("locationFirst");
|
||||
|
||||
if (data) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user