更新记录
1.0.1(2019-10-02) 下载此版本
完善使用说明
1.0.0(2019-10-01) 下载此版本
构建完成,持续完善
平台兼容性
[TOC]
目录结构
本插件使用了火星的代码结构与方式。 引用:https://ext.dcloud.net.cn/plugin?id=596
- base64.vue Base64加密脚本
- xxtea.vue XXTEA加密脚本
使用方法
index.vue
<template>
<view class="e-page">
</view>
</template>
<script>
import '@/components/shoyu-xxtea/shoyu-xxtea';
export default {
data() {
return {
title: 'XXTEA',
host: 'edusoho.taobao.com',
nickname: 'shoyu',
password: '123456',
basic: false,
xxtea: false
};
},
onLoad() {
let that = this;
let string = that.nickname + ':' + that.password;
that.basic = Base64.encode(string);
that.xxtea = XXTEA.encryptToBase64(this.password, that.host);
},
methods: {}
};
</script>