diff --git a/App.vue b/App.vue index 3705ce8..cb17a2b 100644 --- a/App.vue +++ b/App.vue @@ -30,6 +30,7 @@ data() { return { audioTeam: [], + timer: null } }, globalData: { @@ -108,22 +109,6 @@ // console.log("jpush连接", connectEnable) }) - - // 设置别名 - // jpushModule.setAlias({ - // 'alias': uni.getStorageSync('userId'), - // 'sequence': 1 - // }) - // - // jpushModule.addTagAliasListener(result => { - // let code = result.code - // let sequence = result.sequence - // let tags = result.tags - // let tag = result.tag - // let tagEnable = result.tagEnable - // let alias = result.alias - // console.log(alias, '别名') - // }) // 通知事件回调 jpushModule.addNotificationListener(result => { let notificationEventType = result.notificationEventType @@ -132,8 +117,6 @@ let content = result.content let extras = result.extras - console.log("通知", result) - if (result.extras.type == 'ORDER_CREATE' && result.extras.mp3.length > 0) { if (result.extras.mp3[0] == '微信') this.audioTeam.push('/static/audio/wechat.MP3') if (result.extras.mp3[0] == '支付宝') this.audioTeam.push('/static/audio/pay.MP3') @@ -287,37 +270,24 @@ methods: { //网络检测 checknetwork() { - uni.onNetworkStatusChange(function(res) { - if (res.isConnected) { - uni.reLaunch({ url: '/pages/index/index' }) - } else { - + let that = this; uni.showModal({ - title: '系统提示', - content: '当前设备无网络或网络较差', - cancelText: '取消', - confirmText: '确定', - success: (res) => { - if (res.confirm) { - + that.timer = null; uni.reLaunch({ - url: '/pages/index/index' - }) - } else { // #ifdef H5 @@ -325,25 +295,17 @@ uni.navigateTo({ url: '/pages/users/login/login_copy' }) - // #endif // #ifdef APP-PLUS - + that.timer = null; plus.runtime.quit() - // #endif - } - } - }) - } - }) - }, /** * 语音播报 diff --git a/api/order.js b/api/order.js index 49cb8fd..06b76cd 100644 --- a/api/order.js +++ b/api/order.js @@ -9,6 +9,14 @@ // +---------------------------------------------------------------------- import request from "@/utils/request.js"; +/** + * 退款订单 + * @param numType + */ +export function refundListNew(data) { + return request.get("refund/list", data); +} + /** * 校验支付密码是否正确 * @param numType diff --git a/api/store.js b/api/store.js index 2965e37..e4b2f32 100644 --- a/api/store.js +++ b/api/store.js @@ -300,6 +300,19 @@ export function getStoreCategory(id, data) { noAuth: true }); } + +/** + * 新获取商品分类 + * @param {Object} id 商铺 id + * @param {Object} data + */ +export function getProductCategoryList(data) { + return request.get("store/product/category/index", data, { + noAuth: true + }); +} + + /** * 关注商铺 * @param {Object} type_id 商铺 id diff --git a/components/addcartWindow/index.vue b/components/addcartWindow/index.vue index 7392081..71de4ea 100644 --- a/components/addcartWindow/index.vue +++ b/components/addcartWindow/index.vue @@ -1,9 +1,11 @@ + \ No newline at end of file diff --git a/pages/users/refund/confirm.vue b/pages/users/refund/confirm.vue index 49080c8..71772cf 100644 --- a/pages/users/refund/confirm.vue +++ b/pages/users/refund/confirm.vue @@ -61,7 +61,7 @@ - 申请退款 + 申请退款 diff --git a/pages/users/user_address/index.vue b/pages/users/user_address/index.vue index c9f44f9..6c889d7 100644 --- a/pages/users/user_address/index.vue +++ b/pages/users/user_address/index.vue @@ -1,536 +1,647 @@ + + .addAddress .wechatAddress { + width: 690rpx; + height: 86rpx; + border-radius: 50rpx; + text-align: center; + line-height: 86rpx; + margin: 0 auto; + font-size: 32rpx; + color: var(--view-theme); + border: 1px solid var(--view-theme); + } + \ No newline at end of file diff --git a/pages/whole_sale/index.vue b/pages/whole_sale/index.vue index 389fdc6..6abd3ff 100644 --- a/pages/whole_sale/index.vue +++ b/pages/whole_sale/index.vue @@ -1,487 +1,244 @@ -