一键登录完成
This commit is contained in:
parent
d7c7f82ec3
commit
a0ee08bf85
11
api/user.js
11
api/user.js
@ -117,6 +117,17 @@ export function registerForget(data) {
|
||||
noAuth: true
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 一键登录
|
||||
*/
|
||||
export function phonelogin(data) {
|
||||
return request.post("auth/phonelogin", data, {
|
||||
noAuth: true
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户中心菜单
|
||||
*
|
||||
|
@ -39,7 +39,7 @@
|
||||
<view class="right-btn-box event_box">
|
||||
<view class="btn-item"
|
||||
v-if="evaluate != 2 && item.is_refund ==0 && pay_type!= 10 && status==0 && (evaluate != 10 && evaluate != 11) && orderData.refund_status || item.refund_num > 0"
|
||||
@click.stop="refund(item)">申请退款</view>
|
||||
@click.stop="showTips=true,refundItem=item">申请退款</view>
|
||||
<view class="btn-item err" v-if="item.is_refund ==1">退款中 x
|
||||
{{item.product_num - item.refund_num}}
|
||||
</view>
|
||||
@ -113,7 +113,7 @@
|
||||
</view>
|
||||
<view class="btn-item"
|
||||
v-if="evaluate != 2 && item.refund_switch==1 && pay_type!= 10 && status==0 && (item.is_refund == 0 && evaluate != 9 && orderData.refund_status || item.refund_num > 0)"
|
||||
@click.stop="refund(item)">申请退款</view>
|
||||
@click.stop="showTips=true,refundItem=item">申请退款</view>
|
||||
<view class='btn-item' v-if='item.is_reply==0 && evaluate==2 && item.refund_num > 0'
|
||||
@click.stop="evaluateTap(item.order_product_id,orderId)">去评价</view>
|
||||
<view class='btn-item on' v-else-if="item.is_reply==1 && evaluate==2">已评价</view>
|
||||
@ -121,6 +121,22 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<u-overlay :show="showTips">
|
||||
<view class="tips">
|
||||
<view class="" style="font-size: 32rpx;">
|
||||
温馨提示
|
||||
</view>
|
||||
<view class="">
|
||||
下单后1小时内申请退款可极速退款
|
||||
</view>
|
||||
<u-button color="#61D137" text="我知道了" @tap="refund(refundItem)"></u-button>
|
||||
</view>
|
||||
</u-overlay>
|
||||
|
||||
|
||||
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -195,6 +211,8 @@
|
||||
computed: mapGetters(['viewColor']),
|
||||
data() {
|
||||
return {
|
||||
showTips: false, //退款提示弹窗
|
||||
refundItem: null,
|
||||
domain: HTTP_REQUEST_URL,
|
||||
totalNmu: '',
|
||||
isTimePay: false, //是否到支付时间
|
||||
@ -245,7 +263,8 @@
|
||||
let id = res.data.product_assist_set_id;
|
||||
uni.hideLoading();
|
||||
uni.navigateTo({
|
||||
url: '/pages/activity/assist_detail/index?id=' + id + '&sale_type=' + this.sale_type
|
||||
url: '/pages/activity/assist_detail/index?id=' + id +
|
||||
'&sale_type=' + this.sale_type
|
||||
});
|
||||
}).catch((err) => {
|
||||
uni.showToast({
|
||||
@ -257,6 +276,7 @@
|
||||
},
|
||||
// 退款
|
||||
refund(item) {
|
||||
if (this.showTips) this.showTips = false;
|
||||
// #ifdef MP
|
||||
openOrderRefundSubscribe().then(() => {
|
||||
uni.hideLoading();
|
||||
@ -281,12 +301,14 @@
|
||||
if (this.evaluate == 0 || this.evaluate == 9 || this.orderData.is_virtual != 0) {
|
||||
uni.navigateTo({
|
||||
url: '/pages/users/refund/confirm?order_id=' + this.orderId + '&type=1' + '&ids=' + item
|
||||
.order_product_id + '&refund_type=1&order_type=' + this.orderData.order_type + '&sale_type=' + this.sale_type
|
||||
.order_product_id + '&refund_type=1&order_type=' + this.orderData.order_type +
|
||||
'&sale_type=' + this.sale_type
|
||||
})
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url: '/pages/users/refund/select?order_id=' + this.orderId + '&type=1&order_type=' + this
|
||||
.orderData.order_type + '&ids=' + item.order_product_id + '&sale_type=' + this.sale_type
|
||||
.orderData.order_type + '&ids=' + item.order_product_id + '&sale_type=' + this
|
||||
.sale_type
|
||||
})
|
||||
}
|
||||
// #endif
|
||||
@ -459,4 +481,21 @@
|
||||
background: #F0F0F0;
|
||||
}
|
||||
}
|
||||
|
||||
.tips {
|
||||
width: 590rpx;
|
||||
height: 354rpx;
|
||||
background-color: white;
|
||||
border-radius: 16rpx;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
box-sizing: border-box;
|
||||
padding: 50rpx 40rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
@ -126,7 +126,8 @@
|
||||
"weixin" : {
|
||||
"appid" : "wx2e8f79ff281284f5",
|
||||
"UniversalLinks" : "https://shop.lihaink.cn/"
|
||||
}
|
||||
},
|
||||
"univerify" : {}
|
||||
},
|
||||
"ad" : {}
|
||||
},
|
||||
|
@ -1,167 +1,171 @@
|
||||
<template>
|
||||
<div :style="viewColor">
|
||||
|
||||
<div class="register absolute" v-if="!auth_token">
|
||||
<div class="login" style="background-size: 100% 100%;background-repeat: no-repeat;">
|
||||
<div class="shading" >
|
||||
<div class="pictrue acea-row row-center-wrapper" style="background-color: transparent !important;">
|
||||
<view :style="viewColor">
|
||||
<view class="register absolute" v-if="!auth_token">
|
||||
<view class="login" style="background-size: 100% 100%;background-repeat: no-repeat;">
|
||||
<view class="shading">
|
||||
<view class="pictrue acea-row row-center-wrapper" style="background-color: transparent !important;">
|
||||
<image src="@/static/images/logo1.png" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="whiteBg" v-if="formItem == 0">
|
||||
<div class="logon" style="display: flex;align-items: center;justify-content: center;" @click="wxLogin">
|
||||
</view>
|
||||
</view>
|
||||
<view class="" style="margin-top: 70rpx;" v-if='formItem==2'>
|
||||
<view style="text-align: center;font-size: 36rpx;color: #20B128;font-weight: 700;">
|
||||
重置密码
|
||||
</view>
|
||||
<view style="text-align: center;color: #BCBCBC;font-size: 24rpx;margin-top: 10rpx;">
|
||||
请输入手机号码和验证码找回密码、重置
|
||||
</view>
|
||||
</view>
|
||||
<view class="whiteBg" v-if="formItem == 0">
|
||||
<view class="logon" style="display: flex;align-items: center;justify-content: center;"
|
||||
@click="wxLogin">
|
||||
<u-icon name="weixin-fill" color="#fff" size="30"></u-icon> 微信一键登录
|
||||
</div>
|
||||
</view>
|
||||
|
||||
<div class="protocol acea-row row-between-wrapper">
|
||||
<view class="protocol acea-row row-between-wrapper">
|
||||
<checkbox-group class="checkgroup" @change='isAgree=!isAgree'>
|
||||
<checkbox class="checkbox" :checked="isAgree ? true : false" />
|
||||
<text class="protocol_text">我已同意<text @click="userAgree"
|
||||
class="font_pro">《用户协议》</text>与<text @click="userPrivacyAgree"
|
||||
class="font_pro">《隐私政策》</text></text>
|
||||
</checkbox-group>
|
||||
</div>
|
||||
</div>
|
||||
<div class="whiteBg" v-else-if="formItem === 1" style="po">
|
||||
<div class="title acea-row row-center-wrapper">
|
||||
<div class="item" :class="current === index ? 'on' : ''" v-for="(item, index) in navList"
|
||||
</view>
|
||||
</view>
|
||||
<view class="whiteBg" v-else-if="formItem === 1">
|
||||
<view class="title acea-row row-center-wrapper">
|
||||
<view class="item" :class="current === index ? 'on' : ''" v-for="(item, index) in navList"
|
||||
@click="navTap(index)" :key="index">
|
||||
{{ item }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="list" :hidden="current !== 1">
|
||||
</view>
|
||||
</view>
|
||||
<view class="list" :hidden="current !== 1">
|
||||
<form @submit.prevent="submit">
|
||||
<div class="item">
|
||||
<div class="acea-row row-middle">
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/phone_1.png"></image>
|
||||
<input type="number" placeholder="输入账号" placeholder-class="placeholder"
|
||||
v-model="account" required />
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="acea-row row-middle">
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/code_2.png"></image>
|
||||
<input type="password" placeholder="填写登录密码" placeholder-class="placeholder"
|
||||
v-model="password" required />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="tip">
|
||||
<!-- <span @click="formItem = 2" class="font-color-red">立即注册</span> -->
|
||||
<span> </span>
|
||||
<navigator class="forgetPwd" hover-class="none" url="/pages/users/retrievePassword/index">
|
||||
<button class="code" @click="formItem=2">
|
||||
忘记密码
|
||||
</navigator>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="list" :hidden="current !== 0">
|
||||
<div class="item">
|
||||
<div class="acea-row row-middle">
|
||||
</button>
|
||||
</view>
|
||||
</view>
|
||||
</form>
|
||||
</view>
|
||||
<view class="list" :hidden="current !== 0">
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/phone_1.png"></image>
|
||||
<input type="number" placeholder="输入手机号码" placeholder-class="placeholder"
|
||||
v-model="account" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<div class="acea-row row-middle">
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/code_2.png"></image>
|
||||
|
||||
<input type="number" placeholder="填写验证码" placeholder-class="placeholder" class="codeIput"
|
||||
v-model="captcha" maxlength="4" />
|
||||
<input type="number" placeholder="填写验证码" placeholder-class="placeholder"
|
||||
class="codeIput" v-model="captcha" maxlength="4" />
|
||||
<button class="code" :disabled="disabled" :class="disabled === true ? 'on' : ''"
|
||||
@click="handleVerify">
|
||||
{{ text }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item" v-if="isShowCode">
|
||||
<div class="acea-row row-middle">
|
||||
</view>
|
||||
</view>
|
||||
<view class="item" v-if="isShowCode">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/code_2.png"></image>
|
||||
<input type="number" placeholder="填写验证码" placeholder-class="placeholder" class="codeIput"
|
||||
v-model="codeVal" maxlength="4" />
|
||||
<div class="code" @click="getcaptcha">
|
||||
<input type="number" placeholder="填写验证码" placeholder-class="placeholder"
|
||||
class="codeIput" v-model="codeVal" maxlength="4" />
|
||||
<view class="code" @click="getcaptcha">
|
||||
<image class="code-img" style="width: 100%;height: 100%;" :src="codeUrl" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<div class="logon" @click="loginMobile" :hidden="current !== 0">登录</div>
|
||||
<div class="logon" @click="submit" :hidden="current === 0">登录</div>
|
||||
<div class="protocol acea-row row-between-wrapper">
|
||||
<view class="logon" @click="loginMobile" :hidden="current !== 0">登5445录</view>
|
||||
<view class="logon" @click="submit" :hidden="current === 0">账号登录</view>
|
||||
<view class="protocol acea-row row-between-wrapper">
|
||||
<checkbox-group class="checkgroup" @change='isAgree=!isAgree'>
|
||||
<checkbox class="checkbox" :checked="isAgree ? true : false" />
|
||||
<text class="protocol_text">我已同意<text @click="userAgree"
|
||||
class="font_pro">《用户协议》</text>与<text @click="userPrivacyAgree"
|
||||
class="font_pro">《隐私政策》</text></text>
|
||||
</checkbox-group>
|
||||
</div>
|
||||
</div>
|
||||
<div class="whiteBg" v-else>
|
||||
<div class="title">注册账号</div>
|
||||
<div class="list">
|
||||
<div class="item">
|
||||
<div class="acea-row row-middle">
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="whiteBg" style="margin-top: 0;" v-else-if='formItem==2'>
|
||||
<view class="list">
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/phone_1.png"></image>
|
||||
<input type="number" placeholder="输入手机号码" placeholder-class="placeholder"
|
||||
v-model="account" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="acea-row row-middle">
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/code_2.png"></image>
|
||||
<input type="number" placeholder="填写验证码" maxLength='4' placeholder-class="placeholder" class="codeIput"
|
||||
v-model="captcha" />
|
||||
|
||||
<input type="number" placeholder="填写验证码" maxLength='4' placeholder-class="placeholder"
|
||||
class="codeIput" v-model="captcha" />
|
||||
<button class="code" :disabled="disabled" :class="disabled === true ? 'on' : ''"
|
||||
@click="handleVerify">
|
||||
{{ text }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="acea-row row-middle">
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/code_1.png"></image>
|
||||
<input type="password" placeholder="填写您的登录密码" placeholder-class="placeholder"
|
||||
<input type="password" placeholder="请输入新密码" placeholder-class="placeholder"
|
||||
v-model="password" />
|
||||
</div>
|
||||
</div>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/code_1.png"></image>
|
||||
<input type="password" placeholder="请再次输入密码" placeholder-class="placeholder"
|
||||
v-model="confirm_pwd" />
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<div class="item" v-if="isShowCode">
|
||||
<div class="acea-row row-middle">
|
||||
<view class="item" v-if="isShowCode">
|
||||
<view class="acea-row row-middle">
|
||||
<image src="/static/images/code_2.png"></image>
|
||||
<input type="number" placeholder="填写验证码" maxlength="4" placeholder-class="placeholder" class="codeIput"
|
||||
v-model="codeVal" />
|
||||
<div class="code" @click="getcaptcha">
|
||||
<input type="number" placeholder="填写验证码" maxlength="4" placeholder-class="placeholder"
|
||||
class="codeIput" v-model="codeVal" />
|
||||
<view class="code" @click="getcaptcha">
|
||||
<image class="code-img" style="width: 100%;height: 100%;" :src="codeUrl" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tip">
|
||||
<div>
|
||||
已有账号?
|
||||
<span @click="formItem = 1" class="font-color-red">去登录</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="logon" @click="register">注册</div>
|
||||
<div class="protocol acea-row row-between-wrapper">
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="logon" @click="registerReset">完成并登录</view>
|
||||
<view class="tip">
|
||||
<text @click="formItem=1">立即登录</text>
|
||||
</view>
|
||||
<view class="protocol acea-row row-between-wrapper">
|
||||
<checkbox-group class="checkgroup" @change='isAgree=!isAgree'>
|
||||
<checkbox class="checkbox" :checked="isAgree ? true : false" />
|
||||
<text class="protocol_text">我已同意<text @click="userAgree"
|
||||
class="font_pro">《用户协议》</text>与<text @click="userPrivacyAgree"
|
||||
class="font_pro">《隐私政策》</text></text>
|
||||
</checkbox-group>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom"></div>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="bottom"></view>
|
||||
<view class="settlementAgreement" v-if="showAgreement">
|
||||
<view class="setAgCount">
|
||||
<i class="icon iconfont icon-cha" @click="showAgreement = false"></i>
|
||||
<div class="title">用户协议与隐私政策</div>
|
||||
<view class="title">用户协议与隐私政策</view>
|
||||
<view class="content">
|
||||
<jyf-parser :html="agreement" ref="article" :tag-style="tagStyle"></jyf-parser>
|
||||
</view>
|
||||
@ -169,12 +173,19 @@
|
||||
</view>
|
||||
|
||||
<!-- #ifdef APP-PLUS -->
|
||||
<div class="protocol acea-row row-between-wrapper" style="position: fixed; bottom: 160rpx;left: 50%;transform: translate(-50%);">
|
||||
<text class="protocol_text" v-if="formItem==0" @click="formItem = 1 ">其他方式登录</text>
|
||||
<text class="protocol_text" v-else @click="formItem = 0 ">微信快捷登录</text>
|
||||
</div>
|
||||
<view class="footer-btns">
|
||||
<view class="login-type-btn" :class="{actLoginType:formItem==0}" style="margin-right: 70rpx;">
|
||||
<text v-if='formItem == 1' @click="formItem = 0">微信快捷登录</text>
|
||||
<text v-else @click="appOneClcik">本机一键登录</text>
|
||||
</view>
|
||||
<view class="login-type-btn" :class="{actLoginType:formItem==1}">
|
||||
<text v-if='formItem == 0' @click="formItem = 1">更多登录方式</text>
|
||||
<text v-else @click="appOneClcik">本机一键登录</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<!-- #endif -->
|
||||
</div>
|
||||
</view>
|
||||
<form report-submit='true' v-if="auth_token">
|
||||
<view class="ChangePassword">
|
||||
<view class="title">
|
||||
@ -188,8 +199,8 @@
|
||||
</view>
|
||||
|
||||
<view class="item acea-row row-between-wrapper">
|
||||
<input type='number' placeholder='填写验证码' maxlength="4" placeholder-class='placeholder' class="codeIput"
|
||||
v-model="captcha"></input>
|
||||
<input type='number' placeholder='填写验证码' maxlength="4" placeholder-class='placeholder'
|
||||
class="codeIput" v-model="captcha"></input>
|
||||
|
||||
<button class="code" :class="disabled === true ? 'on' : ''" :disabled='disabled'
|
||||
@click="handleVerify">
|
||||
@ -213,14 +224,54 @@
|
||||
<button form-type="submit" @click="auth_token = ''" class="confirmBnt back">返回</button>
|
||||
</view>
|
||||
</form>
|
||||
<!-- <view class="copyright" @click="goCopyUrl">
|
||||
{{ copyright.status == -1 ? `${copyright.year} ${copyright.url}` : copyright.Copyright }}
|
||||
</view> -->
|
||||
|
||||
<Verify @success="success" :captchaType="'blockPuzzle'" :imgSize="{ width: '330px', height: '155px' }"
|
||||
ref="verify"></Verify>
|
||||
<!-- tips弹窗 -->
|
||||
<u-overlay :show="showTips">
|
||||
<view class="tips">
|
||||
<view class="" style="font-size: 32rpx;">
|
||||
{{tispTile}}
|
||||
</view>
|
||||
<block v-if="tispTile=='密码错误'">
|
||||
<view class="">
|
||||
{{tipsErr}}
|
||||
</view>
|
||||
<view class="" style="display: flex;">
|
||||
<view style="width: 236rpx;height: 84rpx;margin-right:38rpx;">
|
||||
<u-button plain text="找回密码" @tap="showTips=false,formItem=2"></u-button>
|
||||
</view>
|
||||
<view style="width: 236rpx;height: 84rpx;">
|
||||
<u-button color="#46BF6F" text="重新输入" @tap="showTips=false"></u-button>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
<block v-else-if="tispTile=='验证码错误'">
|
||||
<view class="">
|
||||
验证码错误,请重新收入
|
||||
</view>
|
||||
<view class="" style="display: flex;">
|
||||
<u-button color="#46BF6F" text="确定" @tap="showTips=false"></u-button>
|
||||
</view>
|
||||
</block>
|
||||
<block v-else-if="tispTile=='密码不一致'">
|
||||
<view class="">
|
||||
两次输入的密码不一致,请重新输入
|
||||
</view>
|
||||
<view class="" style="display: flex;">
|
||||
<u-button color="#46BF6F" text="确定" @tap="showTips=false"></u-button>
|
||||
</view>
|
||||
</block>
|
||||
<block v-else>
|
||||
<view class="" style="display: flex;width: 236rpx;">
|
||||
<u-button color="#46BF6F" text="确定" @tap="showTips=false"></u-button>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</u-overlay>
|
||||
<!-- tips结束 -->
|
||||
|
||||
</div>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
// +----------------------------------------------------------------------
|
||||
@ -244,7 +295,9 @@
|
||||
getCaptcha,
|
||||
getAgreementApi,
|
||||
appleLogin,
|
||||
loginMpPhone
|
||||
loginMpPhone,
|
||||
registerForget,
|
||||
phonelogin
|
||||
} from "@/api/user";
|
||||
// #ifdef APP-PLUS
|
||||
import {
|
||||
@ -281,9 +334,12 @@
|
||||
mapGetters
|
||||
} from "vuex";
|
||||
import Verify from '@/components/verify/verify.vue';
|
||||
import { Toast } from "../../../libs/uniApi";
|
||||
import {
|
||||
Toast
|
||||
} from "../../../libs/uniApi";
|
||||
const BACK_URL = "login_back_url";
|
||||
// #ifdef APP-PLUS
|
||||
import oneClickStyle from "./oneClickStyle.js"
|
||||
var jpushModule = uni.requireNativePlugin("JG-JPush");
|
||||
// #endif
|
||||
export default {
|
||||
@ -295,10 +351,14 @@
|
||||
},
|
||||
data: function() {
|
||||
return {
|
||||
tipsErr: "",
|
||||
tispTile: '密码错误',
|
||||
showTips: false,
|
||||
navList: ["快速登录", "账号登录"],
|
||||
current: 0,
|
||||
account: "",
|
||||
password: "",
|
||||
confirm_pwd: "",
|
||||
captcha: "",
|
||||
// #ifdef APP-PLUS
|
||||
formItem: 0,
|
||||
@ -333,6 +393,8 @@
|
||||
formItem: function(nval, oVal) {
|
||||
if (nval == 1) {
|
||||
this.type = 'login'
|
||||
} else if (nval == 2) {
|
||||
this.type = 'change_pwd'
|
||||
} else {
|
||||
this.type = 'register'
|
||||
}
|
||||
@ -367,9 +429,18 @@
|
||||
// #endif
|
||||
},
|
||||
methods: {
|
||||
showTipsFn(text, err) {
|
||||
this.showTips = true
|
||||
this.tispTile = text
|
||||
this.tipsErr = err || ''
|
||||
},
|
||||
navgo(url) {
|
||||
uni.navigateTo({
|
||||
url
|
||||
})
|
||||
},
|
||||
// #ifdef MP
|
||||
getPhoneNumber(e) {
|
||||
|
||||
let that = this;
|
||||
loginMpPhone({
|
||||
iv: e.detail.iv,
|
||||
@ -379,7 +450,8 @@
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$Cache.clear(BACK_URL);
|
||||
that.$Cache.clear('login_back_url_weixin');
|
||||
that.$store.commit("LOGIN", {
|
||||
@ -498,7 +570,8 @@
|
||||
}).then(res => {
|
||||
const data = res.data;
|
||||
if (res.data.status == 200) {
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$Cache.clear(BACK_URL);
|
||||
that.$Cache.clear('login_back_url_weixin');
|
||||
that.$store.commit("LOGIN", {
|
||||
@ -591,7 +664,8 @@
|
||||
}).then(res => {
|
||||
const data = res.data;
|
||||
if (res.data.status == 200) {
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$Cache.clear(BACK_URL);
|
||||
that.$Cache.clear('login_back_url_weixin');
|
||||
that.$store.commit("LOGIN", {
|
||||
@ -648,7 +722,8 @@
|
||||
console.log('--', res);
|
||||
const data = res.data;
|
||||
if (res.data.status == 200) {
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$Cache.clear(BACK_URL);
|
||||
that.$Cache.clear('login_back_url_weixin');
|
||||
that.$store.commit("LOGIN", {
|
||||
@ -711,6 +786,7 @@
|
||||
});
|
||||
});
|
||||
},
|
||||
// 快速登录
|
||||
async loginMobile() {
|
||||
let that = this;
|
||||
if (!that.account) return that.$util.Tips({
|
||||
@ -745,7 +821,8 @@
|
||||
data
|
||||
}) => {
|
||||
this.checkOpenId(data.user)
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$store.commit("LOGIN", {
|
||||
'token': data.token,
|
||||
'time': data.exp
|
||||
@ -783,9 +860,7 @@
|
||||
});
|
||||
})
|
||||
.catch(res => {
|
||||
that.$util.Tips({
|
||||
title: res
|
||||
});
|
||||
that.showTipsFn(res)
|
||||
});
|
||||
},
|
||||
async register() {
|
||||
@ -831,7 +906,8 @@
|
||||
});
|
||||
that.$store.commit("SETUID", res.data.user.uid);
|
||||
that.$store.commit('UPDATE_USERINFO', res.data.user);
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$Cache.clear(BACK_URL);
|
||||
that.$Cache.clear('login_back_url_weixin');
|
||||
let method
|
||||
@ -852,9 +928,8 @@
|
||||
});
|
||||
})
|
||||
.catch(res => {
|
||||
that.$util.Tips({
|
||||
title: res
|
||||
});
|
||||
console.log(res, 'res')
|
||||
that.showTipsFn('密码错误', res)
|
||||
});
|
||||
},
|
||||
async weixinMerge() {
|
||||
@ -914,7 +989,8 @@
|
||||
});
|
||||
that.$store.commit("SETUID", res.data.user.uid);
|
||||
that.$store.commit('UPDATE_USERINFO', res.data.user);
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$Cache.clear(BACK_URL);
|
||||
that.$Cache.clear('login_back_url_weixin');
|
||||
let method
|
||||
@ -952,7 +1028,7 @@
|
||||
// if (that.formItem == 2) that.type = "register";
|
||||
await registerVerify({
|
||||
phone: that.account,
|
||||
type: 'login',
|
||||
type: that.type,
|
||||
key: that.keyCode,
|
||||
// code: that.codeVal,
|
||||
toke: data.token,
|
||||
@ -971,6 +1047,38 @@
|
||||
});
|
||||
});
|
||||
},
|
||||
async registerReset() {
|
||||
var that = this;
|
||||
if (!that.account) return that.$util.Tips({
|
||||
title: '请填写手机号码'
|
||||
});
|
||||
if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
|
||||
title: '请输入正确的手机号码'
|
||||
});
|
||||
if (that.password == '123456') return that.$util.Tips({
|
||||
title: '您输入的密码过于简单'
|
||||
});
|
||||
if (that.password != that.confirm_pwd) return that.$util.Tips({
|
||||
title: '两次密码不一致'
|
||||
});
|
||||
if (!that.captcha) return that.$util.Tips({
|
||||
title: '请填写验证码'
|
||||
});
|
||||
registerForget({
|
||||
phone: that.account,
|
||||
sms_code: that.captcha,
|
||||
pwd: that.password,
|
||||
confirm_pwd: that.confirm_pwd
|
||||
})
|
||||
.then(res => {
|
||||
that.submitSuccess(res.data)
|
||||
})
|
||||
.catch(res => {
|
||||
that.$util.Tips({
|
||||
title: res
|
||||
})
|
||||
});
|
||||
},
|
||||
getcaptcha() {
|
||||
let that = this
|
||||
getCaptcha().then(data => {
|
||||
@ -989,6 +1097,8 @@
|
||||
}
|
||||
return url
|
||||
},
|
||||
|
||||
// 账号登录
|
||||
async submit() {
|
||||
let that = this;
|
||||
if (!that.account) return that.$util.Tips({
|
||||
@ -1012,8 +1122,20 @@
|
||||
.then(({
|
||||
data
|
||||
}) => {
|
||||
this.submitSuccess(data)
|
||||
})
|
||||
.catch(e => {
|
||||
that.showTipsFn("密码错误", e)
|
||||
});
|
||||
},
|
||||
|
||||
// 账号密码验证通过后的逻辑
|
||||
submitSuccess(data) {
|
||||
console.log(data, 'hanshu')
|
||||
let that = this
|
||||
this.checkOpenId(data.user)
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) || "/pages/index/index";
|
||||
const backUrl = that.$Cache.get('login_back_url_weixin') || that.$Cache.get(BACK_URL) ||
|
||||
"/pages/index/index";
|
||||
that.$store.commit("LOGIN", {
|
||||
'token': data.token,
|
||||
'time': data.exp
|
||||
@ -1050,13 +1172,8 @@
|
||||
uni[method]({
|
||||
url: backUrl
|
||||
});
|
||||
})
|
||||
.catch(e => {
|
||||
that.$util.Tips({
|
||||
title: e
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
getVersion() {
|
||||
getVersion().then(data => {
|
||||
this.copyright = data.data;
|
||||
@ -1128,7 +1245,60 @@
|
||||
})
|
||||
// #endif
|
||||
|
||||
},
|
||||
// app手机号一键登录
|
||||
appOneClcik() {
|
||||
let that = this
|
||||
uni.preLogin({
|
||||
provider: 'univerify',
|
||||
success() {
|
||||
console.log("当前环境支持一键登录")
|
||||
uni.login({
|
||||
provider: 'univerify',
|
||||
univerifyStyle: oneClickStyle,
|
||||
success(res) {
|
||||
console.log(res, 'res')
|
||||
phonelogin({
|
||||
access_token: res.authResult.access_token,
|
||||
openid: res.authResult.openid,
|
||||
auth_token: that.auth_token,
|
||||
user_type: 'app'
|
||||
}).then(res => {
|
||||
uni.closeAuthView()
|
||||
that.submitSuccess(res.data)
|
||||
}).catch(err => {
|
||||
uni.closeAuthView()
|
||||
that.$util.Tips({
|
||||
title: '登录失败,请稍后再试'
|
||||
});
|
||||
})
|
||||
// uniCloud.callFunction({
|
||||
// name: 'oneClickLoginFn',
|
||||
// data: {
|
||||
// 'access_token': res.authResult
|
||||
// .access_token,
|
||||
// 'openid': res.authResult.openid
|
||||
// }
|
||||
// }).then(res => {
|
||||
// console.log(res, '登录成功后的res')
|
||||
// }).catch(err => {
|
||||
// console.log(err, 'ererre')
|
||||
// })
|
||||
},
|
||||
fail(res) { // 登录失败
|
||||
console.log(res.errCode)
|
||||
console.log(res.errMsg)
|
||||
}
|
||||
})
|
||||
},
|
||||
fail(res) {
|
||||
that.$util.Tips({
|
||||
title: '当前环境不支持一键登录'
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
||||
@ -1515,4 +1685,43 @@
|
||||
font-size: 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-btns {
|
||||
position: absolute;
|
||||
bottom: 160rpx;
|
||||
left: 50%;
|
||||
transform: translate(-50%);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 750rpx !important;
|
||||
padding: 0 112rpx;
|
||||
|
||||
.login-type-btn {
|
||||
padding: 12rpx 30rpx;
|
||||
border-radius: 32rpx;
|
||||
background-color: #F6F6F6
|
||||
}
|
||||
|
||||
.actLoginType {
|
||||
color: #20B128;
|
||||
background-color: #E8F7E9;
|
||||
}
|
||||
}
|
||||
|
||||
.tips {
|
||||
width: 590rpx;
|
||||
height: 354rpx;
|
||||
background-color: white;
|
||||
border-radius: 16rpx;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
box-sizing: border-box;
|
||||
padding: 50rpx 40rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
69
pages/users/login/oneClickStyle.js
Normal file
69
pages/users/login/oneClickStyle.js
Normal file
@ -0,0 +1,69 @@
|
||||
let customStyle = {
|
||||
"fullScreen": true, // 是否全屏显示,默认值: false
|
||||
"backgroundColor": "#ffffff", // 授权页面背景颜色,默认值:#ffffff
|
||||
"backgroundImage": "", // 全屏显示的背景图片,默认值:"" (仅支持本地图片,只有全屏显示时支持)
|
||||
"icon": {
|
||||
"path": "static/xxx.png", // 自定义显示在授权框中的logo,仅支持本地图片 默认显示App logo
|
||||
"width": "60px", //图标宽度 默认值:60px
|
||||
"height": "60px" //图标高度 默认值:60px
|
||||
},
|
||||
"closeIcon": {
|
||||
"path": "static/xxx.png", // 自定义显示在授权框中的logo,仅支持本地图片 默认显示App logo
|
||||
"width": "60px", //图标宽度 默认值:60px (HBuilderX 4.0支持)
|
||||
"height": "60px" //图标高度 默认值:60px (HBuilderX 4.0支持)
|
||||
},
|
||||
"phoneNum": {
|
||||
"color": "#202020" // 手机号文字颜色 默认值:#202020
|
||||
},
|
||||
"slogan": {
|
||||
"color": "#BBBBBB" // slogan 字体颜色 默认值:#BBBBBB
|
||||
},
|
||||
"authButton": {
|
||||
"normalColor": "#3CB625", // 授权按钮正常状态背景颜色 默认值:#3479f5
|
||||
"highlightColor": "#2861c5", // 授权按钮按下状态背景颜色 默认值:#2861c5(仅ios支持)
|
||||
"disabledColor": "#73aaf5", // 授权按钮不可点击时背景颜色 默认值:#73aaf5(仅ios支持)
|
||||
"textColor": "#ffffff", // 授权按钮文字颜色 默认值:#ffffff
|
||||
"title": "本机号码一键登录", // 授权按钮文案 默认值:“本机号码一键登录”
|
||||
"borderRadius": "24px" // 授权按钮圆角 默认值:"24px" (按钮高度的一半)
|
||||
},
|
||||
"otherLoginButton": {
|
||||
"visible": true, // 是否显示其他登录按钮,默认值:true
|
||||
"normalColor": "", // 其他登录按钮正常状态背景颜色 默认值:透明
|
||||
"highlightColor": "", // 其他登录按钮按下状态背景颜色 默认值:透明
|
||||
"textColor": "#656565", // 其他登录按钮文字颜色 默认值:#656565
|
||||
"title": "其他登录方式", // 其他登录方式按钮文字 默认值:“其他登录方式”
|
||||
"borderColor": "", //边框颜色 默认值:透明(仅iOS支持)
|
||||
"borderRadius": "0px" // 其他登录按钮圆角 默认值:"24px" (按钮高度的一半)
|
||||
},
|
||||
"privacyTerms": {
|
||||
"defaultCheckBoxState": true, // 条款勾选框初始状态 默认值: true
|
||||
"isCenterHint": false, //未勾选服务条款时点击登录按钮的提示是否居中显示 默认值: false (3.7.13+ 版本支持)
|
||||
"uncheckedImage": "", // 可选 条款勾选框未选中状态图片(仅支持本地图片 建议尺寸 24x24px)(3.2.0+ 版本支持)
|
||||
"checkedImage": "", // 可选 条款勾选框选中状态图片(仅支持本地图片 建议尺寸24x24px)(3.2.0+ 版本支持)
|
||||
"checkBoxSize": 12, // 可选 条款勾选框大小
|
||||
"textColor": "#BBBBBB", // 文字颜色 默认值:#BBBBBB
|
||||
"termsColor": "#5496E3", // 协议文字颜色 默认值: #5496E3
|
||||
"prefix": "我已阅读并同意", // 条款前的文案 默认值:“我已阅读并同意”
|
||||
"suffix": "并使用本机号码登录", // 条款后的文案 默认值:“并使用本机号码登录”
|
||||
"privacyItems": [ // 自定义协议条款,最大支持2个,需要同时设置url和title. 否则不生效
|
||||
{
|
||||
"url": "https://", // 点击跳转的协议详情页面
|
||||
"title": "用户服务协议" // 协议名称
|
||||
}
|
||||
]
|
||||
},
|
||||
"buttons": { // 自定义页面下方按钮仅全屏模式生效(3.1.14+ 版本支持)
|
||||
"iconWidth": "45px", // 图标宽度(高度等比例缩放) 默认值:45px
|
||||
"list": [{
|
||||
"provider": "apple",
|
||||
"iconPath": "/static/apple.png" // 图标路径仅支持本地图片
|
||||
},
|
||||
{
|
||||
"provider": "weixin",
|
||||
"iconPath": "/static/wechat.png" // 图标路径仅支持本地图片
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
export default customStyle
|
@ -16,8 +16,8 @@
|
||||
<block v-if="type == 2">
|
||||
<view class="txt">请等待商家收货并退款</view>
|
||||
<view class="time">还剩:
|
||||
<countDown :is-day="true" :tip-text="' '" :day-text="'天'" :hour-text="':'" :minute-text="':'" :second-text="' '"
|
||||
:datatime="datatime"></countDown>
|
||||
<countDown :is-day="true" :tip-text="' '" :day-text="'天'" :hour-text="':'" :minute-text="':'"
|
||||
:second-text="' '" :datatime="datatime"></countDown>
|
||||
</view>
|
||||
</block>
|
||||
<block v-if="type == 3">
|
||||
@ -59,12 +59,17 @@
|
||||
<view class="title">退款信息</view>
|
||||
<view class="product-box">
|
||||
<view class="product-item" v-for="(item,index) in detail.refundProduct" :key="index">
|
||||
<image class="img-box" :src="item.product.cart_info.productAttr.image" mode="" v-if="item.product.cart_info.productAttr.image"></image>
|
||||
<image class="img-box" :src="item.product.cart_info.productAttr.image" mode=""
|
||||
v-if="item.product.cart_info.productAttr.image"></image>
|
||||
<image class="img-box" :src="item.product.cart_info.product.image" mode="" v-else></image>
|
||||
<view class="msg">
|
||||
<view class="name line1"><text v-if="item.product.cart_info.product_type === 2" class="event_name event_bg">预售</text>{{item.product.cart_info.product.store_name}}</view>
|
||||
<view class="name line1"><text v-if="item.product.cart_info.product_type === 2"
|
||||
class="event_name event_bg">预售</text>{{item.product.cart_info.product.store_name}}
|
||||
</view>
|
||||
<view class="des">{{item.product.cart_info.productAttr.sku}}</view>
|
||||
<view class="price">¥{{item.product.product_type == 3 ? item.product.cart_info.productAssistAttr.assist_price : item.product.product_type == 4 ? item.product.cart_info.activeSku.active_price : item.product.cart_info.productAttr.price}}</view>
|
||||
<view class="price">
|
||||
¥{{item.product.product_type == 3 ? item.product.cart_info.productAssistAttr.assist_price : item.product.product_type == 4 ? item.product.cart_info.activeSku.active_price : item.product.cart_info.productAttr.price}}
|
||||
</view>
|
||||
<view class="num">x {{item.refund_num}}</view>
|
||||
</view>
|
||||
</view>
|
||||
@ -95,6 +100,13 @@
|
||||
<text>{{detail.refund_num}}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="item">
|
||||
<view class="label">退款原因:</view>
|
||||
<view class="txt flex">
|
||||
<text>{{ getRightText(detail.refund_message) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="label">申请时间:</view>
|
||||
<view class="txt flex">
|
||||
@ -148,10 +160,15 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: CRMEB Team <admin@crmeb.com>
|
||||
// +----------------------------------------------------------------------
|
||||
import { refundDetail, refundCancelApi } from '@/api/order.js'
|
||||
import {
|
||||
refundDetail,
|
||||
refundCancelApi
|
||||
} from '@/api/order.js'
|
||||
import ClipboardJS from "@/plugin/clipboard/clipboard.js";
|
||||
import countDown from '@/components/countDown'
|
||||
import { mapGetters } from "vuex";
|
||||
import {
|
||||
mapGetters
|
||||
} from "vuex";
|
||||
export default {
|
||||
components: {
|
||||
countDown,
|
||||
@ -169,7 +186,7 @@
|
||||
},
|
||||
onLoad(options) {
|
||||
uni.setNavigationBarTitle({
|
||||
title:'退款详情'
|
||||
title: '退款详情'
|
||||
})
|
||||
this.refund_order_id = options.id
|
||||
this.getDetail()
|
||||
@ -187,6 +204,14 @@
|
||||
// #endif
|
||||
},
|
||||
methods: {
|
||||
getRightText(str) {
|
||||
const index = str.indexOf("@");
|
||||
if (index !== -1) {
|
||||
return str.substring(0, index);
|
||||
} else {
|
||||
return str
|
||||
}
|
||||
},
|
||||
//联系客服拨打电话
|
||||
call: function(service) {
|
||||
let that = this;
|
||||
@ -293,16 +318,20 @@
|
||||
color: #fff;
|
||||
background-color: #666666;
|
||||
font-size: 30rpx;
|
||||
|
||||
.txt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.time {
|
||||
margin-top: 10rpx;
|
||||
font-size: 24rpx;
|
||||
opacity: .8;
|
||||
|
||||
.time {
|
||||
display: inline-block;
|
||||
width: 600rpx;
|
||||
|
||||
/deep/ .red {
|
||||
color: #fff;
|
||||
}
|
||||
@ -313,21 +342,25 @@
|
||||
.info-box {
|
||||
margin-top: 12rpx;
|
||||
background-color: #fff;
|
||||
|
||||
.title {
|
||||
padding: 0 32rpx;
|
||||
line-height: 86rpx;
|
||||
border-bottom: 1px solid #F0F0F0;
|
||||
color: #282828;
|
||||
}
|
||||
|
||||
.product-box {
|
||||
.product-item {
|
||||
display: flex;
|
||||
padding: 25rpx 30rpx;
|
||||
|
||||
.img-box {
|
||||
width: 130rpx;
|
||||
height: 130rpx;
|
||||
border-radius: 16rpx;
|
||||
}
|
||||
|
||||
.msg {
|
||||
position: relative;
|
||||
display: flex;
|
||||
@ -335,18 +368,22 @@
|
||||
justify-content: space-between;
|
||||
width: 440rpx;
|
||||
margin-left: 26rpx;
|
||||
|
||||
.name {
|
||||
font-size: 28rpx;
|
||||
color: #282828;
|
||||
}
|
||||
|
||||
.des {
|
||||
font-size: 20rpx;
|
||||
color: #868686;
|
||||
}
|
||||
|
||||
.price {
|
||||
font-size: 26rpx;
|
||||
color: var(--view-priceColor);
|
||||
}
|
||||
|
||||
.num {
|
||||
position: absolute;
|
||||
right: -80rpx;
|
||||
@ -356,6 +393,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.event_name {
|
||||
display: inline-block;
|
||||
margin-right: 9rpx;
|
||||
@ -371,19 +409,23 @@
|
||||
.event_bg {
|
||||
background: #FF7F00;
|
||||
}
|
||||
|
||||
.store-info {
|
||||
padding: 30rpx;
|
||||
|
||||
.des {
|
||||
margin-top: 10rpx;
|
||||
font-size: 26rpx;
|
||||
color: #868686;
|
||||
}
|
||||
|
||||
.red-txt {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 10rpx;
|
||||
color: $theme-color;
|
||||
font-size: 24rpx;
|
||||
|
||||
.iconfont {
|
||||
font-size: 30rpx;
|
||||
margin-right: 5rpx;
|
||||
@ -392,20 +434,24 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-top: 12rpx;
|
||||
padding: 30rpx 30rpx 0;
|
||||
background-color: #FFFFFF;
|
||||
|
||||
.item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 30rpx;
|
||||
|
||||
.txt {
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
width: 450rpx;
|
||||
color: #868686;
|
||||
text-align: right;
|
||||
|
||||
.copy {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@ -419,22 +465,27 @@
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.upload-img {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 20rpx;
|
||||
|
||||
.img-item {
|
||||
position: relative;
|
||||
width: 156rpx;
|
||||
height: 156rpx;
|
||||
margin-right: 23rpx;
|
||||
margin-top: 20rpx;
|
||||
|
||||
&:nth-child(4n) {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
image {
|
||||
width: 156rpx;
|
||||
height: 156rpx;
|
||||
@ -443,15 +494,18 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-wrapper {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
height: 100rpx;
|
||||
|
||||
button {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 176rpx;
|
||||
height: 60rpx;
|
||||
@ -463,11 +517,13 @@
|
||||
border-radius: 30rpx;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.gray {
|
||||
background: transparent;
|
||||
border: 1px solid #eee;
|
||||
color: #AAAAAA;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
@ -480,12 +536,14 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.box {
|
||||
margin-top: 12rpx;
|
||||
padding: 25rpx 30rpx;
|
||||
background-color: #fff;
|
||||
font-size: 30rpx;
|
||||
color: #282828;
|
||||
|
||||
.des {
|
||||
margin-top: 5rpx;
|
||||
font-size: 26rpx;
|
||||
@ -493,6 +551,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/deep/.styleAll {
|
||||
color: #fff;
|
||||
}
|
||||
|
35
uniCloud-aliyun/cloudfunctions/oneClickLoginFn/index.js
Normal file
35
uniCloud-aliyun/cloudfunctions/oneClickLoginFn/index.js
Normal file
@ -0,0 +1,35 @@
|
||||
// 下面仅展示客户端使用post方式发送content-type为application/json请求的场景
|
||||
exports.main = async (event) => {
|
||||
let body = event.body
|
||||
if (event.isBase64Encoded) {
|
||||
body = Buffer.from(body, 'base64')
|
||||
}
|
||||
const {
|
||||
access_token,
|
||||
openid
|
||||
} = JSON.parse(body)
|
||||
if (!access_token || !openid) {
|
||||
return { // 不建议把完整手机号返回给前端
|
||||
success: false,
|
||||
error: {
|
||||
code: 'params is not fund',
|
||||
message: '参数错误',
|
||||
}
|
||||
}
|
||||
}
|
||||
const res = await uniCloud.getPhoneNumber({
|
||||
provider: 'univerify',
|
||||
appid: '__UNI__3A527D1', // DCloud appid,不同于callFunction方式调用,使用云函数Url化需要传递DCloud appid参数!!!
|
||||
access_token: access_token,
|
||||
openid: openid
|
||||
})
|
||||
console.log(res); // res里包含手机号
|
||||
return { // 不建议把完整手机号返回给前端
|
||||
success: true,
|
||||
info: {
|
||||
code: 0,
|
||||
message: '获取手机号成功',
|
||||
data: res,
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "oneClickLoginFn",
|
||||
"dependencies": {},
|
||||
"extensions": {
|
||||
"uni-cloud-jql": {},
|
||||
"uni-cloud-verify": {}
|
||||
}
|
||||
}
|
12
uniCloud-aliyun/database/JQL查询.jql
Normal file
12
uniCloud-aliyun/database/JQL查询.jql
Normal file
@ -0,0 +1,12 @@
|
||||
// 本文件用于,使用JQL语法操作项目关联的uniCloud空间的数据库,方便开发调试和远程数据库管理
|
||||
// 编写clientDB的js API(也支持常规js语法,比如var),可以对云数据库进行增删改查操作。不支持uniCloud-db组件写法
|
||||
// 可以全部运行,也可以选中部分代码运行。点击工具栏上的运行按钮或者按下【F5】键运行代码
|
||||
// 如果文档中存在多条JQL语句,只有最后一条语句生效
|
||||
// 如果混写了普通js,最后一条语句需是数据库操作语句
|
||||
// 此处代码运行不受DB Schema的权限控制,移植代码到实际业务中注意在schema中配好permission
|
||||
// 不支持clientDB的action
|
||||
// 数据库查询有最大返回条数限制,详见:https://uniapp.dcloud.net.cn/uniCloud/cf-database.html#limit
|
||||
// 详细JQL语法,请参考:https://uniapp.dcloud.net.cn/uniCloud/jql.html
|
||||
|
||||
// 下面示例查询uni-id-users表的所有数据
|
||||
db.collection('uni-id-users').get();
|
6
uni_modules/uni-config-center/changelog.md
Normal file
6
uni_modules/uni-config-center/changelog.md
Normal file
@ -0,0 +1,6 @@
|
||||
## 0.0.3(2022-11-11)
|
||||
- 修复 config 方法获取根节点为数组格式配置时错误的转化为了对象的Bug
|
||||
## 0.0.2(2021-04-16)
|
||||
- 修改插件package信息
|
||||
## 0.0.1(2021-03-15)
|
||||
- 初始化项目
|
81
uni_modules/uni-config-center/package.json
Normal file
81
uni_modules/uni-config-center/package.json
Normal file
@ -0,0 +1,81 @@
|
||||
{
|
||||
"id": "uni-config-center",
|
||||
"displayName": "uni-config-center",
|
||||
"version": "0.0.3",
|
||||
"description": "uniCloud 配置中心",
|
||||
"keywords": [
|
||||
"配置",
|
||||
"配置中心"
|
||||
],
|
||||
"repository": "",
|
||||
"engines": {
|
||||
"HBuilderX": "^3.1.0"
|
||||
},
|
||||
"dcloudext": {
|
||||
"sale": {
|
||||
"regular": {
|
||||
"price": "0.00"
|
||||
},
|
||||
"sourcecode": {
|
||||
"price": "0.00"
|
||||
}
|
||||
},
|
||||
"contact": {
|
||||
"qq": ""
|
||||
},
|
||||
"declaration": {
|
||||
"ads": "无",
|
||||
"data": "无",
|
||||
"permissions": "无"
|
||||
},
|
||||
"npmurl": "",
|
||||
"type": "unicloud-template-function"
|
||||
},
|
||||
"directories": {
|
||||
"example": "../../../scripts/dist"
|
||||
},
|
||||
"uni_modules": {
|
||||
"dependencies": [],
|
||||
"encrypt": [],
|
||||
"platforms": {
|
||||
"cloud": {
|
||||
"tcb": "y",
|
||||
"aliyun": "y"
|
||||
},
|
||||
"client": {
|
||||
"App": {
|
||||
"app-vue": "u",
|
||||
"app-nvue": "u"
|
||||
},
|
||||
"H5-mobile": {
|
||||
"Safari": "u",
|
||||
"Android Browser": "u",
|
||||
"微信浏览器(Android)": "u",
|
||||
"QQ浏览器(Android)": "u"
|
||||
},
|
||||
"H5-pc": {
|
||||
"Chrome": "u",
|
||||
"IE": "u",
|
||||
"Edge": "u",
|
||||
"Firefox": "u",
|
||||
"Safari": "u"
|
||||
},
|
||||
"小程序": {
|
||||
"微信": "u",
|
||||
"阿里": "u",
|
||||
"百度": "u",
|
||||
"字节跳动": "u",
|
||||
"QQ": "u"
|
||||
},
|
||||
"快应用": {
|
||||
"华为": "u",
|
||||
"联盟": "u"
|
||||
},
|
||||
"Vue": {
|
||||
"vue2": "y",
|
||||
"vue3": "u"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
93
uni_modules/uni-config-center/readme.md
Normal file
93
uni_modules/uni-config-center/readme.md
Normal file
@ -0,0 +1,93 @@
|
||||
# 为什么使用uni-config-center
|
||||
|
||||
实际开发中很多插件需要配置文件才可以正常运行,如果每个插件都单独进行配置的话就会产生下面这样的目录结构
|
||||
|
||||
```bash
|
||||
cloudfunctions
|
||||
└─────common 公共模块
|
||||
├─plugin-a // 插件A对应的目录
|
||||
│ ├─index.js
|
||||
│ ├─config.json // plugin-a对应的配置文件
|
||||
│ └─other-file.cert // plugin-a依赖的其他文件
|
||||
└─plugin-b // plugin-b对应的目录
|
||||
├─index.js
|
||||
└─config.json // plugin-b对应的配置文件
|
||||
```
|
||||
|
||||
假设插件作者要发布一个项目模板,里面使用了很多需要配置的插件,无论是作者发布还是用户使用都是一个大麻烦。
|
||||
|
||||
uni-config-center就是用了统一管理这些配置文件的,使用uni-config-center后的目录结构如下
|
||||
|
||||
```bash
|
||||
cloudfunctions
|
||||
└─────common 公共模块
|
||||
├─plugin-a // 插件A对应的目录
|
||||
│ └─index.js
|
||||
├─plugin-b // plugin-b对应的目录
|
||||
│ └─index.js
|
||||
└─uni-config-center
|
||||
├─index.js // config-center入口文件
|
||||
├─plugin-a
|
||||
│ ├─config.json // plugin-a对应的配置文件
|
||||
│ └─other-file.cert // plugin-a依赖的其他文件
|
||||
└─plugin-b
|
||||
└─config.json // plugin-b对应的配置文件
|
||||
```
|
||||
|
||||
使用uni-config-center后的优势
|
||||
|
||||
- 配置文件统一管理,分离插件主体和配置信息,更新插件更方便
|
||||
- 支持对config.json设置schema,插件使用者在HBuilderX内编写config.json文件时会有更好的提示(后续HBuilderX会提供支持)
|
||||
|
||||
# 用法
|
||||
|
||||
在要使用uni-config-center的公共模块或云函数内引入uni-config-center依赖,请参考:[使用公共模块](https://uniapp.dcloud.net.cn/uniCloud/cf-common)
|
||||
|
||||
```js
|
||||
const createConfig = require('uni-config-center')
|
||||
|
||||
const uniIdConfig = createConfig({
|
||||
pluginId: 'uni-id', // 插件id
|
||||
defaultConfig: { // 默认配置
|
||||
tokenExpiresIn: 7200,
|
||||
tokenExpiresThreshold: 600,
|
||||
},
|
||||
customMerge: function(defaultConfig, userConfig) { // 自定义默认配置和用户配置的合并规则,不设置的情况侠会对默认配置和用户配置进行深度合并
|
||||
// defaudltConfig 默认配置
|
||||
// userConfig 用户配置
|
||||
return Object.assign(defaultConfig, userConfig)
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
// 以如下配置为例
|
||||
// {
|
||||
// "tokenExpiresIn": 7200,
|
||||
// "passwordErrorLimit": 6,
|
||||
// "bindTokenToDevice": false,
|
||||
// "passwordErrorRetryTime": 3600,
|
||||
// "app-plus": {
|
||||
// "tokenExpiresIn": 2592000
|
||||
// },
|
||||
// "service": {
|
||||
// "sms": {
|
||||
// "codeExpiresIn": 300
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// 获取配置
|
||||
uniIdConfig.config() // 获取全部配置,注意:uni-config-center内不存在对应插件目录时会返回空对象
|
||||
uniIdConfig.config('tokenExpiresIn') // 指定键值获取配置,返回:7200
|
||||
uniIdConfig.config('service.sms.codeExpiresIn') // 指定键值获取配置,返回:300
|
||||
uniIdConfig.config('tokenExpiresThreshold', 600) // 指定键值获取配置,如果不存在则取传入的默认值,返回:600
|
||||
|
||||
// 获取文件绝对路径
|
||||
uniIdConfig.resolve('custom-token.js') // 获取uni-config-center/uni-id/custom-token.js文件的路径
|
||||
|
||||
// 引用文件(require)
|
||||
uniIDConfig.requireFile('custom-token.js') // 使用require方式引用uni-config-center/uni-id/custom-token.js文件。文件不存在时返回undefined,文件内有其他错误导致require失败时会抛出错误。
|
||||
|
||||
// 判断是否包含某文件
|
||||
uniIDConfig.hasFile('custom-token.js') // 配置目录是否包含某文件,true: 文件存在,false: 文件不存在
|
||||
```
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
{"name":"uni-config-center","version":"0.0.3","description":"配置中心","main":"index.js","keywords":[],"author":"DCloud","license":"Apache-2.0"}
|
34
uni_modules/uni-id-common/changelog.md
Normal file
34
uni_modules/uni-id-common/changelog.md
Normal file
@ -0,0 +1,34 @@
|
||||
## 1.0.17(2024-04-26)
|
||||
- 兼容uni-app-x对客户端uniPlatform的调整(uni-app-x内uniPlatform区分app-android、app-ios)
|
||||
## 1.0.16(2023-04-25)
|
||||
- 新增maxTokenLength配置,用于限制数据库用户记录token数组的最大长度
|
||||
## 1.0.15(2023-04-06)
|
||||
- 修复部分语言国际化出错的Bug
|
||||
## 1.0.14(2023-03-07)
|
||||
- 修复 admin用户包含其他角色时未包含在token的Bug
|
||||
## 1.0.13(2022-07-21)
|
||||
- 修复 创建token时未传角色权限信息生成的token不正确的bug
|
||||
## 1.0.12(2022-07-15)
|
||||
- 提升与旧版本uni-id的兼容性(补充读取配置文件时回退平台app-plus、h5),但是仍推荐使用新平台名进行配置(app、web)
|
||||
## 1.0.11(2022-07-14)
|
||||
- 修复 部分情况下报`read property 'reduce' of undefined`的错误
|
||||
## 1.0.10(2022-07-11)
|
||||
- 将token存储在用户表的token字段内,与旧版本uni-id保持一致
|
||||
## 1.0.9(2022-07-01)
|
||||
- checkToken兼容token内未缓存角色权限的情况,此时将查库获取角色权限
|
||||
## 1.0.8(2022-07-01)
|
||||
- 修复clientDB默认依赖时部分情况下获取不到uni-id配置的Bug
|
||||
## 1.0.7(2022-06-30)
|
||||
- 修复config文件不合法时未抛出具体错误的Bug
|
||||
## 1.0.6(2022-06-28)
|
||||
- 移除插件内的数据表schema
|
||||
## 1.0.5(2022-06-27)
|
||||
- 修复使用多应用配置时报`Cannot read property 'appId' of undefined`的Bug
|
||||
## 1.0.4(2022-06-27)
|
||||
- 修复使用自定义token内容功能报错的Bug [详情](https://ask.dcloud.net.cn/question/147945)
|
||||
## 1.0.2(2022-06-23)
|
||||
- 对齐旧版本uni-id默认配置
|
||||
## 1.0.1(2022-06-22)
|
||||
- 补充对uni-config-center的依赖
|
||||
## 1.0.0(2022-06-21)
|
||||
- 提供uni-id token创建、校验、刷新接口,简化旧版uni-id公共模块
|
85
uni_modules/uni-id-common/package.json
Normal file
85
uni_modules/uni-id-common/package.json
Normal file
@ -0,0 +1,85 @@
|
||||
{
|
||||
"id": "uni-id-common",
|
||||
"displayName": "uni-id-common",
|
||||
"version": "1.0.17",
|
||||
"description": "包含uni-id token生成、校验、刷新功能的云函数公共模块",
|
||||
"keywords": [
|
||||
"uni-id-common",
|
||||
"uniCloud",
|
||||
"token",
|
||||
"权限"
|
||||
],
|
||||
"repository": "https://gitcode.net/dcloud/uni-id-common",
|
||||
"engines": {
|
||||
"HBuilderX": "^3.1.0"
|
||||
},
|
||||
"dcloudext": {
|
||||
"sale": {
|
||||
"regular": {
|
||||
"price": "0.00"
|
||||
},
|
||||
"sourcecode": {
|
||||
"price": "0.00"
|
||||
}
|
||||
},
|
||||
"contact": {
|
||||
"qq": ""
|
||||
},
|
||||
"declaration": {
|
||||
"ads": "无",
|
||||
"data": "无",
|
||||
"permissions": "无"
|
||||
},
|
||||
"npmurl": "",
|
||||
"type": "unicloud-template-function"
|
||||
},
|
||||
"uni_modules": {
|
||||
"dependencies": ["uni-config-center"],
|
||||
"encrypt": [],
|
||||
"platforms": {
|
||||
"cloud": {
|
||||
"tcb": "y",
|
||||
"aliyun": "y",
|
||||
"alipay": "n"
|
||||
},
|
||||
"client": {
|
||||
"Vue": {
|
||||
"vue2": "u",
|
||||
"vue3": "u"
|
||||
},
|
||||
"App": {
|
||||
"app-vue": "u",
|
||||
"app-nvue": "u"
|
||||
},
|
||||
"H5-mobile": {
|
||||
"Safari": "u",
|
||||
"Android Browser": "u",
|
||||
"微信浏览器(Android)": "u",
|
||||
"QQ浏览器(Android)": "u"
|
||||
},
|
||||
"H5-pc": {
|
||||
"Chrome": "u",
|
||||
"IE": "u",
|
||||
"Edge": "u",
|
||||
"Firefox": "u",
|
||||
"Safari": "u"
|
||||
},
|
||||
"小程序": {
|
||||
"微信": "u",
|
||||
"阿里": "u",
|
||||
"百度": "u",
|
||||
"字节跳动": "u",
|
||||
"QQ": "u",
|
||||
"钉钉": "u",
|
||||
"快手": "u",
|
||||
"飞书": "u",
|
||||
"京东": "u"
|
||||
},
|
||||
"快应用": {
|
||||
"华为": "u",
|
||||
"联盟": "u"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
3
uni_modules/uni-id-common/readme.md
Normal file
3
uni_modules/uni-id-common/readme.md
Normal file
@ -0,0 +1,3 @@
|
||||
# uni-id-common
|
||||
|
||||
文档请参考:[uni-id-common](https://uniapp.dcloud.net.cn/uniCloud/uni-id-common.html)
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
{"name":"uni-id-common","version":"1.0.17","description":"uni-id token生成、校验、刷新","main":"index.js","homepage":"https://uniapp.dcloud.io/uniCloud/uni-id-common.html","repository":{"type":"git","url":"git+https://gitee.com/dcloud/uni-id-common.git"},"author":"DCloud","license":"Apache-2.0","dependencies":{"uni-config-center":"file:../../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"}}
|
@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
class BridgeError extends Error {
|
||||
|
||||
constructor(code, message) {
|
||||
super(message)
|
||||
|
||||
this._code = code
|
||||
}
|
||||
|
||||
get code() {
|
||||
return this._code
|
||||
}
|
||||
|
||||
get errCode() {
|
||||
return this._code
|
||||
}
|
||||
|
||||
get errMsg() {
|
||||
return this.message
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
BridgeError
|
||||
}
|
@ -0,0 +1,124 @@
|
||||
'use strict';
|
||||
|
||||
const {
|
||||
ProviderType
|
||||
} = require('./consts.js')
|
||||
|
||||
const configCenter = require('uni-config-center')
|
||||
|
||||
// 多维数据为兼容uni-id以前版本配置
|
||||
const OauthConfig = {
|
||||
'weixin-app': [
|
||||
['app', 'oauth', 'weixin'],
|
||||
['app-plus', 'oauth', 'weixin']
|
||||
],
|
||||
'weixin-mp': [
|
||||
['mp-weixin', 'oauth', 'weixin']
|
||||
],
|
||||
'weixin-h5': [
|
||||
['web', 'oauth', 'weixin-h5'],
|
||||
['h5-weixin', 'oauth', 'weixin'],
|
||||
['h5', 'oauth', 'weixin']
|
||||
],
|
||||
'weixin-web': [
|
||||
['web', 'oauth', 'weixin-web']
|
||||
],
|
||||
'qq-app': [
|
||||
['app', 'oauth', 'qq'],
|
||||
['app-plus', 'oauth', 'qq']
|
||||
],
|
||||
'qq-mp': [
|
||||
['mp-qq', 'oauth', 'qq']
|
||||
]
|
||||
}
|
||||
|
||||
const Support_Platforms = [
|
||||
ProviderType.WEIXIN_MP,
|
||||
ProviderType.WEIXIN_H5,
|
||||
ProviderType.WEIXIN_APP,
|
||||
ProviderType.WEIXIN_WEB,
|
||||
ProviderType.QQ_MP,
|
||||
ProviderType.QQ_APP
|
||||
]
|
||||
|
||||
class ConfigBase {
|
||||
|
||||
constructor() {
|
||||
const uniIdConfigCenter = configCenter({
|
||||
pluginId: 'uni-id'
|
||||
})
|
||||
|
||||
this._uniIdConfig = uniIdConfigCenter.config()
|
||||
}
|
||||
|
||||
getAppConfig(appid) {
|
||||
if (Array.isArray(this._uniIdConfig)) {
|
||||
return this._uniIdConfig.find((item) => {
|
||||
return (item.dcloudAppid === appid)
|
||||
})
|
||||
}
|
||||
return this._uniIdConfig
|
||||
}
|
||||
}
|
||||
|
||||
class AppConfig extends ConfigBase {
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
}
|
||||
|
||||
get(appid, platform) {
|
||||
if (!this.isSupport(platform)) {
|
||||
return null
|
||||
}
|
||||
|
||||
let appConfig = this.getAppConfig(appid)
|
||||
if (!appConfig) {
|
||||
return null
|
||||
}
|
||||
|
||||
return this.getOauthConfig(appConfig, platform)
|
||||
}
|
||||
|
||||
isSupport(platformName) {
|
||||
return (Support_Platforms.indexOf(platformName) >= 0)
|
||||
}
|
||||
|
||||
getOauthConfig(appConfig, platformName) {
|
||||
let treePath = OauthConfig[platformName]
|
||||
let node = this.findNode(appConfig, treePath)
|
||||
if (node && node.appid && node.appsecret) {
|
||||
return {
|
||||
appid: node.appid,
|
||||
secret: node.appsecret
|
||||
}
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
||||
findNode(treeNode, arrayPath) {
|
||||
let node = treeNode
|
||||
for (let treePath of arrayPath) {
|
||||
for (let name of treePath) {
|
||||
const currentNode = node[name]
|
||||
if (currentNode) {
|
||||
node = currentNode
|
||||
} else {
|
||||
node = null
|
||||
break
|
||||
}
|
||||
}
|
||||
if (node === null) {
|
||||
node = treeNode
|
||||
} else {
|
||||
break
|
||||
}
|
||||
}
|
||||
return node
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
module.exports = {
|
||||
AppConfig
|
||||
};
|
@ -0,0 +1,30 @@
|
||||
'use strict';
|
||||
|
||||
const TAG = "UNI_OPEN_BRIDGE"
|
||||
|
||||
const HTTP_STATUS = {
|
||||
SUCCESS: 200
|
||||
}
|
||||
|
||||
const ProviderType = {
|
||||
WEIXIN_MP: 'weixin-mp',
|
||||
WEIXIN_H5: 'weixin-h5',
|
||||
WEIXIN_APP: 'weixin-app',
|
||||
WEIXIN_WEB: 'weixin-web',
|
||||
QQ_MP: 'qq-mp',
|
||||
QQ_APP: 'qq-app'
|
||||
}
|
||||
|
||||
// old
|
||||
const PlatformType = ProviderType
|
||||
|
||||
const ErrorCodeType = {
|
||||
SYSTEM_ERROR: TAG + "_SYSTEM_ERROR"
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
HTTP_STATUS,
|
||||
ProviderType,
|
||||
PlatformType,
|
||||
ErrorCodeType
|
||||
}
|
@ -0,0 +1,317 @@
|
||||
'use strict';
|
||||
|
||||
const {
|
||||
PlatformType,
|
||||
ProviderType,
|
||||
ErrorCodeType
|
||||
} = require('./consts.js')
|
||||
|
||||
const {
|
||||
AppConfig
|
||||
} = require('./config.js')
|
||||
|
||||
const {
|
||||
Storage
|
||||
} = require('./storage.js')
|
||||
|
||||
const {
|
||||
BridgeError
|
||||
} = require('./bridge-error.js')
|
||||
|
||||
const {
|
||||
WeixinServer
|
||||
} = require('./weixin-server.js')
|
||||
|
||||
const appConfig = new AppConfig()
|
||||
|
||||
class AccessToken extends Storage {
|
||||
|
||||
constructor() {
|
||||
super('access-token', ['provider', 'appid'])
|
||||
}
|
||||
|
||||
async update(key) {
|
||||
super.update(key)
|
||||
|
||||
const result = await this.getByWeixinServer(key)
|
||||
|
||||
return this.set(key, result.value, result.duration)
|
||||
}
|
||||
|
||||
async fallback(key) {
|
||||
return this.getByWeixinServer(key)
|
||||
}
|
||||
|
||||
async getByWeixinServer(key) {
|
||||
const oauthConfig = appConfig.get(key.dcloudAppid, key.provider)
|
||||
let methodName
|
||||
if (key.provider === ProviderType.WEIXIN_MP) {
|
||||
methodName = 'GetMPAccessTokenData'
|
||||
} else if (key.provider === ProviderType.WEIXIN_H5) {
|
||||
methodName = 'GetH5AccessTokenData'
|
||||
} else {
|
||||
throw new BridgeError(ErrorCodeType.SYSTEM_ERROR, "provider invalid")
|
||||
}
|
||||
|
||||
const responseData = await WeixinServer[methodName](oauthConfig)
|
||||
|
||||
const duration = responseData.expires_in || (60 * 60 * 2)
|
||||
delete responseData.expires_in
|
||||
|
||||
return {
|
||||
value: responseData,
|
||||
duration
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class UserAccessToken extends Storage {
|
||||
|
||||
constructor() {
|
||||
super('user-access-token', ['provider', 'appid', 'openid'])
|
||||
}
|
||||
}
|
||||
|
||||
class SessionKey extends Storage {
|
||||
|
||||
constructor() {
|
||||
super('session-key', ['provider', 'appid', 'openid'])
|
||||
}
|
||||
}
|
||||
|
||||
class Encryptkey extends Storage {
|
||||
|
||||
constructor() {
|
||||
super('encrypt-key', ['provider', 'appid', 'openid'])
|
||||
}
|
||||
|
||||
async update(key) {
|
||||
super.update(key)
|
||||
|
||||
const result = await this.getByWeixinServer(key)
|
||||
|
||||
return this.set(key, result.value, result.duration)
|
||||
}
|
||||
|
||||
getKeyString(key) {
|
||||
return `${super.getKeyString(key)}-${key.version}`
|
||||
}
|
||||
|
||||
getExpiresIn(value) {
|
||||
if (value <= 0) {
|
||||
return 60
|
||||
}
|
||||
return value
|
||||
}
|
||||
|
||||
async fallback(key) {
|
||||
return this.getByWeixinServer(key)
|
||||
}
|
||||
|
||||
async getByWeixinServer(key) {
|
||||
const accessToken = await Factory.Get(AccessToken, key)
|
||||
const userSession = await Factory.Get(SessionKey, key)
|
||||
|
||||
const responseData = await WeixinServer.GetUserEncryptKeyData({
|
||||
openid: key.openid,
|
||||
access_token: accessToken.access_token,
|
||||
session_key: userSession.session_key
|
||||
})
|
||||
|
||||
const keyInfo = responseData.key_info_list.find((item) => {
|
||||
return item.version === key.version
|
||||
})
|
||||
|
||||
if (!keyInfo) {
|
||||
throw new BridgeError(ErrorCodeType.SYSTEM_ERROR, 'key version invalid')
|
||||
}
|
||||
|
||||
const value = {
|
||||
encrypt_key: keyInfo.encrypt_key,
|
||||
iv: keyInfo.iv
|
||||
}
|
||||
|
||||
return {
|
||||
value,
|
||||
duration: keyInfo.expire_in
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class Ticket extends Storage {
|
||||
|
||||
constructor() {
|
||||
super('ticket', ['provider', 'appid'])
|
||||
}
|
||||
|
||||
async update(key) {
|
||||
super.update(key)
|
||||
|
||||
const result = await this.getByWeixinServer(key)
|
||||
|
||||
return this.set(key, result.value, result.duration)
|
||||
}
|
||||
|
||||
async fallback(key) {
|
||||
return this.getByWeixinServer(key)
|
||||
}
|
||||
|
||||
async getByWeixinServer(key) {
|
||||
const accessToken = await Factory.Get(AccessToken, {
|
||||
dcloudAppid: key.dcloudAppid,
|
||||
provider: ProviderType.WEIXIN_H5
|
||||
})
|
||||
|
||||
const responseData = await WeixinServer.GetH5TicketData(accessToken)
|
||||
|
||||
const duration = responseData.expires_in || (60 * 60 * 2)
|
||||
delete responseData.expires_in
|
||||
delete responseData.errcode
|
||||
delete responseData.errmsg
|
||||
|
||||
return {
|
||||
value: responseData,
|
||||
duration
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
const Factory = {
|
||||
|
||||
async Get(T, key, fallback) {
|
||||
Factory.FixOldKey(key)
|
||||
return Factory.MakeUnique(T).get(key, fallback)
|
||||
},
|
||||
|
||||
async Set(T, key, value, expiresIn) {
|
||||
Factory.FixOldKey(key)
|
||||
return Factory.MakeUnique(T).set(key, value, expiresIn)
|
||||
},
|
||||
|
||||
async Remove(T, key) {
|
||||
Factory.FixOldKey(key)
|
||||
return Factory.MakeUnique(T).remove(key)
|
||||
},
|
||||
|
||||
async Update(T, key) {
|
||||
Factory.FixOldKey(key)
|
||||
return Factory.MakeUnique(T).update(key)
|
||||
},
|
||||
|
||||
FixOldKey(key) {
|
||||
if (!key.provider) {
|
||||
key.provider = key.platform
|
||||
}
|
||||
|
||||
const configData = appConfig.get(key.dcloudAppid, key.provider)
|
||||
if (!configData) {
|
||||
throw new BridgeError(ErrorCodeType.SYSTEM_ERROR, 'appid or provider invalid')
|
||||
}
|
||||
key.appid = configData.appid
|
||||
},
|
||||
|
||||
MakeUnique(T) {
|
||||
return new T()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// exports
|
||||
|
||||
async function getAccessToken(key, fallback) {
|
||||
return Factory.Get(AccessToken, key, fallback)
|
||||
}
|
||||
|
||||
async function setAccessToken(key, value, expiresIn) {
|
||||
return Factory.Set(AccessToken, key, value, expiresIn)
|
||||
}
|
||||
|
||||
async function removeAccessToken(key) {
|
||||
return Factory.Remove(AccessToken, key)
|
||||
}
|
||||
|
||||
async function updateAccessToken(key) {
|
||||
return Factory.Update(AccessToken, key)
|
||||
}
|
||||
|
||||
async function getUserAccessToken(key, fallback) {
|
||||
return Factory.Get(UserAccessToken, key, fallback)
|
||||
}
|
||||
|
||||
async function setUserAccessToken(key, value, expiresIn) {
|
||||
return Factory.Set(UserAccessToken, key, value, expiresIn)
|
||||
}
|
||||
|
||||
async function removeUserAccessToken(key) {
|
||||
return Factory.Remove(UserAccessToken, key)
|
||||
}
|
||||
|
||||
async function getSessionKey(key, fallback) {
|
||||
return Factory.Get(SessionKey, key, fallback)
|
||||
}
|
||||
|
||||
async function setSessionKey(key, value, expiresIn) {
|
||||
return Factory.Set(SessionKey, key, value, expiresIn)
|
||||
}
|
||||
|
||||
async function removeSessionKey(key) {
|
||||
return Factory.Remove(SessionKey, key)
|
||||
}
|
||||
|
||||
async function getEncryptKey(key, fallback) {
|
||||
return Factory.Get(Encryptkey, key, fallback)
|
||||
}
|
||||
|
||||
async function setEncryptKey(key, value, expiresIn) {
|
||||
return Factory.Set(Encryptkey, key, value, expiresIn)
|
||||
}
|
||||
|
||||
async function removeEncryptKey(key) {
|
||||
return Factory.Remove(Encryptkey, key)
|
||||
}
|
||||
|
||||
async function updateEncryptKey(key) {
|
||||
return Factory.Update(Encryptkey, key)
|
||||
}
|
||||
|
||||
async function getTicket(key, fallback) {
|
||||
return Factory.Get(Ticket, key, fallback)
|
||||
}
|
||||
|
||||
async function setTicket(key, value, expiresIn) {
|
||||
return Factory.Set(Ticket, key, value, expiresIn)
|
||||
}
|
||||
|
||||
async function removeTicket(key) {
|
||||
return Factory.Remove(Ticket, key)
|
||||
}
|
||||
|
||||
async function updateTicket(key) {
|
||||
return Factory.Update(Ticket, key)
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
getAccessToken,
|
||||
setAccessToken,
|
||||
removeAccessToken,
|
||||
updateAccessToken,
|
||||
getUserAccessToken,
|
||||
setUserAccessToken,
|
||||
removeUserAccessToken,
|
||||
getSessionKey,
|
||||
setSessionKey,
|
||||
removeSessionKey,
|
||||
getEncryptKey,
|
||||
setEncryptKey,
|
||||
removeEncryptKey,
|
||||
updateEncryptKey,
|
||||
getTicket,
|
||||
setTicket,
|
||||
removeTicket,
|
||||
updateTicket,
|
||||
ProviderType,
|
||||
PlatformType,
|
||||
WeixinServer,
|
||||
ErrorCodeType
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "uni-open-bridge-common",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"uni-config-center": "file:../../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
|
||||
}
|
||||
}
|
@ -0,0 +1,111 @@
|
||||
'use strict';
|
||||
|
||||
const {
|
||||
Validator
|
||||
} = require('./validator.js')
|
||||
|
||||
const {
|
||||
CacheKeyCascade
|
||||
} = require('./uni-cloud-cache.js')
|
||||
|
||||
const {
|
||||
BridgeError
|
||||
} = require('./bridge-error.js')
|
||||
|
||||
class Storage {
|
||||
|
||||
constructor(type, keys) {
|
||||
this._type = type || null
|
||||
this._keys = keys || []
|
||||
}
|
||||
|
||||
async get(key, fallback) {
|
||||
this.validateKey(key)
|
||||
const result = await this.create(key, fallback).get()
|
||||
return result.value
|
||||
}
|
||||
|
||||
async set(key, value, expiresIn) {
|
||||
this.validateKey(key)
|
||||
this.validateValue(value)
|
||||
const expires_in = this.getExpiresIn(expiresIn)
|
||||
if (expires_in !== 0) {
|
||||
await this.create(key).set(this.getValue(value), expires_in)
|
||||
}
|
||||
}
|
||||
|
||||
async remove(key) {
|
||||
this.validateKey(key)
|
||||
await this.create(key).remove()
|
||||
}
|
||||
|
||||
// virtual
|
||||
async update(key) {
|
||||
this.validateKey(key)
|
||||
}
|
||||
|
||||
async ttl(key) {
|
||||
this.validateKey(key)
|
||||
// 后续考虑支持
|
||||
}
|
||||
|
||||
async fallback(key) {}
|
||||
|
||||
getKeyString(key) {
|
||||
const keyArray = [Storage.Prefix]
|
||||
this._keys.forEach((name) => {
|
||||
keyArray.push(key[name])
|
||||
})
|
||||
keyArray.push(this._type)
|
||||
return keyArray.join(':')
|
||||
}
|
||||
|
||||
getValue(value) {
|
||||
return value
|
||||
}
|
||||
|
||||
getExpiresIn(value) {
|
||||
if (value !== undefined) {
|
||||
return value
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
validateKey(key) {
|
||||
Validator.Key(this._keys, key)
|
||||
}
|
||||
|
||||
validateValue(value) {
|
||||
Validator.Value(value)
|
||||
}
|
||||
|
||||
create(key, fallback) {
|
||||
const keyString = this.getKeyString(key)
|
||||
const options = {
|
||||
layers: [{
|
||||
type: 'database',
|
||||
key: keyString
|
||||
}, {
|
||||
type: 'redis',
|
||||
key: keyString
|
||||
}]
|
||||
}
|
||||
|
||||
const _this = this
|
||||
return new CacheKeyCascade({
|
||||
...options,
|
||||
fallback: async function() {
|
||||
if (fallback) {
|
||||
return fallback(key)
|
||||
} else if (_this.fallback) {
|
||||
return _this.fallback(key)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Storage.Prefix = "uni-id"
|
||||
|
||||
module.exports = {
|
||||
Storage
|
||||
};
|
@ -0,0 +1,324 @@
|
||||
const db = uniCloud.database()
|
||||
|
||||
function getType(value) {
|
||||
return Object.prototype.toString.call(value).slice(8, -1).toLowerCase()
|
||||
}
|
||||
|
||||
const validator = {
|
||||
key: function(value) {
|
||||
const err = new Error('Invalid key')
|
||||
if (typeof value !== 'string') {
|
||||
throw err
|
||||
}
|
||||
const valueTrim = value.trim()
|
||||
if (!valueTrim || valueTrim !== value) {
|
||||
throw err
|
||||
}
|
||||
},
|
||||
value: function(value) {
|
||||
// 仅作简单校验
|
||||
const type = getType(value)
|
||||
const validValueType = ['null', 'number', 'string', 'array', 'object']
|
||||
if (validValueType.indexOf(type) === -1) {
|
||||
throw new Error('Invalid value type')
|
||||
}
|
||||
},
|
||||
duration: function(value) {
|
||||
const err = new Error('Invalid duration')
|
||||
if (value === undefined) {
|
||||
return
|
||||
}
|
||||
if (typeof value !== 'number' || value === 0) {
|
||||
throw err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 入库时 expired 为过期时间对应的时间戳,永不过期用-1表示
|
||||
* 返回结果时 与redis对齐,-1表示永不过期,-2表示已过期或不存在
|
||||
*/
|
||||
class DatabaseCache {
|
||||
constructor({
|
||||
collection = 'opendb-open-data'
|
||||
} = {}) {
|
||||
this.type = 'db'
|
||||
this.collection = db.collection(collection)
|
||||
}
|
||||
|
||||
_serializeValue(value) {
|
||||
return value === undefined ? null : JSON.stringify(value)
|
||||
}
|
||||
|
||||
_deserializeValue(value) {
|
||||
return value ? JSON.parse(value) : value
|
||||
}
|
||||
|
||||
async set(key, value, duration) {
|
||||
validator.key(key)
|
||||
validator.value(value)
|
||||
validator.duration(duration)
|
||||
value = this._serializeValue(value)
|
||||
await this.collection.doc(key).set({
|
||||
value,
|
||||
expired: duration && duration !== -1 ? Date.now() + (duration * 1000) : -1
|
||||
})
|
||||
}
|
||||
|
||||
async _getWithDuration(key) {
|
||||
const getKeyRes = await this.collection.doc(key).get()
|
||||
const record = getKeyRes.data[0]
|
||||
if (!record) {
|
||||
return {
|
||||
value: null,
|
||||
duration: -2
|
||||
}
|
||||
}
|
||||
const value = this._deserializeValue(record.value)
|
||||
const expired = record.expired
|
||||
if (expired === -1) {
|
||||
return {
|
||||
value,
|
||||
duration: -1
|
||||
}
|
||||
}
|
||||
const duration = expired - Date.now()
|
||||
if (duration <= 0) {
|
||||
await this.remove(key)
|
||||
return {
|
||||
value: null,
|
||||
duration: -2
|
||||
}
|
||||
}
|
||||
return {
|
||||
value,
|
||||
duration: Math.floor(duration / 1000)
|
||||
}
|
||||
}
|
||||
|
||||
async get(key, {
|
||||
withDuration = true
|
||||
} = {}) {
|
||||
const result = await this._getWithDuration(key)
|
||||
if (!withDuration) {
|
||||
delete result.duration
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
async remove(key) {
|
||||
await this.collection.doc(key).remove()
|
||||
}
|
||||
}
|
||||
|
||||
class RedisCache {
|
||||
constructor() {
|
||||
this.type = 'redis'
|
||||
this.redis = uniCloud.redis()
|
||||
}
|
||||
|
||||
_serializeValue(value) {
|
||||
return value === undefined ? null : JSON.stringify(value)
|
||||
}
|
||||
|
||||
_deserializeValue(value) {
|
||||
return value ? JSON.parse(value) : value
|
||||
}
|
||||
|
||||
async set(key, value, duration) {
|
||||
validator.key(key)
|
||||
validator.value(value)
|
||||
validator.duration(duration)
|
||||
value = this._serializeValue(value)
|
||||
if (!duration || duration === -1) {
|
||||
await this.redis.set(key, value)
|
||||
} else {
|
||||
await this.redis.set(key, value, 'EX', duration)
|
||||
}
|
||||
}
|
||||
|
||||
async get(key, {
|
||||
withDuration = false
|
||||
} = {}) {
|
||||
let value = await this.redis.get(key)
|
||||
value = this._deserializeValue(value)
|
||||
if (!withDuration) {
|
||||
return {
|
||||
value
|
||||
}
|
||||
}
|
||||
const durationSecond = await this.redis.ttl(key)
|
||||
let duration
|
||||
switch (durationSecond) {
|
||||
case -1:
|
||||
duration = -1
|
||||
break
|
||||
case -2:
|
||||
duration = -2
|
||||
break
|
||||
default:
|
||||
duration = durationSecond
|
||||
break
|
||||
}
|
||||
return {
|
||||
value,
|
||||
duration
|
||||
}
|
||||
}
|
||||
|
||||
async remove(key) {
|
||||
await this.redis.del(key)
|
||||
}
|
||||
}
|
||||
|
||||
class Cache {
|
||||
constructor({
|
||||
type,
|
||||
collection
|
||||
} = {}) {
|
||||
if (type === 'database') {
|
||||
return new DatabaseCache({
|
||||
collection
|
||||
})
|
||||
} else if (type === 'redis') {
|
||||
return new RedisCache()
|
||||
} else {
|
||||
throw new Error('Invalid cache type')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class CacheKey {
|
||||
constructor({
|
||||
type,
|
||||
collection,
|
||||
cache,
|
||||
key,
|
||||
fallback
|
||||
} = {}) {
|
||||
this.cache = cache || new Cache({
|
||||
type,
|
||||
collection
|
||||
})
|
||||
this.key = key
|
||||
this.fallback = fallback
|
||||
}
|
||||
|
||||
async set(value, duration) {
|
||||
await this.cache.set(this.key, value, duration)
|
||||
}
|
||||
|
||||
async setWithSync(value, duration, syncMethod) {
|
||||
await Promise.all([
|
||||
this.set(this.key, value, duration),
|
||||
syncMethod(value, duration)
|
||||
])
|
||||
}
|
||||
|
||||
async get() {
|
||||
let {
|
||||
value,
|
||||
duration
|
||||
} = await this.cache.get(this.key)
|
||||
if (value !== null && value !== undefined) {
|
||||
return {
|
||||
value,
|
||||
duration
|
||||
}
|
||||
}
|
||||
if (!this.fallback) {
|
||||
return {
|
||||
value: null,
|
||||
duration: -2
|
||||
}
|
||||
}
|
||||
const fallbackResult = await this.fallback()
|
||||
value = fallbackResult.value
|
||||
duration = fallbackResult.duration
|
||||
if (value !== null && duration !== undefined) {
|
||||
await this.cache.set(this.key, value, duration)
|
||||
}
|
||||
return {
|
||||
value,
|
||||
duration
|
||||
}
|
||||
}
|
||||
|
||||
async remove() {
|
||||
await this.cache.remove(this.key)
|
||||
}
|
||||
}
|
||||
|
||||
class CacheKeyCascade {
|
||||
constructor({
|
||||
layers, // [{cache, type, collection, key}] 从低级到高级排序,[DbCacheKey, RedisCacheKey]
|
||||
fallback
|
||||
} = {}) {
|
||||
this.layers = layers
|
||||
this.cacheLayers = []
|
||||
let lastCacheKey
|
||||
for (let i = 0; i < layers.length; i++) {
|
||||
const {
|
||||
type,
|
||||
cache,
|
||||
collection,
|
||||
key
|
||||
} = layers[i]
|
||||
const lastCacheKeyTemp = lastCacheKey
|
||||
try {
|
||||
const currentCacheKey = new CacheKey({
|
||||
type,
|
||||
collection,
|
||||
cache,
|
||||
key,
|
||||
fallback: i === 0 ? fallback : function() {
|
||||
return lastCacheKeyTemp.get()
|
||||
}
|
||||
})
|
||||
this.cacheLayers.push(currentCacheKey)
|
||||
lastCacheKey = currentCacheKey
|
||||
} catch (e) {}
|
||||
}
|
||||
this.highLevelCache = lastCacheKey
|
||||
}
|
||||
|
||||
async set(value, duration) {
|
||||
return Promise.all(
|
||||
this.cacheLayers.map(item => {
|
||||
return item.set(value, duration)
|
||||
})
|
||||
)
|
||||
}
|
||||
|
||||
async setWithSync(value, duration, syncMethod) {
|
||||
const setPromise = this.cacheLayers.map(item => {
|
||||
return item.set(value, duration)
|
||||
})
|
||||
return Promise.all(
|
||||
[
|
||||
...setPromise,
|
||||
syncMethod(value, duration)
|
||||
]
|
||||
)
|
||||
}
|
||||
|
||||
async get() {
|
||||
return this.highLevelCache.get()
|
||||
}
|
||||
|
||||
async remove() {
|
||||
await Promise.all(
|
||||
this.cacheLayers.map(cacheKeyItem => {
|
||||
return cacheKeyItem.remove()
|
||||
})
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
Cache,
|
||||
DatabaseCache,
|
||||
RedisCache,
|
||||
CacheKey,
|
||||
CacheKeyCascade
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
const Validator = {
|
||||
|
||||
Key(keyArray, parameters) {
|
||||
for (let i = 0; i < keyArray.length; i++) {
|
||||
const keyName = keyArray[i]
|
||||
if (typeof parameters[keyName] !== 'string') {
|
||||
Validator.ThrowNewError(`Invalid ${keyName}`)
|
||||
}
|
||||
if (parameters[keyName].length < 1) {
|
||||
Validator.ThrowNewError(`Invalid ${keyName}`)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Value(value) {
|
||||
if (value === undefined) {
|
||||
Validator.ThrowNewError('Invalid Value')
|
||||
}
|
||||
if (typeof value !== 'object') {
|
||||
Validator.ThrowNewError('Invalid Value Type')
|
||||
}
|
||||
},
|
||||
|
||||
ThrowNewError(message) {
|
||||
throw new Error(message)
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
Validator
|
||||
}
|
@ -0,0 +1,203 @@
|
||||
'use strict';
|
||||
|
||||
const crypto = require('crypto')
|
||||
|
||||
const {
|
||||
HTTP_STATUS
|
||||
} = require('./consts.js')
|
||||
|
||||
const {
|
||||
BridgeError
|
||||
} = require('./bridge-error.js')
|
||||
|
||||
class WeixinServer {
|
||||
|
||||
constructor(options = {}) {
|
||||
this._appid = options.appid
|
||||
this._secret = options.secret
|
||||
}
|
||||
|
||||
getAccessToken() {
|
||||
return uniCloud.httpclient.request(WeixinServer.AccessToken_Url, {
|
||||
dataType: 'json',
|
||||
method: 'POST',
|
||||
contentType: 'json',
|
||||
data: {
|
||||
appid: this._appid,
|
||||
secret: this._secret,
|
||||
grant_type: "client_credential"
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 使用客户端获取的 code 从微信服务器换取 openid,code 仅可使用一次
|
||||
codeToSession(code) {
|
||||
return uniCloud.httpclient.request(WeixinServer.Code2Session_Url, {
|
||||
dataType: 'json',
|
||||
data: {
|
||||
appid: this._appid,
|
||||
secret: this._secret,
|
||||
js_code: code,
|
||||
grant_type: 'authorization_code'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
getUserEncryptKey({
|
||||
access_token,
|
||||
openid,
|
||||
session_key
|
||||
}) {
|
||||
console.log(access_token, openid, session_key);
|
||||
const signature = crypto.createHmac('sha256', session_key).update('').digest('hex')
|
||||
return uniCloud.httpclient.request(WeixinServer.User_Encrypt_Key_Url, {
|
||||
dataType: 'json',
|
||||
method: 'POST',
|
||||
dataAsQueryString: true,
|
||||
data: {
|
||||
access_token,
|
||||
openid: openid,
|
||||
signature: signature,
|
||||
sig_method: 'hmac_sha256'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
getH5AccessToken() {
|
||||
return uniCloud.httpclient.request(WeixinServer.AccessToken_H5_Url, {
|
||||
dataType: 'json',
|
||||
method: 'GET',
|
||||
data: {
|
||||
appid: this._appid,
|
||||
secret: this._secret,
|
||||
grant_type: "client_credential"
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
getH5Ticket(access_token) {
|
||||
return uniCloud.httpclient.request(WeixinServer.Ticket_Url, {
|
||||
dataType: 'json',
|
||||
dataAsQueryString: true,
|
||||
method: 'POST',
|
||||
data: {
|
||||
access_token
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
getH5AccessTokenForEip() {
|
||||
return uniCloud.httpProxyForEip.postForm(WeixinServer.AccessToken_H5_Url, {
|
||||
appid: this._appid,
|
||||
secret: this._secret,
|
||||
grant_type: "client_credential"
|
||||
}, {
|
||||
dataType: 'json'
|
||||
})
|
||||
}
|
||||
|
||||
getH5TicketForEip(access_token) {
|
||||
return uniCloud.httpProxyForEip.postForm(WeixinServer.Ticket_Url, {
|
||||
access_token
|
||||
}, {
|
||||
dataType: 'json',
|
||||
dataAsQueryString: true
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
WeixinServer.AccessToken_Url = 'https://api.weixin.qq.com/cgi-bin/stable_token'
|
||||
WeixinServer.Code2Session_Url = 'https://api.weixin.qq.com/sns/jscode2session'
|
||||
WeixinServer.User_Encrypt_Key_Url = 'https://api.weixin.qq.com/wxa/business/getuserencryptkey'
|
||||
WeixinServer.AccessToken_H5_Url = 'https://api.weixin.qq.com/cgi-bin/token'
|
||||
WeixinServer.Ticket_Url = 'https://api.weixin.qq.com/cgi-bin/ticket/getticket?type=jsapi'
|
||||
|
||||
WeixinServer.GetMPAccessToken = function(options) {
|
||||
return new WeixinServer(options).getAccessToken()
|
||||
}
|
||||
|
||||
WeixinServer.GetCodeToSession = function(options) {
|
||||
return new WeixinServer(options).codeToSession(options.code)
|
||||
}
|
||||
|
||||
WeixinServer.GetUserEncryptKey = function(options) {
|
||||
return new WeixinServer(options).getUserEncryptKey(options)
|
||||
}
|
||||
|
||||
WeixinServer.GetH5AccessToken = function(options) {
|
||||
return new WeixinServer(options).getH5AccessToken()
|
||||
}
|
||||
|
||||
WeixinServer.GetH5Ticket = function(options) {
|
||||
return new WeixinServer(options).getH5Ticket(options.access_token)
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
function isAliyun() {
|
||||
return (uniCloud.getCloudInfos()[0].provider === 'aliyun')
|
||||
}
|
||||
|
||||
WeixinServer.GetResponseData = function(response) {
|
||||
console.log("WeixinServer::response", response)
|
||||
|
||||
if (!(response.status === HTTP_STATUS.SUCCESS || response.statusCodeValue === HTTP_STATUS.SUCCESS)) {
|
||||
throw new BridgeError(response.status || response.statusCodeValue, response.status || response.statusCodeValue)
|
||||
}
|
||||
|
||||
const responseData = response.data || response.body
|
||||
|
||||
if (responseData.errcode !== undefined && responseData.errcode !== 0) {
|
||||
throw new BridgeError(responseData.errcode, responseData.errmsg)
|
||||
}
|
||||
|
||||
return responseData
|
||||
}
|
||||
|
||||
WeixinServer.GetMPAccessTokenData = async function(options) {
|
||||
const response = await new WeixinServer(options).getAccessToken()
|
||||
return WeixinServer.GetResponseData(response)
|
||||
}
|
||||
|
||||
WeixinServer.GetCodeToSessionData = async function(options) {
|
||||
const response = await new WeixinServer(options).codeToSession(options.code)
|
||||
return WeixinServer.GetResponseData(response)
|
||||
}
|
||||
|
||||
WeixinServer.GetUserEncryptKeyData = async function(options) {
|
||||
const response = await new WeixinServer(options).getUserEncryptKey(options)
|
||||
return WeixinServer.GetResponseData(response)
|
||||
}
|
||||
|
||||
WeixinServer.GetH5AccessTokenData = async function(options) {
|
||||
const ws = new WeixinServer(options)
|
||||
let response
|
||||
if (isAliyun()) {
|
||||
response = await ws.getH5AccessTokenForEip()
|
||||
if (typeof response === 'string') {
|
||||
response = JSON.parse(response)
|
||||
}
|
||||
} else {
|
||||
response = await ws.getH5AccessToken()
|
||||
}
|
||||
return WeixinServer.GetResponseData(response)
|
||||
}
|
||||
|
||||
WeixinServer.GetH5TicketData = async function(options) {
|
||||
const ws = new WeixinServer(options)
|
||||
let response
|
||||
if (isAliyun()) {
|
||||
response = await ws.getH5TicketForEip(options.access_token)
|
||||
if (typeof response === 'string') {
|
||||
response = JSON.parse(response)
|
||||
}
|
||||
} else {
|
||||
response = await ws.getH5Ticket(options.access_token)
|
||||
}
|
||||
return WeixinServer.GetResponseData(response)
|
||||
}
|
||||
|
||||
|
||||
module.exports = {
|
||||
WeixinServer
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user