diff --git a/api/public.js b/api/public.js index b559279..7154954 100644 --- a/api/public.js +++ b/api/public.js @@ -139,4 +139,23 @@ export function getNavigation(data) { */ export function applet(data) { return request.get(`applet`, data); +} + +/** + * 绑定小程序账号 + * @param data object 小程序用户登陆信息 + */ +export function bindMp(data) { + return request.post("auth/bindMp", data, { + noAuth: true + }); +} +/** + * 绑定极光id + * @param data object 小程序用户登陆信息 + */ +export function bindJG(data) { + return request.post("auth/bindJg", data, { + noAuth: true + }); } \ No newline at end of file diff --git a/pages/cloud_warehouse/market/market.vue b/pages/cloud_warehouse/market/market.vue index 6cd2085..8dd5328 100644 --- a/pages/cloud_warehouse/market/market.vue +++ b/pages/cloud_warehouse/market/market.vue @@ -350,9 +350,11 @@ - + + diff --git a/pages/users/login/login_copy.vue b/pages/users/login/login_copy.vue index 0ee61ff..a7d45b9 100644 --- a/pages/users/login/login_copy.vue +++ b/pages/users/login/login_copy.vue @@ -281,7 +281,7 @@ mapGetters } from "vuex"; import Verify from '@/components/verify/verify.vue'; -import { Toast } from "../../../libs/uniApi"; + import { Toast } from "../../../libs/uniApi"; const BACK_URL = "login_back_url"; // #ifdef APP-PLUS var jpushModule = uni.requireNativePlugin("JG-JPush"); @@ -1117,13 +1117,15 @@ import { Toast } from "../../../libs/uniApi"; // #ifdef APP-PLUS jpushModule.initJPushService() jpushModule.getRegistrationID(result => { - if (result.registerID) { - bindJG({ phone: this.account, jg_register_id: result.registerID - }) + }).then(res=>{ + console.log("绑定成功", res); + }).catch(err=>{ + console.log("绑定失败", err); + }) } }) // #endif diff --git a/pages/whole_sale/index.vue b/pages/whole_sale/index.vue index f968225..0df85ca 100644 --- a/pages/whole_sale/index.vue +++ b/pages/whole_sale/index.vue @@ -379,6 +379,9 @@ onPageScroll() { uni.$emit('scroll'); }, + onPullDownRefresh() { + this.getProductslist(true, true); + }, onReachBottom() { this.getProductslist(); }, @@ -443,7 +446,10 @@ }) this.cate_change_children = 0; if (this.tabsCurr == 1) this.where.mer_cate_id = this.store_category[e].store_category_id; - else this.where.cate_id = this.store_category[e].store_category_id + else { + this.where.cate_pid = this.store_category[e].store_category_id; + this.where.cate_id = ""; + } this.getProductslist(true); }, changeChildrenCate(e) { @@ -474,7 +480,7 @@ store_category_id: '' }) }, - getProductslist(reLoad = false) { + getProductslist(reLoad = false, stop=false) { if (reLoad) { this.where.page = 1; this.hostProduct = []; @@ -483,6 +489,7 @@ if (this.isLoading == -1) return; this.isLoading = 1; getProductslist(this.where, true).then(res => { + if(stop) uni.stopPullDownRefresh(); if (reLoad) this.hostProduct = []; this.hostProduct = [...this.hostProduct, ...res.data.list]; this.isLoading = 0; diff --git a/utils/request.js b/utils/request.js index 653b4f1..0f1f2e8 100644 --- a/utils/request.js +++ b/utils/request.js @@ -117,8 +117,10 @@ function baseRequest(url, method, data, { url: '/pages/error/index' }) reject(res.data); - } else - reject(res.data.message || '系统错误'); + } else { + console.error("请求失败", res) + reject(res.data.message || '系统错误'); + } }, fail: (message) => { reject('请求失败');