更新功能修复bug

This commit is contained in:
weipengfei 2023-12-12 18:11:46 +08:00
parent 6a74a4a33e
commit 591100a8b7
9 changed files with 154 additions and 74 deletions

95
components/Loading.vue Normal file
View File

@ -0,0 +1,95 @@
<template>
<div class="popup" v-if="isShow">
<div class="box">
<div class="loading"></div>
<p>{{str}}</p>
</div>
</div>
</template>
<script>
export default {
name: 'Loading',
data() {
return {
isShow: false,
str: '加载中',
timer: null
};
},
mounted() {
uni.$on('showLoading', (type, str) => {
if (type == true) {
this.isShow = true;
this.str = str;
} else {
this.isShow = false;
}
})
},
methods: {
clickTow(){
}
},
};
</script>
<style scoped lang="scss">
.popup-enter-active,
.popup-leave-active {
transition: opacity 0.3s ease-in-out;
}
.popup-enter,
.popup-leave-to {
opacity: 0;
}
.popup {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 99999999;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.2);
.box{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.5);
color: #eee;
height: 300rpx;
width: 300rpx;
border-radius: 20rpx;
box-sizing: border-box;
overflow: hidden;
}
}
.loading {
width: 80rpx;
height: 80rpx;
border: 6rpx solid #eee;
border-top-color: transparent;
border-radius: 100%;
margin-bottom: 30rpx;
animation: circle infinite 0.75s linear;
}
@keyframes circle {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
</style>

View File

@ -17,10 +17,12 @@ import {
} from '@/config/app'; } from '@/config/app';
import skeleton from './components/skeleton/index.vue' import skeleton from './components/skeleton/index.vue'
import BaseMoney from './components/BaseMoney.vue'; import BaseMoney from './components/BaseMoney.vue';
import Loading from './components/Loading.vue';
import uView from '@/uni_modules/uview-ui' import uView from '@/uni_modules/uview-ui'
Vue.use(uView) Vue.use(uView)
Vue.component('skeleton', skeleton) Vue.component('skeleton', skeleton)
Vue.component('BaseMoney', BaseMoney) Vue.component('BaseMoney', BaseMoney)
Vue.component('Loading', Loading)
Vue.prototype.$util = util; Vue.prototype.$util = util;
Vue.prototype.$Cache = Cache; Vue.prototype.$Cache = Cache;
Vue.prototype.$eventHub = new Vue(); Vue.prototype.$eventHub = new Vue();

View File

@ -2,8 +2,8 @@
"name" : "惠农生活", "name" : "惠农生活",
"appid" : "__UNI__3A527D1", "appid" : "__UNI__3A527D1",
"description" : "", "description" : "",
"versionName" : "1.6.4", "versionName" : "1.6.5",
"versionCode" : 164, "versionCode" : 165,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -780,6 +780,7 @@
</div> </div>
</div> </div>
<div :style=" active === true ? 'height:' + footerConH + 'rem;' : 'height:' + footerH + 'rem;'"></div> <div :style=" active === true ? 'height:' + footerConH + 'rem;' : 'height:' + footerH + 'rem;'"></div>
<div :style=" active === true ? 'height: 0;' : 'height: 2rem;'"></div>
</scroll-view> </scroll-view>
</view> </view>
<view style="height: 100rpx;"></view> <view style="height: 100rpx;"></view>
@ -793,9 +794,9 @@
{{ speak }} {{ speak }}
</div> </div>
<view class="input_count"> <view class="input_count">
<input type="text" placeholder-class='placeholder' placeholder="输入内容" class="input" ref="input" <input type="text" placeholder-class='placeholder' :disabled="active" placeholder="输入内容" class="input" ref="input"
v-show="!voice" @input="bindInput" @keyup="keyup" @focus="focus" cursor-spacing="20" v-show="!voice" @input="bindInput" @keyup="keyup" @focus="focus" cursor-spacing="20"
v-model="textCon"> v-model="textCon" @click="handleClick">
<div class="send iconfont icon-fasong" :style="'color:'+iconColor" @click="sendTest"></div> <div class="send iconfont icon-fasong" :style="'color:'+iconColor" @click="sendTest"></div>
</view> </view>
</div> </div>
@ -808,7 +809,6 @@
<i class="em" :class="emoji" :style="'background-image:url('+ httpUrl +')'" <i class="em" :class="emoji" :style="'background-image:url('+ httpUrl +')'"
v-for="emoji in emojiList" :key="emoji" @click="addEmoji(emoji)"></i> v-for="emoji in emojiList" :key="emoji" @click="addEmoji(emoji)"></i>
</swiper-item> </swiper-item>
</block> </block>
</swiper> </swiper>
@ -1402,9 +1402,14 @@
}); });
}); });
}, },
focus: function() { focus: async function() {
this.active = false; this.active = false;
}, },
handleClick(){
if(this.active){
this.active = false;
}
},
keyup: function() { keyup: function() {
if (this.$refs.input.value.length > 0) { if (this.$refs.input.value.length > 0) {
this.sendColor = true; this.sendColor = true;
@ -1560,7 +1565,7 @@
self.scrollTop = parseInt(scrollTop) + 100 self.scrollTop = parseInt(scrollTop) + 100
} }
}).exec() }).exec()
}, 1000) }, 200)
}, },
// //
bindScroll() { bindScroll() {
@ -1626,7 +1631,8 @@
margin-top: 20rpx; margin-top: 20rpx;
width: 710rpx; width: 710rpx;
position: fixed; position: fixed;
bottom: 160rpx; bottom: 180rpx;
bottom: calc(160rpx + env(safe-area-inset-bottom)); /* 适应底部安全距离 */
left: 20rpx; left: 20rpx;
.broadcast-details_box, .broadcast-details_box,
@ -1967,11 +1973,10 @@
transition: all 0.005s cubic-bezier(0.25, 0.5, 0.5, 0.9); transition: all 0.005s cubic-bezier(0.25, 0.5, 0.5, 0.9);
background-color: #fff; background-color: #fff;
position: fixed; position: fixed;
bottom:var(--status-bar-height); // bottom:var(--status-bar-height);
bottom: 20rpx;
bottom: calc(20rpx + env(safe-area-inset-bottom) );
left: 0; left: 0;
} }
.broadcast-details .footerCon.on { .broadcast-details .footerCon.on {

View File

@ -81,6 +81,7 @@
</view> </view>
</template> </template>
</m-tabbar> --> </m-tabbar> -->
<Loading></Loading>
</view> </view>
</template> </template>
@ -287,7 +288,6 @@
this.jurisdiction = true this.jurisdiction = true
} }
this.getUserInfo() this.getUserInfo()
}, },
onPullDownRefresh() { onPullDownRefresh() {
@ -328,7 +328,9 @@
} }
}, },
// #endif // #endif
onHide() {
uni.$emit('showLoading', false);
},
methods: { methods: {
getPositionFn() { getPositionFn() {
this.street = '定位中' this.street = '定位中'
@ -435,6 +437,7 @@
}, },
getUniMp(type, data) { getUniMp(type, data) {
let that = this; let that = this;
// #ifdef APP-PLUS // #ifdef APP-PLUS
switch (type) { switch (type) {
case 1: case 1:

View File

@ -787,6 +787,7 @@
title: res.message title: res.message
}) })
}).catch(err => { }).catch(err => {
console.log(err);
// //
return that.$util.Tips({ return that.$util.Tips({
title: err title: err
@ -1060,14 +1061,14 @@
} }
that.$set(that, 'storeInfo', storeInfo); that.$set(that, 'storeInfo', storeInfo);
that.$set(that, 'description', storeInfo.content); that.$set(that, 'description', storeInfo.content);
if(typeof that.description.content == 'string'){ if(that.description?.content && typeof that.description.content == 'string'){
try{ try{
that.description.content = JSON.parse(that.description.content); that.description.content = JSON.parse(that.description.content);
}catch(e){ }catch(e){
console.log(e); console.log(e);
} }
} }
if (that.description.type == 0 && typeof that.description.content == 'string') { if (that.description?.content && that.description?.type == 0 && typeof that.description?.content == 'string') {
that.description.content = that.description.content.replace( that.description.content = that.description.content.replace(
/<img/gi, /<img/gi,
'<img style="max-width:100%;height:auto;float:left;display:block" ' '<img style="max-width:100%;height:auto;float:left;display:block" '
@ -1122,6 +1123,7 @@
that.getCouponList(); that.getCouponList();
}) })
}).catch(err => { }).catch(err => {
console.log(err);
// //
return that.$util.Tips({ return that.$util.Tips({
title: err title: err

View File

@ -398,6 +398,12 @@
type: 2 type: 2
}) })
this.cloudList = data; this.cloudList = data;
this.cloudList.forEach((item)=>{
item.children.unshift({
cate_name: '全部',
store_category_id: item.store_category_id,
});
})
this.merchant = this.cloudList[0]; this.merchant = this.cloudList[0];
this.merchantTow = this.merchant?.children[0]; this.merchantTow = this.merchant?.children[0];
this.storeParam.category_id = this.merchantTow.store_category_id; this.storeParam.category_id = this.merchantTow.store_category_id;
@ -719,14 +725,16 @@
this.storeParam.page = 1; this.storeParam.page = 1;
this.goodsList = []; this.goodsList = [];
} }
townCloud({ let query = {
street_code: this.street_id, street_code: this.street_id,
category_id: this.storeParam.category_id,
order: this.storeParam.order, order: this.storeParam.order,
keyword: this.storeParam.keyword, keyword: this.storeParam.keyword,
page: this.storeParam.page, page: this.storeParam.page,
location: this.latitude+','+this.longitude, location: this.latitude+','+this.longitude,
}).then(res => { }
if(!this.merchantTow.pid) query.cate_pid = this.storeParam.category_id; // pid
else query.category_id = this.storeParam.category_id; //
townCloud(query).then(res => {
this.goodsList = [...this.goodsList, ...res.data.list] this.goodsList = [...this.goodsList, ...res.data.list]
this.showLoading = false this.showLoading = false
this.goodsList.forEach(item => { this.goodsList.forEach(item => {

View File

@ -569,6 +569,7 @@ import { Toast } from '../../../libs/uniApi';
let self = this let self = this
if (!order_id) return that.$util.Tips({ if (!order_id) return that.$util.Tips({
title: '缺少订单号无法查看订单详情' title: '缺少订单号无法查看订单详情'
}); });
@ -576,7 +577,6 @@ import { Toast } from '../../../libs/uniApi';
uni.showLoading({ uni.showLoading({
title: '正在加载', title: '正在加载',
}) })
openOrderSubscribe().then(() => { openOrderSubscribe().then(() => {
uni.hideLoading(); uni.hideLoading();
@ -599,6 +599,7 @@ import { Toast } from '../../../libs/uniApi';
}) })
// #endif // #endif
// #ifndef MP // #ifndef MP
console.log(self.orderStatus);
if (self.orderStatus == 0) { if (self.orderStatus == 0) {
uni.navigateTo({ uni.navigateTo({
url: '/pages/order_details/stay?order_id=' + order_id url: '/pages/order_details/stay?order_id=' + order_id
@ -655,7 +656,6 @@ import { Toast } from '../../../libs/uniApi';
*/ */
statusClick: function(status) { statusClick: function(status) {
if (status == this.orderStatus) return; if (status == this.orderStatus) return;
this.orderStatus = status; this.orderStatus = status;
this.loadend = false; this.loadend = false;
this.loading = false; this.loading = false;

View File

@ -35,10 +35,7 @@ const loadMP = async (id) => {
console.log('最新版本', info.data); console.log('最新版本', info.data);
console.log(mp, uni); console.log(mp, uni);
// return ; // return ;
uni.showLoading({ uni.$emit('showLoading', true, '初始化中');
title: '初始化中...',
mask: true
})
mp.getUniMPVersion(id, (ret) => { mp.getUniMPVersion(id, (ret) => {
console.log('当前版本', ret); console.log('当前版本', ret);
let flag; let flag;
@ -51,15 +48,9 @@ const loadMP = async (id) => {
true) { true) {
let count = 0; let count = 0;
timer = setInterval(() => { timer = setInterval(() => {
if (count < 100) uni.showLoading({ if (count < 100 && count > 0) uni.$emit('showLoading', true, `初始化中... ${count}%`)
title: `初始化中... ${count}%`, else uni.$emit('showLoading', true, `初始化中... 99%`)
mask: true }, 200)
})
else uni.showLoading({
title: '初始化中...99%',
mask: true
})
}, 600)
let downloadTask = uni.downloadFile({ let downloadTask = uni.downloadFile({
url: info.data.version_info?.dow_url, url: info.data.version_info?.dow_url,
success(res) { success(res) {
@ -99,10 +90,7 @@ const loadMPx = async (id) => {
console.log('最新版本', info.data); console.log('最新版本', info.data);
console.log(mp, uni); console.log(mp, uni);
// return ; // return ;
uni.showLoading({ uni.$emit('showLoading', true, `初始化中...`)
title: '初始化中...',
mask: true
})
mp.getUniMPVersion(id, (ret) => { mp.getUniMPVersion(id, (ret) => {
console.log('当前版本', ret); console.log('当前版本', ret);
let flag; let flag;
@ -116,15 +104,9 @@ const loadMPx = async (id) => {
true) { true) {
let count = 0; let count = 0;
timer = setInterval(() => { timer = setInterval(() => {
if (count < 100) uni.showLoading({ if (count < 100 && count > 0) uni.$emit('showLoading', true, `初始化中... ${count}%`)
title: `初始化中... ${count}%`, else uni.$emit('showLoading', true, `初始化中... 99%`)
mask: true }, 200)
})
else uni.showLoading({
title: '初始化中...99%',
mask: true
})
}, 600)
let downloadTask = uni.downloadFile({ let downloadTask = uni.downloadFile({
url: info.data.appInfo.dow_url, url: info.data.appInfo.dow_url,
@ -161,10 +143,7 @@ const loadMPx = async (id) => {
const loadMPurl = async (e) => { const loadMPurl = async (e) => {
appid = e.id; appid = e.id;
let FURL = e.url; let FURL = e.url;
uni.showLoading({ uni.$emit('showLoading', true, `初始化中...`)
title: '初始化中...',
mask: true
})
uni.request({ uni.request({
url: FURL, url: FURL,
method: 'GET', method: 'GET',
@ -181,15 +160,9 @@ const loadMPurl = async (e) => {
true) { true) {
let count = 0; let count = 0;
timer = setInterval(() => { timer = setInterval(() => {
if (count < 100) uni.showLoading({ if (count < 100 && count > 0) uni.$emit('showLoading', true, `初始化中... ${count}%`)
title: `初始化中... ${count}%`, else uni.$emit('showLoading', true, `初始化中... 99%`)
mask: true }, 200)
})
else uni.showLoading({
title: '初始化中...99%',
mask: true
})
}, 600)
let downloadTask = uni.downloadFile({ let downloadTask = uni.downloadFile({
url: fileInfo.data?.data?.down_url, url: fileInfo.data?.data?.down_url,
success(res) { success(res) {
@ -232,21 +205,12 @@ const loadMPurl = async (e) => {
const loadMPdns = async (e) => { const loadMPdns = async (e) => {
appid = e.id; appid = e.id;
let FURL = e.url; let FURL = e.url;
uni.showLoading({ uni.$emit('showLoading', true, `初始化中...`)
title: '初始化中...',
mask: true
})
let count = 0; let count = 0;
timer = setInterval(() => { timer = setInterval(() => {
if (count < 100) uni.showLoading({ if (count < 100 && count > 0) uni.$emit('showLoading', true, `初始化中... ${count}%`)
title: `初始化中... ${count}%`, else uni.$emit('showLoading', true, `初始化中... 99%`)
mask: true }, 200)
})
else uni.showLoading({
title: '初始化中...99%',
mask: true
})
}, 600)
let downloadTask = uni.downloadFile({ let downloadTask = uni.downloadFile({
url: FURL, url: FURL,
success(res) { success(res) {
@ -313,6 +277,7 @@ const doInstallMP = () => {
}; };
const open = (id = null) => { const open = (id = null) => {
uni.$emit('showLoading', false);
let token = uni.getStorageSync('LOGIN_STATUS_TOKEN'); let token = uni.getStorageSync('LOGIN_STATUS_TOKEN');
if (!token) return uni.showToast({ if (!token) return uni.showToast({
icon: 'none', icon: 'none',