优化部分代码

master
学习很差啦 2022-08-25 12:46:52 +08:00
parent cbd73ae638
commit 6bb8ca73d3
7 changed files with 15 additions and 11 deletions

View File

@ -29,7 +29,7 @@
<view>
<view style="margin:20rpx 0; color:#003a8c;" @click="navigateTo('/pages/mine/help/tips?type=user')">{{config.name}}</view>
<view>CopyRight @{{config.name}} </view>
<view>CopyRight ©{{config.name}} </view>
</view>
</view>
</view>

View File

@ -65,8 +65,14 @@ export default {
* 清除缓存重新登录
*/
async confirm() {
await logout();
this.clear();
try{
await logout();
this.clear();
}catch(e){
//TODO handle the exception
this.clear();
}
},
/**

View File

@ -125,6 +125,7 @@
<div class="sale" v-if="current === 0 && sku.afterSaleStatus">
<div
v-if="
order.flowPrice != 0 &&
sku.afterSaleStatus.includes('NOT_APPLIED') ||
sku.afterSaleStatus.includes('PART_AFTER_SALE')
"

View File

@ -335,12 +335,6 @@ export default {
type: "error",
});
return false;
} else if (checkBankno(this.form.bankAccountNumber) === false) {
this.$refs.uToast.show({
title: "银行卡卡号不正确",
type: "error",
});
return false;
} else if (this.$u.test.chinese(this.form.bankAccountName) === false) {
this.$refs.uToast.show({
title: "银行开户名输入错误",

View File

@ -1,7 +1,7 @@
<template>
<div class="layout">
<div class="box">
<u-swiper @click="clickSwiper" interval="5000" duration="500" height="300" v-if="res" name="img" :list="res.list">
<u-swiper @click="clickSwiper" interval="5000" duration="500" height="350" v-if="res" name="img" :list="res.list">
<u-loading slot="loading"></u-loading>
</u-swiper>
</div>

View File

@ -39,8 +39,10 @@
:key="_index"
>
<div class="item-img-box">
<img
<u-image
class="item-img"
width="156rpx"
height="156rpx"
:src="i.thumbnail ? i.thumbnail : i.goodsImage"
alt
/>

View File

@ -121,6 +121,7 @@ http.interceptors.response.use(
if (!isRefreshing) {
console.log('旧token',token)
isRefreshing = true;
storage.setAccessToken('')
let oldRefreshToken = storage.getRefreshToken();
//调用刷新token的接口
return refreshTokenFn(oldRefreshToken)