This commit is contained in:
RainSun 2019-11-13 12:02:33 +08:00
commit a37ec9b1ce
16 changed files with 2244 additions and 0 deletions

30
app.js Normal file
View File

@ -0,0 +1,30 @@
//app.js
App({
onLaunch: function () {
//设置高度
wx.getSystemInfo({
success: e => {
this.globalData.rpx = e.windowWidth/750;
this.globalData.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect();
this.globalData.Custom = custom;
this.globalData.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
}
})
this.globalData.bgIndex = Math.floor(Math.random()*this.globalData.bgs.length)
},
globalData: {
StatusBar: null,
Custom:null,
CustomBar: null,
bgIndex:null,
rpx:null,
bgs: ['https://uploadfile.bizhizu.cn/up/8a/8a/5c/8a8a5c23470344cb2abd24d52f9e2e7a.jpg',
'https://uploadfile.bizhizu.cn/up/ba/a1/40/baa1401b6e6744d8e29b6d5f1a058a30.jpg.source.jpg',
'https://uploadfile.bizhizu.cn/up/b5/6c/d6/b56cd6b931485f0aad80c44a6bd2144b.jpg.source.jpg',
'https://uploadfile.bizhizu.cn/up/6e/15/00/6e1500c4e6b135af47ec257b43640c5d.jpg.source.jpg',
'https://uploadfile.bizhizu.cn/up/f4/c7/ba/f4c7ba7cda104509a25043cc335c1a44.jpg',
'https://uploadfile.bizhizu.cn/2017/0913/319cdd716a5f5d6f9201dd44f5ca9755.jpg']
}
})

16
app.json Normal file
View File

@ -0,0 +1,16 @@
{
"pages": [
"pages/welcome/welcome",
"pages/home/home"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
},
"sitemapLocation": "sitemap.json"
}

10
app.wxss Normal file
View File

@ -0,0 +1,10 @@
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}

193
lib/api.js Normal file
View File

@ -0,0 +1,193 @@
var util = require('./util')
const getyiyian = callBack => {
wx.request({
url: 'https://v1.hitokoto.cn/',
success: function (res) {
if (res.data.hitokoto.length > 30) { //如果长度大于30就重新获取
getyiyian(callBack);
} else {
callBack && callBack()
wx.setStorageSync('yiyan', res.data);
}
}
})
}
const login = callBack => {
wx.login({
success: function (res) {
if (res.code) {
wx.request({
url: 'https://qr.powerrain.cn/login',
method: 'POST',
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: {
code: res.code,
sign: util.getMD5(res.code)
},
success: function (res) {
if (res.data.errcode !== 200) {
wx.hideLoading()
wx.showToast({
title: "登录失败",
icon: "none"
})
} else {
wx.hideLoading()
callBack && callBack(JSON.parse(res.data.userInfo),res.data.openid)
}
},
fail: function () {
wx.hideLoading();
wx.showToast({
title: "登录失败",
icon: "none"
})
}
})
} else {
wx.hideLoading();
wx.showToast({
title: res.errMsg,
icon: "none"
})
}
}
})
}
const createOder = (totalFee, data, callBack) => {
wx.request({
url: 'https://qr.powerrain.cn/newOrder',
method: 'POST',
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: {
totalFee: totalFee,
data:JSON.stringify(data),
},
success: function (res) {
if (res.data.errcode !== 200) {
wx.hideLoading();
wx.showToast({
title: "创建订单失败",
icon: "none"
})
} else {
callBack && callBack(res.data.params);
}
},
})
}
const delCode = (id, callBack) => {
wx.request({
url: 'https://qr.powerrain.cn/del',
method: 'POST',
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: {
id: id,
sign: util.getMD5(id)
},
success: function (res) {
console.log(res)
if (res.data.errcode !== 200) {
wx.hideLoading();
wx.showToast({
title: "删除失败",
icon: "none"
})
} else {
wx.hideLoading();
callBack && callBack()
}
},
fail: function () {
wx.hideLoading();
wx.showToast({
title: "删除失败",
icon: "none"
})
}
})
}
const reflash = (openId, callBack) => {
wx.request({
url: 'https://qr.powerrain.cn/reflash',
method: 'POST',
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: {
openId: openId,
sign: util.getMD5(openId)
},
success: function (res) {
if(res.data.errcode !== 200) {
wx.hideLoading();
wx.showToast({
title: "刷新失败",
icon: "none"
})
} else {
wx.hideLoading();
callBack && callBack(JSON.parse(res.data.userInfo))
}
},
fail: function () {
wx.hideLoading();
wx.showToast({
title: "刷新失败",
icon: "none"
})
}
})
}
const checkOrder = (out_trade_no, callBack) => {
wx.request({
url: 'https://qr.powerrain.cn/checkOrder',
method: 'POST',
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: {
out_trade_no: out_trade_no
},
success: function (res) {
if(res.data.errcode !== 200) {
wx.hideLoading();
wx.showToast({
title: "订单状态获取失败",
icon: "none"
})
} else {
wx.hideLoading();
callBack && callBack(res.data.order_id)
}
},
fail: function () {
wx.hideLoading();
wx.showToast({
title: "订单状态获取失败",
icon: "none"
})
}
})
}
module.exports = {
getyiyian: getyiyian, // callBack()
login: login, // callBack(res.data)
createOder: createOder, // totalFee, data, callBack(res.data.params)
delCode: delCode, // id, callBack()
reflash: reflash, // openId, callBack(userInfo)
checkOrder: checkOrder // out_trade_no, callBack(order_id)
}

596
lib/md5.js Normal file
View File

@ -0,0 +1,596 @@
/**
*
* MD5 (Message-Digest Algorithm)
* http://www.webtoolkit.info/
*
**/
var MD5 = function (string) {
function RotateLeft(lValue, iShiftBits) {
return (lValue << iShiftBits) | (lValue >>> (32 - iShiftBits));
}
function AddUnsigned(lX, lY) {
var lX4, lY4, lX8, lY8, lResult;
lX8 = (lX & 0x80000000);
lY8 = (lY & 0x80000000);
lX4 = (lX & 0x40000000);
lY4 = (lY & 0x40000000);
lResult = (lX & 0x3FFFFFFF) + (lY & 0x3FFFFFFF);
if (lX4 & lY4) {
return (lResult ^ 0x80000000 ^ lX8 ^ lY8);
}
if (lX4 | lY4) {
if (lResult & 0x40000000) {
return (lResult ^ 0xC0000000 ^ lX8 ^ lY8);
} else {
return (lResult ^ 0x40000000 ^ lX8 ^ lY8);
}
} else {
return (lResult ^ lX8 ^ lY8);
}
}
function F(x, y, z) { return (x & y) | ((~x) & z); }
function G(x, y, z) { return (x & z) | (y & (~z)); }
function H(x, y, z) { return (x ^ y ^ z); }
function I(x, y, z) { return (y ^ (x | (~z))); }
function FF(a, b, c, d, x, s, ac) {
a = AddUnsigned(a, AddUnsigned(AddUnsigned(F(b, c, d), x), ac));
return AddUnsigned(RotateLeft(a, s), b);
};
function GG(a, b, c, d, x, s, ac) {
a = AddUnsigned(a, AddUnsigned(AddUnsigned(G(b, c, d), x), ac));
return AddUnsigned(RotateLeft(a, s), b);
};
function HH(a, b, c, d, x, s, ac) {
a = AddUnsigned(a, AddUnsigned(AddUnsigned(H(b, c, d), x), ac));
return AddUnsigned(RotateLeft(a, s), b);
};
function II(a, b, c, d, x, s, ac) {
a = AddUnsigned(a, AddUnsigned(AddUnsigned(I(b, c, d), x), ac));
return AddUnsigned(RotateLeft(a, s), b);
};
function ConvertToWordArray(string) {
var lWordCount;
var lMessageLength = string.length;
var lNumberOfWords_temp1 = lMessageLength + 8;
var lNumberOfWords_temp2 = (lNumberOfWords_temp1 - (lNumberOfWords_temp1 % 64)) / 64;
var lNumberOfWords = (lNumberOfWords_temp2 + 1) * 16;
var lWordArray = Array(lNumberOfWords - 1);
var lBytePosition = 0;
var lByteCount = 0;
while (lByteCount < lMessageLength) {
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
lBytePosition = (lByteCount % 4) * 8;
lWordArray[lWordCount] = (lWordArray[lWordCount] | (string.charCodeAt(lByteCount) << lBytePosition));
lByteCount++;
}
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
lBytePosition = (lByteCount % 4) * 8;
lWordArray[lWordCount] = lWordArray[lWordCount] | (0x80 << lBytePosition);
lWordArray[lNumberOfWords - 2] = lMessageLength << 3;
lWordArray[lNumberOfWords - 1] = lMessageLength >>> 29;
return lWordArray;
};
function WordToHex(lValue) {
var WordToHexValue = "", WordToHexValue_temp = "", lByte, lCount;
for (lCount = 0; lCount <= 3; lCount++) {
lByte = (lValue >>> (lCount * 8)) & 255;
WordToHexValue_temp = "0" + lByte.toString(16);
WordToHexValue = WordToHexValue + WordToHexValue_temp.substr(WordToHexValue_temp.length - 2, 2);
}
return WordToHexValue;
};
function Utf8Encode(string) {
string = string.replace(/\r\n/g, "\n");
var utftext = "";
for (var n = 0; n < string.length; n++) {
var c = string.charCodeAt(n);
if (c < 128) {
utftext += String.fromCharCode(c);
}
else if ((c > 127) && (c < 2048)) {
utftext += String.fromCharCode((c >> 6) | 192);
utftext += String.fromCharCode((c & 63) | 128);
}
else {
utftext += String.fromCharCode((c >> 12) | 224);
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
utftext += String.fromCharCode((c & 63) | 128);
}
}
return utftext;
};
var x = Array();
var k, AA, BB, CC, DD, a, b, c, d;
var S11 = 7, S12 = 12, S13 = 17, S14 = 22;
var S21 = 5, S22 = 9, S23 = 14, S24 = 20;
var S31 = 4, S32 = 11, S33 = 16, S34 = 23;
var S41 = 6, S42 = 10, S43 = 15, S44 = 21;
string = Utf8Encode(string);
x = ConvertToWordArray(string);
a = 0x67452301; b = 0xEFCDAB89; c = 0x98BADCFE; d = 0x10325476;
for (k = 0; k < x.length; k += 16) {
AA = a; BB = b; CC = c; DD = d;
a = FF(a, b, c, d, x[k + 0], S11, 0xD76AA478);
d = FF(d, a, b, c, x[k + 1], S12, 0xE8C7B756);
c = FF(c, d, a, b, x[k + 2], S13, 0x242070DB);
b = FF(b, c, d, a, x[k + 3], S14, 0xC1BDCEEE);
a = FF(a, b, c, d, x[k + 4], S11, 0xF57C0FAF);
d = FF(d, a, b, c, x[k + 5], S12, 0x4787C62A);
c = FF(c, d, a, b, x[k + 6], S13, 0xA8304613);
b = FF(b, c, d, a, x[k + 7], S14, 0xFD469501);
a = FF(a, b, c, d, x[k + 8], S11, 0x698098D8);
d = FF(d, a, b, c, x[k + 9], S12, 0x8B44F7AF);
c = FF(c, d, a, b, x[k + 10], S13, 0xFFFF5BB1);
b = FF(b, c, d, a, x[k + 11], S14, 0x895CD7BE);
a = FF(a, b, c, d, x[k + 12], S11, 0x6B901122);
d = FF(d, a, b, c, x[k + 13], S12, 0xFD987193);
c = FF(c, d, a, b, x[k + 14], S13, 0xA679438E);
b = FF(b, c, d, a, x[k + 15], S14, 0x49B40821);
a = GG(a, b, c, d, x[k + 1], S21, 0xF61E2562);
d = GG(d, a, b, c, x[k + 6], S22, 0xC040B340);
c = GG(c, d, a, b, x[k + 11], S23, 0x265E5A51);
b = GG(b, c, d, a, x[k + 0], S24, 0xE9B6C7AA);
a = GG(a, b, c, d, x[k + 5], S21, 0xD62F105D);
d = GG(d, a, b, c, x[k + 10], S22, 0x2441453);
c = GG(c, d, a, b, x[k + 15], S23, 0xD8A1E681);
b = GG(b, c, d, a, x[k + 4], S24, 0xE7D3FBC8);
a = GG(a, b, c, d, x[k + 9], S21, 0x21E1CDE6);
d = GG(d, a, b, c, x[k + 14], S22, 0xC33707D6);
c = GG(c, d, a, b, x[k + 3], S23, 0xF4D50D87);
b = GG(b, c, d, a, x[k + 8], S24, 0x455A14ED);
a = GG(a, b, c, d, x[k + 13], S21, 0xA9E3E905);
d = GG(d, a, b, c, x[k + 2], S22, 0xFCEFA3F8);
c = GG(c, d, a, b, x[k + 7], S23, 0x676F02D9);
b = GG(b, c, d, a, x[k + 12], S24, 0x8D2A4C8A);
a = HH(a, b, c, d, x[k + 5], S31, 0xFFFA3942);
d = HH(d, a, b, c, x[k + 8], S32, 0x8771F681);
c = HH(c, d, a, b, x[k + 11], S33, 0x6D9D6122);
b = HH(b, c, d, a, x[k + 14], S34, 0xFDE5380C);
a = HH(a, b, c, d, x[k + 1], S31, 0xA4BEEA44);
d = HH(d, a, b, c, x[k + 4], S32, 0x4BDECFA9);
c = HH(c, d, a, b, x[k + 7], S33, 0xF6BB4B60);
b = HH(b, c, d, a, x[k + 10], S34, 0xBEBFBC70);
a = HH(a, b, c, d, x[k + 13], S31, 0x289B7EC6);
d = HH(d, a, b, c, x[k + 0], S32, 0xEAA127FA);
c = HH(c, d, a, b, x[k + 3], S33, 0xD4EF3085);
b = HH(b, c, d, a, x[k + 6], S34, 0x4881D05);
a = HH(a, b, c, d, x[k + 9], S31, 0xD9D4D039);
d = HH(d, a, b, c, x[k + 12], S32, 0xE6DB99E5);
c = HH(c, d, a, b, x[k + 15], S33, 0x1FA27CF8);
b = HH(b, c, d, a, x[k + 2], S34, 0xC4AC5665);
a = II(a, b, c, d, x[k + 0], S41, 0xF4292244);
d = II(d, a, b, c, x[k + 7], S42, 0x432AFF97);
c = II(c, d, a, b, x[k + 14], S43, 0xAB9423A7);
b = II(b, c, d, a, x[k + 5], S44, 0xFC93A039);
a = II(a, b, c, d, x[k + 12], S41, 0x655B59C3);
d = II(d, a, b, c, x[k + 3], S42, 0x8F0CCC92);
c = II(c, d, a, b, x[k + 10], S43, 0xFFEFF47D);
b = II(b, c, d, a, x[k + 1], S44, 0x85845DD1);
a = II(a, b, c, d, x[k + 8], S41, 0x6FA87E4F);
d = II(d, a, b, c, x[k + 15], S42, 0xFE2CE6E0);
c = II(c, d, a, b, x[k + 6], S43, 0xA3014314);
b = II(b, c, d, a, x[k + 13], S44, 0x4E0811A1);
a = II(a, b, c, d, x[k + 4], S41, 0xF7537E82);
d = II(d, a, b, c, x[k + 11], S42, 0xBD3AF235);
c = II(c, d, a, b, x[k + 2], S43, 0x2AD7D2BB);
b = II(b, c, d, a, x[k + 9], S44, 0xEB86D391);
a = AddUnsigned(a, AA);
b = AddUnsigned(b, BB);
c = AddUnsigned(c, CC);
d = AddUnsigned(d, DD);
}
var temp = WordToHex(a) + WordToHex(b) + WordToHex(c) + WordToHex(d);
return temp.toLowerCase();
}
module.exports = {
MD5,
md5: MD5
}

120
lib/util.js Normal file
View File

@ -0,0 +1,120 @@
const formatTime = date => {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const minute = date.getMinutes()
const second = date.getSeconds()
return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
}
const formatNumber = n => {
n = n.toString()
return n[1] ? n : '0' + n
}
const getMD5 = obj => {
let secret = 'wx0df150c438e4c8f0'
let keys = Object.keys(obj)
keys.sort()
let params = []
keys.forEach(e => {
if (obj[e] != null) {
params.push(e + '=' + obj[e])
}
})
params.push('key=' + secret)
let paramStr = params.join('&')
const md5Util = require('./md5.js')
let signResult = md5Util.md5(paramStr).toUpperCase()
return signResult
}
const checkFlag = (arg,flag, callBack) => {
flag--
console.log(arg)
console.log(flag)
if(flag == 0) {
callBack && callBack()
}
return flag
}
const checkInput = (type,content) => {
switch(type) {
case 'alcode': {
return 'alcode'
}
case 'qqcode': {
return 'qqcode'
}
case 'wxcode': {
return 'wxcode'
}
case 'username': {
return 'username'
}
case 'node': {
return 'node'
}
case 'month': {
return 'month'
}
}
}
const checkSubmit = (c) => {
var codeStatus = 0
if (c.wxcode) codeStatus++
if (c.qqcode) codeStatus++
if (c.alcode) codeStatus++
if (codeStatus < 2) {
wx.showToast({
title:'请至少录入两张二维码呦',
icon: 'none'
})
return false
}
if (!c.username) {
wx.showToast({
title:'请输入您的标题',
icon: 'none'
})
return false
}
if(!c.month) {
wx.showToast({
title: '请输入您的使用时长',
icon: 'none'
})
return false
}
var data = {}
data['wxcode'] = c.wxcode
data['alcode'] = c.alcode
data['qqcode'] = c.qqcode
data['username'] = c.username
data['openId'] = c.openId
data['node'] = c.node
data['timeout'] = ((new Date()).getTime() + 1000*60*60*24*30*c.month).toString()
var totalFee = c.month * 0.5
return {
data: data,
totalFee: totalFee
}
}
module.exports = {
formatTime: formatTime,
getMD5: getMD5,
checkFlag: checkFlag,
checkSubmit: checkSubmit,
checkInput: checkInput
}

387
pages/home/home.js Normal file
View File

@ -0,0 +1,387 @@
// pages/home/home.js
const api = require('../../lib/api')
const util = require('../../lib/util')
const app = getApp()
const g = app.globalData
Page({
/**
* 页面的初始数据
*/
data: {
CustomBar: g.CustomBar, //顶部到胶囊底部的高度
StatusBar: g.StatusBar, //安卓bar高度
src: g.bgs[g.bgIndex], //背景图片地址
yiyan:null, //一言
show: false, //控制utils页面的显示动画
display:{ //显示页面状态控制
'createBox':true,
'store':false,
'safe':false,
'start':false,
'example':false,
'maked':false
},
animating: false, //动画进行时ture->禁止触发下个动画
codes: [], //已完成的用户二维码
codeSrc:null, //预览用图片地址
createCode: { //创建二维码所用数据
wxcode: '',
qqcode: '',
alcode: '',
username: '',
openId: wx.getStorageSync('openid'),
node: '',
timeout: '',
month: 0
}
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.setData({
yiyan : wx.getStorageSync('yiyan'),
})
if(this.data.yiyan.hitokoto.length > 15) {
this.setData({
hitokotoStyle: "text-indent:2em;"
})
}
this.manageCodes()
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
// 各种界面展示的动画处理
showUtils: function(e) {
var type = e.currentTarget.dataset.type
if(this.data.animating) return
var that = this
this.data.animating = true
if(this.data.show) {
//拉起主页
this.data.codeSrc = null
let display = this.data.display
for(var i in display) {
if(i != 'createBox') display[i] = false
}
display['createBox'] = true
this.setData({
display: display,
show:false
})
setTimeout(function(){
that.data.animating = false
},500)
} else {
//拉起utils页
//阻止点击返回键
if(!type) {
this.data.animating = false
return
}
this.setData({
show: true,
})
let display = this.data.display
for(var i in display) {
if(i != type) display[i] = false
}
display[type] = true
setTimeout(function(){
that.setData({
display: display
})
that.data.animating = false
if(type == 'example') that.rouseQRcode(true,null)
},500)
}
},
//处理数据
manageCodes:function() {
let codes = wx.getStorageSync('codes')
for( let i in codes) {
let end = this.TimeDown(codes[i]['timeout'])
codes[i]['end'] = end;
}
this.setData({
codes: codes
})
},
//时间处理辅助轮
TimeDown: function(arg) {
arg = parseInt(arg)
//结束时间
var endDate = new Date(arg);
//当前时间
var nowDate = new Date();
//相差的总秒数
var totalSeconds = parseInt((endDate - nowDate) / 1000);
//天数
var days = Math.floor(totalSeconds / (60 * 60 * 24));
//取模(余数)
var modulo = totalSeconds % (60 * 60 * 24);
//小时数
var hours = Math.floor(modulo / (60 * 60));
return days + "天" + hours + "小时"
},
//删除二维码
delCode:function(e) {
var id = e.currentTarget.dataset.id
console.log(id)
wx.showModal({
title: '警告',
content: '此操作不可恢复,并且不会返还费用',
success (res) {
if (res.confirm) {
wx.showLoading({
title: '操作中',
mask:true
})
api.delCode(id,function(){
wx.showToast({
title: "删除成功"
})
})
} else if (res.cancel) {
console.log('用户点击取消')
}
}
})
},
//从已完成跳转二维码显示
bindToRouse:function(e) {
var data = e.currentTarget.dataset.data
this.rouseQRcode(false,data)
},
//唤起二维码(参数制作)
rouseQRcode:function(isExample,data) {
//isExample == true 是从示例进来的
//isExample == false 是从创建完或者已创建进来的
wx.showLoading({
title: '绘制中',
mask:true
})
if(isExample) {
var status = {
wx: true,
qq: true,
al: true
}
var text = '英博'
var id = '5dc6d61074d52b3774ab3e25'
}
else {
// 在这里还要完成页面的切换操作
// 只改display
var display = this.data.display
for(var i in display) {
if(i != 'example') display[i] = false
}
display['example'] = true
this.setData({
display:display
})
console.log(this.data.display)
// data 的内容是一条记录的row
var id = data._id['$oid']
var text = data.username
var status = {
wx: data.wxcode? true:false,
qq: data.qqcode? true:false,
al: data.alcode? true:false
}
}
this.drawQRcode(status,text,id)
},
//绘制二维码
drawQRcode:function(status,text,id) {
//传入的信息
// var status = {
// wx: true,
// qq: true,
// al: true
// }
// var text = '英博'
// var id = '5dc6d61074d52b3774ab3e25'
//基本的信息
var canvasimgbg = null
var rpx = g.rpx
var fontSet1 = 'bold ' + parseInt(50*rpx) +'px sans-serif'
var fontSet2 = parseInt(35*rpx) + 'px sans-serif'
var that = this
var app = []
if(status.wx) app.push(25)
if(status.qq) app.push(279)
if(status.al) app.push(153)
wx.downloadFile({
url: that.data.src,
success: function (res) {
canvasimgbg = res.tempFilePath
var canvas = wx.createCanvasContext('qrcode');
canvas.drawImage(canvasimgbg, 0, 0, 632*rpx, 1054*rpx);
wx.downloadFile({
url: 'https://api.ooopn.com/qr/api.php?text=https%3A%2F%2Fqr.powerrain.cn%2Fqr%3Fid%3D'+id,
success:function(res) {
canvasimgbg = res.tempFilePath
canvas.drawImage(canvasimgbg, 66*rpx, 66*rpx, 500*rpx, 500*rpx);
canvas.font = fontSet1;
canvas.textAlign = 'center';
canvas.setFillStyle('white')
canvas.fillText(text, 316*rpx, 660*rpx)
canvas.font = fontSet2;
canvas.fillText('本二维码支持以下APP向我付款', 316*rpx, 760*rpx)
wx.downloadFile({
url: 'https://gss0.baidu.com/9fo3dSag_xI4khGko9WTAnF6hhy/zhidao/pic/item/b64543a98226cffc74a50341b4014a90f703eab2.jpg',
success:function(res) {
canvasimgbg = res.tempFilePath
//先画左右,再画中间
canvas.drawImage(canvasimgbg, app[0], 0, 103, 100, 66*rpx, 830*rpx, 100*rpx, 100*rpx);
canvas.drawImage(canvasimgbg, app[1], 0, 103, 100, 463*rpx, 830*rpx, 100*rpx, 100*rpx);
if(app[2])
canvas.drawImage(canvasimgbg, app[2], 0, 103, 100, 264*rpx, 830*rpx, 100*rpx, 100*rpx);
canvas.draw(true,()=>{});
// 导出为临时图片
wx.canvasToTempFilePath({
x: 0,
y: 0,
width: 632*rpx,
height: 1054*rpx,
destWidth: 1264,
destHeight: 2108,
canvasId: 'qrcode',
success: function (res) {
console.log(res)
that.data.codeSrc = res.tempFilePath
console.log(that.data.codeSrc)
wx.hideLoading()
wx.showModal({
title: '提示',
content: '单击图片即可预览,预览界面长按即可保存',
})
}
})
}
})
}
})
}
})
},
preview: function() {
console.log(this.data.codeSrc)
wx.previewImage({
urls: [this.data.codeSrc],
})
},
//上传支付宝二维码
scanCode: function(e) {
var type = e.currentTarget.dataset.type
var that = this
wx.scanCode({
success (res) {
//utils里边写个校验返回true false
//写入
var check = util.checkInput(type,res.result)
console.log(check)
that.data.createCode[type] = res.result
that.setData({
createCode: that.data.createCode
})
wx.showToast({
title: '录入成功',
icon: 'success',
})
},
fail (err) {
console.log(err)
wx.showToast({
title: '扫码失败',
icon: 'none',
})
}
})
},
//输入用户名,月份啥的
inputChange: function(e) {
var type = e.currentTarget.dataset.type
var value = e.detail.value
var check = util.checkInput(type,value)
console.log(check)
this.data.createCode[type] = value
this.setData({
createCode: this.data.createCode
})
//utils校验返回的东西直接装进createCode
//return value
console.log(e)
},
//提交
submit: function() {
var res = util.checkSubmit(this.data.createCode)
if (!res) return
console.log(res)
//showLoading
//api.newOrder
}
})

3
pages/home/home.json Normal file
View File

@ -0,0 +1,3 @@
{
"usingComponents": {}
}

109
pages/home/home.wxml Normal file
View File

@ -0,0 +1,109 @@
<!-- pages/home/home.wxml -->
<view style="height:{{CustomBar}}px;"></view>
<view style="height:{{CustomBar-StatusBar}}px;top:{{StatusBar}}px;" class="header" bindtap="showUtils">
<view class="back {{!show? 'toHide':'toShow'}}"></view>
</view>
<image src="{{src}}" class="bg" mode="aspectFill" />
<view class="yiyan {{show? 'toHide':'toShow'}}">
<view class="title">「一言」</view>
<view class="content" style="{{hitokotoStyle}}">{{yiyan.hitokoto}}</view>
<view class="creator">-「{{yiyan.creator}}」</view>
</view>
<view class="main {{show? 'show-boxs':'hide-boxs'}}">
<view class="main-box">
<view class="create-warp" wx:if="{{display['createBox']}}">
<view class="title">新建</view>
<view class="content-box">
<view class="content" data-type="safe" bindtap="showUtils">
<view class="content-circle">
<text></text>
</view>
<view class="lable">安全保障</view>
</view>
<view class="content" data-type="start" bindtap="showUtils">
<view class="content-circle">
<text></text>
</view>
<view class="lable">开始合并</view>
</view>
<view class="content" data-type="example" bindtap="showUtils">
<view class="content-circle">
<text></text>
</view>
<view class="lable">最佳案例</view>
</view>
</view>
</view>
<view class="code-warp" wx:if="{{display['maked']}}">
<view class="code-main">
<view class="code-card" wx:for="{{codes}}" wx:key>
<view class="left" data-data="{{item}}" bindtap="bindToRouse">
<view class="item">名称:{{item.username}}</view>
<view class="item">备注:{{item.node?item.node:'您没写呀'}}</view>
<view class="item">剩余时间:{{item.end}}</view>
</view>
<view class="right" data-id="{{item._id['$oid']}}" bindtap="delCode">
<text></text>
</view>
</view>
</view>
</view>
<view class="store-warp" wx:if="{{display['store']}}">
<text></text>
<view>功能开发中</view>
</view>
<view class="safe-warp" wx:if="{{display['safe']}}">安全保障</view>
<view class="start-warp" wx:if="{{display['start']}}">
<view class="start-main">
<view class="start-title">新建</view>
<view class="icon-box">
<view class="item" data-type="alcode" bindtap="scanCode">
<!-- 支付宝 -->
<text></text>
<view class="tip">{{createCode.alcode?'录入成功':'待录入'}}</view>
</view>
<view class="item" data-type="wxcode" bindtap="scanCode">
<!-- 微信 -->
<text></text>
<view class="tip">{{createCode.wxcode?'录入成功':'待录入'}}</view>
</view>
<view class="item" data-type="qqcode" bindtap="scanCode">
<!-- QQ -->
<text></text>
<view class="tip">{{createCode.qqcode?'录入成功':'待录入'}}</view>
</view>
</view>
<view class="input-box">
<view class="label">标题</view>
<input type="text" placeholder="显示在二维码上" bindinput="inputChange" data-type="username"/>
</view>
<view class="input-box">
<view class="label">备注</view>
<input type="text" placeholder="不会显示在二维码上" bindinput="inputChange" data-type="node"/>
</view>
<view class="input-box">
<view class="label">使用时长(月)</view>
<input type="number" placeholder="输入1-12的整数" bindinput="inputChange" data-type="month"/>
</view>
<view class="submit" bindtap="submit">确认合并</view>
</view>
</view>
<view class="example-warp" wx:if="{{display['example']}}">
<canvas canvas-id="qrcode" style="margin:0 auto;height:1054rpx;width:632rpx;border-radius:20rpx;" bindtap="preview"/>
</view>
</view>
<view class="util-box" wx:if="{{display['createBox']}}">
<view class="store-box" data-type="store" bindtap="showUtils">
<view class="title">背景商店</view>
<text class="store-icon"></text>
</view>
<view class="maked-box" data-type="maked" bindtap="showUtils">
<view class="title">已完成</view>
<view class="title">{{codes.length}} 个</view>
</view>
</view>
</view>

486
pages/home/home.wxss Normal file

File diff suppressed because one or more lines are too long

125
pages/welcome/welcome.js Normal file
View File

@ -0,0 +1,125 @@
// pages/welcome/welcome.js
const api = require('../../lib/api')
const util = require('../../lib/util')
const app = getApp()
const g = app.globalData
Page({
/**
* 页面的初始数据
*/
data: {
flag: null, //两个异步请求
StatusBar: g.StatusBar, //安卓bar高度
CustomBar: g.CustomBar, //顶部到胶囊底部的高度
showButton: false,
src: g.bgs[g.bgIndex]
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.init();
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
//初始化
init : function() {
// 一共三个进程
this.flag = 3
// 登录
var that = this
api.login(function(info,openid) {
wx.setStorageSync('codes', info);
wx.setStorageSync('openid', openid);
that.flag = util.checkFlag('login',that.flag,that.jumpToHome)
})
//获取一言
api.getyiyian(()=> {
that.flag = util.checkFlag('yiyan',that.flag,that.jumpToHome)
})
this.getSystemUserInfo()
},
//获取用户信息以及权限
getSystemUserInfo() {
var that = this;
wx.getSetting({
success(res) {
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称
wx.getUserInfo({
success(res) {
wx.setStorageSync('userInfo', res.userInfo);
that.setData({
showButton:false
})
that.flag = util.checkFlag('信息',that.flag,that.jumpToHome)
}
})
} else {
that.setData({
showButton:true
})
}
}
})
},
// 跳到主页
jumpToHome() {
wx.reLaunch({
url: '../home/home'
})
// console.log('全部完成')
}
})

View File

@ -0,0 +1,3 @@
{
"usingComponents": {}
}

View File

@ -0,0 +1,16 @@
<!--pages/welcome/welcome.wxml-->
<view style="height:{{CustomBar}}px;margin-bottom:150rpx;"></view>
<image src="{{src}}" class="bg" mode="aspectFill"/>
<view class="main-page">
<view class="userAvatar-box">
<open-data type="userAvatarUrl" class="png" style="height:200rpx; width:200rpx; border-radius: 50%;"></open-data>
</view>
<view class="welcome"></view>
<view class="welcome">欢迎</view>
<view class="btn-box">
<text class="loading" wx:if="{{!showButton}}"></text>
<button wx:else open-type="getUserInfo" bindgetuserinfo="getSystemUserInfo" class="get-info">
<text></text>
</button>
</view>
</view>

View File

@ -0,0 +1,92 @@
/* pages/welcome/welcome.wxss */
page {
background: #000;
position: relative;
height:100%;
}
.bg {
position: fixed;
top:0;
left:0;
z-index: -100;
height:100%;
width:100%;
}
.bg:after{
position: absolute;
top: 0;
left: 0;
content: "";
background-color: black;
opacity: 0.5;
z-index: 1;
width: 100%;
height: 100%;
}
.main-page {
width:100%;
height:auto;
box-sizing: border-box;
padding-left:20rpx;
padding-right:20rpx;
color:#fff;
}
.userAvatar-box {
height:200rpx;
width:200rpx;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
margin: 0 auto;
}
.welcome {
font-size: 70rpx;
margin-top:20rpx;
height: 100rpx;
text-align: center;
}
.btn-box {
display: flex;
justify-content: center;
margin-top: 200rpx;
}
.loading {
display: inline-block;
margin-top: -15rpx;
width: 180rpx;
height: 180rpx;
background-image: url("data:image/svg+xml, %3Csvg class='lds-gooeyring' width='80' height='80' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' style='animation-play-state:running;animation-delay:0s;background:0 0'%3E%3Cdefs style='animation-play-state:running;animation-delay:0s'%3E%3Cfilter id='a' x='-100%25' y='-100%25' width='300%25' height='300%25' color-interpolation-filters='sRGB' style='animation-play-state:running;animation-delay:0s'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='4' style='animation-play-state:running;animation-delay:0s'/%3E%3CfeComponentTransfer result='cutoff' style='animation-play-state:running;animation-delay:0s'%3E%3CfeFuncA type='linear' slope='10' intercept='-5'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23a)' style='animation-play-state:running;animation-delay:0s' transform='translate(50 50)'%3E%3Cg transform='rotate(258)' style='animation-play-state:running;animation-delay:0s'%3E%3Ccircle cx='25' r='10.533' fill='%23fcb711' style='animation-play-state:running;animation-delay:0s'%3E%3Canimate attributeName='r' keyTimes='0;0.5;1' values='6;14;6' dur='4s' repeatCount='indefinite' begin='-4s'/%3E%3C/circle%3E%3CanimateTransform attributeName='transform' type='rotate' keyTimes='0;1' values='0;360' dur='4s' repeatCount='indefinite' begin='0s'/%3E%3C/g%3E%3Cg transform='rotate(276)' style='animation-play-state:running;animation-delay:0s'%3E%3Ccircle cx='25' r='7.6' fill='%23f37021' style='animation-play-state:running;animation-delay:0s'%3E%3Canimate attributeName='r' keyTimes='0;0.5;1' values='6;14;6' dur='2s' repeatCount='indefinite' begin='-3.3333333333333335s'/%3E%3C/circle%3E%3CanimateTransform attributeName='transform' type='rotate' keyTimes='0;1' values='0;360' dur='2s' repeatCount='indefinite' begin='-0.6666666666666666s'/%3E%3C/g%3E%3Cg transform='rotate(54)' style='animation-play-state:running;animation-delay:0s'%3E%3Ccircle cx='25' r='8.4' fill='%23cc004c' style='animation-play-state:running;animation-delay:0s'%3E%3Canimate attributeName='r' keyTimes='0;0.5;1' values='6;14;6' dur='1.3333333333333333s' repeatCount='indefinite' begin='-2.6666666666666665s'/%3E%3C/circle%3E%3CanimateTransform attributeName='transform' type='rotate' keyTimes='0;1' values='0;360' dur='1.3333333333333333s' repeatCount='indefinite' begin='-1.3333333333333333s'/%3E%3C/g%3E%3Cg transform='rotate(312)' style='animation-play-state:running;animation-delay:0s'%3E%3Ccircle cx='25' r='8.133' fill='%236460aa' style='animation-play-state:running;animation-delay:0s'%3E%3Canimate attributeName='r' keyTimes='0;0.5;1' values='6;14;6' dur='1s' repeatCount='indefinite' begin='-2s'/%3E%3C/circle%3E%3CanimateTransform attributeName='transform' type='rotate' keyTimes='0;1' values='0;360' dur='1s' repeatCount='indefinite' begin='-2s'/%3E%3C/g%3E%3Cg transform='rotate(330)' style='animation-play-state:running;animation-delay:0s'%3E%3Ccircle cx='25' r='10' fill='%230089d0' style='animation-play-state:running;animation-delay:0s'%3E%3Canimate attributeName='r' keyTimes='0;0.5;1' values='6;14;6' dur='0.8s' repeatCount='indefinite' begin='-1.3333333333333333s'/%3E%3C/circle%3E%3CanimateTransform attributeName='transform' type='rotate' keyTimes='0;1' values='0;360' dur='0.8s' repeatCount='indefinite' begin='-2.6666666666666665s'/%3E%3C/g%3E%3Cg transform='rotate(108)' style='animation-play-state:running;animation-delay:0s'%3E%3Ccircle cx='25' r='10.8' fill='%230db14b' style='animation-play-state:running;animation-delay:0s'%3E%3Canimate attributeName='r' keyTimes='0;0.5;1' values='6;14;6' dur='0.6666666666666666s' repeatCount='indefinite' begin='-0.6666666666666666s'/%3E%3C/circle%3E%3CanimateTransform attributeName='transform' type='rotate' keyTimes='0;1' values='0;360' dur='0.6666666666666666s' repeatCount='indefinite' begin='-3.3333333333333335s'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
background-size: 100% 100%;
}
.get-info {
display: inline-block;
width: 150rpx;
height: 150rpx;
color: #fff;
background: #ff365f;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.get-info text {
display: inline-block;
width: 70rpx;
height: 70rpx;
background-image: url("data:image/svg+xml,%3Csvg t='1573441316704' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2471' width='200' height='200'%3E%3Cpath d='M0.05952 448m64 0l896 0q64 0 64 64l0 0q0 64-64 64l-896 0q-64 0-64-64l0 0q0-64 64-64Z' fill='%23ffffff' p-id='2472'%3E%3C/path%3E%3Cpath d='M153.33952 512L557.49952 915.712c24.8 24.768 24.8 64.96 0 89.696a63.552 63.552 0 0 1-89.792 0L18.61952 556.864a63.392 63.392 0 0 1 0-89.728L467.67552 18.592a63.552 63.552 0 0 1 89.792 0c24.8 24.768 24.8 64.928 0 89.696L153.33952 512z' fill='%23ffffff' p-id='2473'%3E%3C/path%3E%3C/svg%3E");
background-size: 100% 100%;
transform:rotate(180deg);
}

51
project.config.json Normal file
View File

@ -0,0 +1,51 @@
{
"description": "项目配置文件",
"packOptions": {
"ignore": []
},
"setting": {
"urlCheck": false,
"es6": true,
"postcss": true,
"minified": true,
"newFeature": true,
"coverView": true,
"autoAudits": false,
"checkInvalidKey": true,
"checkSiteMap": false,
"uploadWithSourceMap": true,
"babelSetting": {
"ignore": [],
"disablePlugins": [],
"outputPath": ""
}
},
"compileType": "miniprogram",
"libVersion": "2.9.2",
"appid": "wx0df150c438e4c8f0",
"projectname": "%E4%BA%8C%E7%BB%B4%E7%A0%81%E5%90%88%E5%B9%B6",
"debugOptions": {
"hidedInDevtools": []
},
"isGameTourist": false,
"simulatorType": "wechat",
"simulatorPluginLibVersion": {},
"condition": {
"search": {
"current": -1,
"list": []
},
"conversation": {
"current": -1,
"list": []
},
"game": {
"currentL": -1,
"list": []
},
"miniprogram": {
"current": -1,
"list": []
}
}
}

7
sitemap.json Normal file
View File

@ -0,0 +1,7 @@
{
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
"rules": [{
"action": "disallow",
"page": "*"
}]
}