Merge branch 'dev' of https://e.coding.net/g-cphe0354/xiaochengxusaomadiancan/cashier_weapp into gaohao
This commit is contained in:
61
App.vue
61
App.vue
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<button v-show="false" open-type="getPhoneNumber" @getphonenumber="userlogin"> </button>
|
||||
</template>
|
||||
<script>
|
||||
import Api from '@/common/js/api.js'
|
||||
export default {
|
||||
onLaunch: function() {
|
||||
// #ifdef MP-WEIXIN
|
||||
@@ -10,9 +10,42 @@
|
||||
uni.cache.set('NAME', '零点八零');
|
||||
this.userlogin()
|
||||
},
|
||||
onLoad() {},
|
||||
onLoad() {
|
||||
},
|
||||
onShow: function() {
|
||||
this.$store.dispatch("HeightActions"); //获取随时获取页面的高度
|
||||
// #ifdef MP-WEIXIN
|
||||
// 当向小程序后台请求完新版本信息,会进行回调。res: {hasUpdate: true, version: 1.0.0}
|
||||
const updateManager = uni.getUpdateManager();
|
||||
updateManager.onCheckForUpdate(function(res) {
|
||||
if (res.hasUpdate) { // 有更新
|
||||
uni.showLoading({
|
||||
title: '更新中...'
|
||||
}); // 开始下载前,显示Loading
|
||||
}
|
||||
});
|
||||
// 当新版本下载完成,会进行回调
|
||||
updateManager.onUpdateReady(function() {
|
||||
uni.hideLoading(); // 关闭 Loading
|
||||
uni.showModal({ // 弹确认框(强制更新)
|
||||
title: '更新提示',
|
||||
content: '更新完毕,是否重启?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
updateManager.applyUpdate(); // 强制小程序重启并使用新版本。
|
||||
}
|
||||
}
|
||||
})
|
||||
});
|
||||
// 当新版本下载失败,会进行回调
|
||||
updateManager.onUpdateFailed(function() {
|
||||
uni.hideLoading(); // 关闭 Loading
|
||||
uni.showToast({
|
||||
title: '更新失败,稍后再试...',
|
||||
icon: "error"
|
||||
});
|
||||
});
|
||||
// #endif
|
||||
|
||||
},
|
||||
onHide: function() {
|
||||
@@ -21,7 +54,29 @@
|
||||
methods: {
|
||||
userlogin() {
|
||||
if (!uni.cache.get('token')) {
|
||||
this.$store.dispatch("loginEvent"); //获取shapid
|
||||
uni.login({
|
||||
provider: 'weixin',
|
||||
success: (data) => {
|
||||
uni.getUserInfo({
|
||||
provider: 'weixin',
|
||||
success: async (infoRes) => {
|
||||
uni.cache.set('weixincode', data.code);
|
||||
let res = await Api.userwxlogin({
|
||||
code: uni.cache.get('weixincode'), //临时登录凭证
|
||||
rawData: infoRes.rawData,
|
||||
})
|
||||
if (res.code == 0) {
|
||||
uni.cache.set('token', res.data.token);
|
||||
uni.cache.set('miniAppOpenId', res.data.userInfo
|
||||
.miniAppOpenId)
|
||||
uni.cache.set('userInfo', res.data.userInfo);
|
||||
this.$isResolve()
|
||||
}
|
||||
},
|
||||
fail: (err) => {}
|
||||
});
|
||||
},
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -166,7 +166,7 @@ export default {
|
||||
return uni.api.get("/product/queryShopIdByTableCode", data);
|
||||
},
|
||||
geocodelocation(data) { //根据经纬度获取信息
|
||||
return uni.api.get("/location/geocode", data);
|
||||
return uni.api.get("/location/geocode", data, false);
|
||||
},
|
||||
// 修改头像和昵称
|
||||
upUserInfo(data) {
|
||||
|
||||
@@ -104,19 +104,18 @@ async function request(options) {
|
||||
if (res.code != 0) {
|
||||
console.log(options)
|
||||
if (res.code == -4) {
|
||||
// uni.showToast({
|
||||
// title: '',
|
||||
// // title: res.message || res.msg,
|
||||
// icon: "none",
|
||||
// success: () => {
|
||||
// setTimeout(res => {
|
||||
// store.dispatch("loginEvent"); //获取shapid
|
||||
// }, 1000)
|
||||
// }
|
||||
// })
|
||||
setTimeout(res => {
|
||||
store.dispatch("loginEvent"); //获取shapid
|
||||
}, 1000)
|
||||
uni.showToast({
|
||||
title: res.message || res.msg,
|
||||
icon: "none",
|
||||
success: () => {
|
||||
// setTimeout(res => {
|
||||
// store.dispatch("loginEvent"); //获取shapid
|
||||
// }, 1000)
|
||||
}
|
||||
})
|
||||
// setTimeout(res => {
|
||||
// store.dispatch("loginEvent"); //获取shapid
|
||||
// }, 1000)
|
||||
} else if (res.code == 482) {
|
||||
let nowTime = new Date() / 1000 | 0
|
||||
let offset = parseInt(res.data.message) - parseInt(nowTime);
|
||||
|
||||
4
main.js
4
main.js
@@ -23,6 +23,10 @@ uni.$u.config.unit = 'rpx'
|
||||
Vue.prototype.useStorage = useStorage
|
||||
Vue.prototype.api = Api;
|
||||
Vue.prototype.shop = Shop;
|
||||
Vue.prototype.$onLaunched = new Promise(resolve => {
|
||||
Vue.prototype.$isResolve = resolve
|
||||
})
|
||||
|
||||
// #ifdef VUE3
|
||||
import {
|
||||
createSSRApp
|
||||
|
||||
@@ -87,8 +87,9 @@
|
||||
url: '/pages/member/activatedmemberone?shopId=' + uni.cache.get('shopUser')
|
||||
})
|
||||
} else {
|
||||
uni.pro.navigateTo('member/memberdetails', {
|
||||
shopId_id: uni.cache.get('shopUser'),
|
||||
uni.pro.navigateTo('member/index', {
|
||||
shopId: uni.cache.get('shopUser'),
|
||||
type: 'index',
|
||||
})
|
||||
}
|
||||
} else {
|
||||
|
||||
@@ -41,7 +41,8 @@
|
||||
this.switchdata = false
|
||||
uni.cache.set('userInfo', resdata .data);
|
||||
uni.pro.redirectTo('/pages/member/index', {
|
||||
shopId: uni.cache.get('shopUser')
|
||||
shopId: this.shopId,
|
||||
type: 'index'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -67,17 +67,94 @@
|
||||
|
||||
}
|
||||
},
|
||||
onLoad(e) {
|
||||
this.shopId = e.shopId
|
||||
if (e.type == 'list') { //从列表进来的
|
||||
this.paygetShopByMember(e.shopId)
|
||||
} else {
|
||||
this.paygetShopByMember(e.shopId)
|
||||
async onLoad(e) {
|
||||
console.log(e)
|
||||
// if ( e.type == 'list' || e.type == 'index') {
|
||||
// this.shopId = e.shopId;
|
||||
// this.init();
|
||||
// }
|
||||
if (e.q) {
|
||||
this.shopId = this.getQueryString(decodeURIComponent(e.q), 'shopId')
|
||||
this.tokenShow = false;
|
||||
// 等待登录结果返回
|
||||
if (!uni.cache.get('token')) {
|
||||
await this.$onLaunched;
|
||||
}
|
||||
this.init();
|
||||
} else{
|
||||
this.shopId = e.shopId;
|
||||
this.init();
|
||||
}
|
||||
this.paygetActive(e.shopId) //列表
|
||||
|
||||
console.log(this.shopId)
|
||||
},
|
||||
methods: {
|
||||
async init() {
|
||||
let res = await this.api.shopUserInfo({
|
||||
"shopId": this.shopId,
|
||||
"userId": uni.cache.get('userInfo').id,
|
||||
})
|
||||
if (res.code == 0) {
|
||||
this.usershopUserinfo = res.data
|
||||
}
|
||||
if ( this.usershopUserinfo.isVip == 0 ) {
|
||||
this.memberOpen = true;
|
||||
return;
|
||||
}
|
||||
this.paygetShopByMember(this.shopId)
|
||||
this.paygetActive()
|
||||
},
|
||||
memberCancel () {
|
||||
let pages = getCurrentPages()
|
||||
if ( pages.length > 1) {
|
||||
uni.navigateBack()
|
||||
} else {
|
||||
uni.exitMiniProgram({
|
||||
success: function () {
|
||||
console.log('退出成功');
|
||||
},
|
||||
fail: function () {
|
||||
console.log('退出失败');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
sumbit(d) {
|
||||
if (d.detail.iv) {
|
||||
uni.login({
|
||||
provider: 'weixin',
|
||||
success: async (data) => {
|
||||
let res = await this.api.userwxlogins({
|
||||
code: data.code,
|
||||
encryptedData: d.detail.encryptedData,
|
||||
iv: d.detail.iv,
|
||||
shopId: this.shopId
|
||||
})
|
||||
if (res.code == 0) {
|
||||
let resdata = await this.api.loginwxuserInfo({
|
||||
userId: uni.cache.get('userInfo').id
|
||||
})
|
||||
if (resdata.code == 0) {
|
||||
uni.cache.set('userInfo', resdata .data);
|
||||
this.memberOpen = false
|
||||
this.paygetShopByMember(this.shopId)
|
||||
this.paygetActive()
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
getQueryString(url, name) { //解码
|
||||
var reg = new RegExp('(^|&|/?)' + name + '=([^&|/?]*)(&|/?|$)', 'i')
|
||||
var r = url.substr(1).match(reg)
|
||||
if (r != null) {
|
||||
return r[2]
|
||||
}
|
||||
return null;
|
||||
},
|
||||
async paygetShopByMember(w) {
|
||||
let res = await this.api.paygetShopByMember({
|
||||
page: 1,
|
||||
@@ -93,6 +170,7 @@
|
||||
page: 1,
|
||||
pageSize: 10
|
||||
})
|
||||
|
||||
try {
|
||||
this.listdata = res.data.list
|
||||
this.amount = res.data.list[0].minNum
|
||||
@@ -138,9 +216,19 @@
|
||||
title: "支付成功"
|
||||
})
|
||||
uni.hideLoading()
|
||||
setTimeout(res => {
|
||||
uni.navigateBack()
|
||||
}, 500)
|
||||
let pages = getCurrentPages()
|
||||
if ( pages.length > 1) {
|
||||
setTimeout(res => {
|
||||
uni.navigateBack()
|
||||
}, 500)
|
||||
} else {
|
||||
setTimeout(res => {
|
||||
uni.switchTab({
|
||||
url: '/pages/index/index'
|
||||
})
|
||||
}, 500)
|
||||
}
|
||||
|
||||
},
|
||||
fail: (res) => {
|
||||
uni.hideLoading()
|
||||
|
||||
@@ -110,10 +110,11 @@
|
||||
<!-- ?x-oss-process=image/resize,m_lfit,w_200,h_200,limit_90 -->
|
||||
<view class="goods" @click="clickspecifications(item1,index,index1)"
|
||||
v-for="(item1,index1) in item.products" :key="index1">
|
||||
<image class="goodsImg" v-if="item1.coverImg!=null" :lazy-load="true"
|
||||
<image class="goodsImg" v-if="item1.coverImg!=null" :lazy-load="true"
|
||||
@load="imageLoaded(item1,index,index1)"
|
||||
:src="`${item1.coverImg}${!item1.imgLoad?'?x-oss-process=image/resize,m_lfit,w_300,h_300':''}`" mode="aspectFill"></image>
|
||||
<!-- <image class="goodsImg" v-if="item1.coverImg!=null" :lazy-load="true"
|
||||
:src="`${item1.coverImg}${!item1.imgLoad?'?x-oss-process=image/resize,m_lfit,w_300,h_300':''}`"
|
||||
mode="aspectFill"></image>
|
||||
<!-- <image class="goodsImg" v-if="item1.coverImg!=null" :lazy-load="true"
|
||||
:src="`${item1.coverImg}`" mode="aspectFill"></image> -->
|
||||
<image class="goodsImg" src="@/static/1.gif" mode="" v-else :lazy-load="true"></image>
|
||||
<view v-if="item.name=='热销'" class="topSort" :class="'c'+(index1+1)">TOP{{index1+1}}
|
||||
@@ -277,7 +278,7 @@
|
||||
<view class="shop_sku_box_name">
|
||||
{{item.name}}
|
||||
</view>
|
||||
<view class="flex-start" >
|
||||
<view class="flex-start">
|
||||
<view class="shop_sku_box_item" v-for="(item1,index1) in item.children" :key="index1"
|
||||
@click="morloe(item1,index,index1,item)" :style="{color:!item1.isGrounding?'#999':''}"
|
||||
:class=" item.start == index1 ?'shop_sku_box_item_selected':''">
|
||||
@@ -389,15 +390,6 @@
|
||||
this.$store.getters.is_BarHeight.customBar)
|
||||
}
|
||||
},
|
||||
onReady() {
|
||||
// setTimeout(() => {
|
||||
// uni.getSystemInfo({
|
||||
// success: (data) => {
|
||||
// this.scrollHeight = data.windowHeight
|
||||
// }
|
||||
// })
|
||||
// }, 100);
|
||||
},
|
||||
onLoad(e) {
|
||||
if (e.q) {
|
||||
this.tableCode = this.getQueryString(decodeURIComponent(e.q), 'code')
|
||||
@@ -417,7 +409,7 @@
|
||||
uni.$off('message')
|
||||
this.fixedtrue = true
|
||||
},
|
||||
onShow() {
|
||||
async onShow() {
|
||||
let _this = this;
|
||||
this.orderdetailFlag = true;
|
||||
uni.pageScrollTo({
|
||||
@@ -425,37 +417,10 @@
|
||||
duration: 0
|
||||
});
|
||||
if (!uni.cache.get('token')) {
|
||||
uni.login({
|
||||
provider: 'weixin',
|
||||
success: async (data) => {
|
||||
try {
|
||||
uni.getUserInfo({
|
||||
provider: 'weixin',
|
||||
success: async (infoRes) => {
|
||||
uni.cache.set('weixincode', data.code);
|
||||
let res = await this.api.userwxlogin({
|
||||
code: uni.cache.get('weixincode'), //临时登录凭证
|
||||
rawData: infoRes.rawData
|
||||
})
|
||||
if (res.code == 0) {
|
||||
uni.cache.set('token', res.data.token);
|
||||
uni.cache.set('miniAppOpenId', res.data.userInfo
|
||||
.miniAppOpenId)
|
||||
uni.cache.set('userInfo', res.data.userInfo);
|
||||
uni.$on('message', this.getMessage)
|
||||
|
||||
_this.getLocation()
|
||||
}
|
||||
},
|
||||
fail: (err) => {}
|
||||
});
|
||||
} catch (e) {}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
uni.$on('message', this.getMessage)
|
||||
_this.getLocation()
|
||||
await this.$onLaunched;
|
||||
}
|
||||
uni.$on('message', this.getMessage)
|
||||
_this.getLocation()
|
||||
},
|
||||
methods: {
|
||||
navigateBacknav() {
|
||||
@@ -481,53 +446,40 @@
|
||||
"type": "connect",
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* 获取定位
|
||||
*/
|
||||
getLocation () {
|
||||
uni.getLocation({
|
||||
type: 'wgs84',
|
||||
success: async (res) => {
|
||||
let successres = await this.api.geocodelocation({
|
||||
lng: res.longitude,
|
||||
lat: res.latitude,
|
||||
})
|
||||
if (successres.code == 0) {
|
||||
let datastorage = {
|
||||
country: successres.data.addressComponent.country, // "中国"
|
||||
province: successres.data.addressComponent.province, //province: "陕西省"
|
||||
address: successres.data.addressComponent.city, //district: "西安市"
|
||||
district: successres.data.addressComponent.district, //district: "未央区"
|
||||
getLocation() {
|
||||
try {
|
||||
uni.getLocation({
|
||||
type: 'wgs84',
|
||||
success: async (res) => {
|
||||
let successres = await this.api.geocodelocation({
|
||||
lng: res.longitude,
|
||||
lat: res.latitude,
|
||||
})
|
||||
if (successres.code == 0) {
|
||||
let datastorage = {
|
||||
country: successres.data.addressComponent.country, // "中国"
|
||||
province: successres.data.addressComponent.province, //province: "陕西省"
|
||||
address: successres.data.addressComponent.city, //district: "西安市"
|
||||
district: successres.data.addressComponent.district, //district: "未央区"
|
||||
lng: res.longitude,
|
||||
lat: res.latitude,
|
||||
}
|
||||
uni.cache.set('getLocationstorage', datastorage);
|
||||
this.productqueryShop();
|
||||
}
|
||||
uni.cache.set('getLocationstorage', datastorage);
|
||||
},
|
||||
fail: async (err) => {
|
||||
this.productqueryShop();
|
||||
}
|
||||
},
|
||||
fail: async (err) => {
|
||||
console.log(err, '获取错误') //测试用于app
|
||||
let successres = await this.api.geocodelocation({
|
||||
lng: '',
|
||||
lat: '',
|
||||
})
|
||||
if (successres.code == 0) {
|
||||
console.log(successres.data.addressComponent.streetNumber.location.split(','))
|
||||
let res = successres.data.addressComponent.streetNumber.location.split(',')
|
||||
let datastorage = {
|
||||
country: successres.data.addressComponent.country, // "中国"
|
||||
province: successres.data.addressComponent.province, //province: "陕西省"
|
||||
address: successres.data.addressComponent.city, //district: "西安市"
|
||||
district: successres.data.addressComponent.district, //district: "未央区"
|
||||
lng: res[0],
|
||||
lat: res[1],
|
||||
}
|
||||
uni.cache.set('getLocationstorage', datastorage);
|
||||
this.productqueryShop();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
} catch (e) {
|
||||
this.productqueryShop();
|
||||
//TODO handle the exception
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
@@ -536,8 +488,10 @@
|
||||
async productqueryShop() {
|
||||
let res = await this.api.productqueryShop({
|
||||
code: uni.cache.get('tableCode'),
|
||||
lng: uni.cache.get('getLocationstorage').lng,
|
||||
lat: uni.cache.get('getLocationstorage').lat,
|
||||
lng: uni.cache.get('getLocationstorage').lng ? uni.cache.get('getLocationstorage').lng :
|
||||
'',
|
||||
lat: uni.cache.get('getLocationstorage').lat ? uni.cache.get('getLocationstorage').lat :
|
||||
'',
|
||||
})
|
||||
if (res.code == 0) {
|
||||
uni.cache.set('shopUser', res.data.storeInfo.id)
|
||||
@@ -551,18 +505,18 @@
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* 图片加载
|
||||
*/
|
||||
imageLoaded (item,index,index1) {
|
||||
imageLoaded(item, index, index1) {
|
||||
console.log(index)
|
||||
console.log(index1)
|
||||
console.log(this.shopProductList.productInfo[index])
|
||||
this.shopProductList.productInfo[index].products[index1]['imgLoad'] = true;
|
||||
// e.currentTarget.src
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* 商品数量增加/减少
|
||||
* @param {Object} item
|
||||
@@ -757,7 +711,7 @@
|
||||
start: -1,
|
||||
children: []
|
||||
}
|
||||
item.value.split(",").forEach((v,e)=>{
|
||||
item.value.split(",").forEach((v, e) => {
|
||||
res.children.push({
|
||||
name: v,
|
||||
isGrounding: false
|
||||
@@ -765,7 +719,7 @@
|
||||
})
|
||||
return res
|
||||
})
|
||||
|
||||
|
||||
//初始化第一列规格可编辑
|
||||
let filteredJson;
|
||||
let isSkuidname = [];
|
||||
@@ -778,14 +732,14 @@
|
||||
console.log(filteredJson);
|
||||
for (let i = 0; i < filteredJson.length; i++) {
|
||||
console.log(filteredJson[i].isGrounding)
|
||||
if ( filteredJson[i].isGrounding ) {
|
||||
if (filteredJson[i].isGrounding) {
|
||||
this.specifications.tagSnap[0].children[o].isGrounding = true
|
||||
break; // 终止循环
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
this.skuBtnText = `您还没选择${this.specifications.tagSnap[0].name}哦`
|
||||
|
||||
// this.specifications.tagSnap.forEach((val, index, arr) => { //初始化skuidname的数据 选择第一个
|
||||
@@ -809,7 +763,7 @@
|
||||
* @param {Object} item
|
||||
*/
|
||||
async morloe(e, index, index1, item) {
|
||||
if ( !e.isGrounding ) {
|
||||
if (!e.isGrounding) {
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -823,18 +777,18 @@
|
||||
}
|
||||
this.skuidname = [];
|
||||
this.specifications.tagSnap.forEach((val, i, arr) => { //初始化skuidname的数据 选择第一个
|
||||
if ( i > index ) {
|
||||
val.children.forEach(( v1,e1)=>{
|
||||
if (i > index) {
|
||||
val.children.forEach((v1, e1) => {
|
||||
v1.isGrounding = false;
|
||||
})
|
||||
val.start = -1;
|
||||
}
|
||||
if ( val.start >= 0 ) {
|
||||
if (val.start >= 0) {
|
||||
this.skuidname.push(val.children[val.start].name)
|
||||
}
|
||||
})
|
||||
// this.skuidname.splice(index, 1, e.info); //替换skuidname的数据
|
||||
|
||||
|
||||
for (let i = 0; i < this.specifications.tagSnap.length; i++) {
|
||||
if (this.specifications.tagSnap[i].start < 0) {
|
||||
this.isSpec = false;
|
||||
@@ -842,36 +796,36 @@
|
||||
break; // 终止循环
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
let filteredJson;
|
||||
let isSkuidname = [];
|
||||
//提前下一列规格循环,查看是否有下架规格
|
||||
if ( this.specifications.tagSnap[index+1] ) {
|
||||
for (let o = 0; o < this.specifications.tagSnap[index+1].children.length; o++) {
|
||||
if (this.specifications.tagSnap[index + 1]) {
|
||||
for (let o = 0; o < this.specifications.tagSnap[index + 1].children.length; o++) {
|
||||
isSkuidname = JSON.parse(JSON.stringify(this.skuidname));
|
||||
isSkuidname.push(this.specifications.tagSnap[index+1].children[o].name)
|
||||
isSkuidname.push(this.specifications.tagSnap[index + 1].children[o].name)
|
||||
//筛选符合条件的规格列表
|
||||
console.log(isSkuidname);
|
||||
filteredJson = this.querySpecList.filter(obj => obj.specSnap.indexOf(isSkuidname) == 0);
|
||||
console.log(filteredJson);
|
||||
for (let i = 0; i < filteredJson.length; i++) {
|
||||
console.log(filteredJson[i].isGrounding)
|
||||
if ( filteredJson[i].isGrounding ) {
|
||||
this.specifications.tagSnap[index+1].children[o].isGrounding = true
|
||||
if (filteredJson[i].isGrounding) {
|
||||
this.specifications.tagSnap[index + 1].children[o].isGrounding = true
|
||||
break; // 终止循环
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// res.data.forEach((v,e)=>{
|
||||
// // this.$set(this.specifications.tagSnap[e], 'children', v.value)
|
||||
// })
|
||||
console.log(this.specifications.tagSnap)
|
||||
|
||||
|
||||
this.$forceUpdate();
|
||||
this.hodgepodge(item, 2)
|
||||
},
|
||||
|
||||
@@ -78,6 +78,7 @@ const store = new Vuex.Store({
|
||||
uni.cache.set('miniAppOpenId', res.data.userInfo
|
||||
.miniAppOpenId)
|
||||
uni.cache.set('userInfo', res.data.userInfo);
|
||||
this.$isResolve()
|
||||
}
|
||||
},
|
||||
fail: (err) => {}
|
||||
|
||||
Reference in New Issue
Block a user