You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

163 lines
5.2 KiB

<template>
<view>
<view class="edgeInsetTop"></view>
<view class="cu-list menu sm-border">
<view class="cu-item" style="min-height:200rpx;" @tap="$wanlshop.auth('user')">
<view class="cu-avatar round lg margin-right" :style="{backgroundImage: 'url('+ $wanlshop.oss(user.avatar, 52, 52, 2, 'avatar') +')'}"></view>
<view class="content" style="line-height: 1.5em;">
<view class="text-lg">
{{user.nickname || '未登录'}}
</view>
<view class="wanl-grey text-df">
用户名{{user.username || '未登录'}}
</view>
</view>
<view class="action">
<text class="wlIcon-jifen"></text>
<text class="margin-lr-xs">编辑</text>
<text class="wlIcon-fanhui2"></text>
</view>
</view>
<view class="cu-item arrow" @tap="$wanlshop.auth('../address/address')">
<view class="content">
<text>我的收货地址</text>
</view>
</view>
</view>
<view class="cu-list menu sm-border margin-top">
<view class="cu-item arrow" @tap="$wanlshop.auth('security')">
<view class="content">
<text>账号与安全</text>
</view>
</view>
</view>
<view class="cu-list menu sm-border margin-top">
<view class="cu-item arrow" @tap="$wanlshop.to('notice')">
<view class="content">
<text>新消息通知</text>
</view>
</view>
<!-- <view class="cu-item arrow" @tap="$wanlshop.to('privacy')">
<view class="content">
<text>隐私</text>
</view>
</view> -->
<view class="cu-item arrow" @tap="$wanlshop.to('currency')">
<view class="content">
<text>通用</text>
</view>
</view>
</view>
<view class="cu-list menu sm-border margin-top">
<view class="cu-item arrow" @tap="clearCache()">
<view class="content">
<text>清除缓存</text>
</view>
<view class="action">
<view class="cu-tag round">
{{fileSizeString}}
</view>
</view>
</view>
<view class="cu-item arrow" @tap="$wanlshop.to('about','pop-in',200)">
<view class="content">
<text>关于</text>
</view>
<view class="action">
<text class="wanl-gray">{{common.version}}</text>
</view>
</view>
</view>
</view>
</template>
<script>
import {mapState} from 'vuex';
export default {
data() {
return {
fileSizeString: '0 B',
}
},
computed: {
...mapState(['user','common'])
},
onLoad() {
// #ifdef APP-PLUS
this.formatSize();
// #endif
},
methods: {
formatSize() {
plus.cache.calculate((size)=> {
let sizeCache = parseInt(size);
if (sizeCache == 0) {
this.fileSizeString = "0 B";
} else if (sizeCache < 1024) {
this.fileSizeString = sizeCache + " B";
} else if (sizeCache < 1048576) {
this.fileSizeString = (sizeCache / 1024).toFixed(2) + " KB";
} else if (sizeCache < 1073741824) {
this.fileSizeString = (sizeCache / 1048576).toFixed(2) + " MB";
} else {
this.fileSizeString = (sizeCache / 1073741824).toFixed(2) + " GB";
}
});
},
clearCache() {
// #ifndef APP-PLUS
this.$wanlshop.msg('没有发现任何缓存');
// #endif
// #ifdef APP-PLUS
uni.showModal({
title: '提示',
content: '确定要清除缓存',
success: (res)=> {
if (res.confirm) {
if (plus.os.name == 'Android') {
let main = plus.android.runtimeMainActivity();
let sdRoot = main.getCacheDir();
let files = plus.android.invoke(sdRoot, "listFiles");
let len = files.length;
for (let i = 0; i < len; i++) {
let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
plus.io.resolveLocalFileSystemURL(filePath, (entry)=> {
if (entry.isDirectory) {
entry.removeRecursively((entry)=> { //递归删除其下的所有文件及子目录
this.$wanlshop.msg('缓存清理完成');
this.formatSize(); // 重新计算缓存
}, (e)=> {
console.log(e.message)
});
} else {
entry.remove();
}
}, (e)=> {
console.log('文件路径读取失败')
});
}
} else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错
plus.cache.clear(()=> {
this.$wanlshop.msg('缓存清理完成');
this.formatSize();
});
}
}
}
});
// #endif
}
}
}
</script>
<style>
</style>