商品添加客服

master
lemon橪 2021-06-24 17:59:03 +08:00
parent 1489deb618
commit 20c751a7b5
4 changed files with 8 additions and 12 deletions

View File

@ -2,8 +2,8 @@
"name" : "lili商城",
"appid" : "__UNI__C100675",
"description" : "",
"versionName" : "4.0.20",
"versionCode" : 4000020,
"versionName" : "4.0.21",
"versionCode" : 4000021,
"transformPx" : false,
"app-plus" : {
"compatible" : {

View File

@ -166,10 +166,10 @@
<u-icon size="34" class="red" name="home-fill"></u-icon>
<view class="red icon-btn-name">店铺</view>
</view>
<!-- <view class="icon-btn-item" @click="linkMsgDetail()">
<view class="icon-btn-item" @click="linkMsgDetail()">
<u-icon size="34" name="kefu-ermai"></u-icon>
<view class="icon-btn-name">客服</view>
</view> -->
</view>
<view class="icon-btn-item" @click="reluchToCart()">
<u-icon size="34" name="storeping-cart"></u-icon>
<view class="icon-btn-name">购物车</view>

View File

@ -148,7 +148,7 @@ export function orderStatusList(val) {
DELIVERED: "已发货",
CANCELLED: "已取消",
COMPLETE: "已完成",
TAKE: "已完成",
TAKE: "待核验",
};
return orderStatusList[val];
}

View File

@ -121,7 +121,7 @@ http.interceptors.request.use(
config.params = params;
config.header.accessToken = accessToken;
console.warn(accessToken);
/**
* jwt 因为安卓以及ios没有window的属性
* window.atob这个函数 base64编码的使用方法就是btoa而用于解码的使用方法是atob
@ -132,15 +132,10 @@ http.interceptors.request.use(
if (accessToken.split(".").length <= 1) {
refresh();
} else {
console.log(
JSON.parse(atob(accessToken.split(".")[1])).exp,
Math.round(new Date() / 1000)
);
if (
JSON.parse(atob(accessToken.split(".")[1])).exp <
JSON.parse(atob(accessToken.split(".")[1].replace(/-/g, '+').replace(/_/g, '/'))).exp <
Math.round(new Date() / 1000)
) {
console.log("过期时间小于当前时间刷新token");
refresh();
}
}
@ -156,6 +151,7 @@ http.interceptors.request.use(
}
);
async function refresh() {
// 本地储存的是过期token了重新获取
const getTokenResult = await refreshToken();