Commit 3d8e2d0a by 宋毅

tj

parent c9ad4512
......@@ -19,7 +19,7 @@ class AppUserPinByLoginPwdCache extends CacheBase {
var uUserName = actionBody.userName;//uUserName
var uPassword = actionBody.password;//uPassword
var uUserInfo = await this.opPlatformUtils.login(uUserName, uPassword,
actionBody.appInfo.uapp_key, actionBody.appInfo.uapp_secret);
actionBody.appInfo.uappKey, actionBody.appInfo.appSecret);
if (uUserInfo.status != 0) {
return uUserInfo;
}//值为2010为用户名或密码错误
......
......@@ -17,7 +17,7 @@ class AppUserPinByLoginVcodeCache extends CacheBase {
async buildCacheVal(cachekey, inputkey, val, ex, ...items) {
var actionBody = val;
var uUserInfo = await this.opPlatformUtils.loginByVCode(actionBody.mobile, actionBody.vcode, actionBody.password,
actionBody.appInfo.uapp_key, actionBody.appInfo.uapp_secret);
actionBody.appInfo.uappKey, actionBody.appInfo.appSecret);
if (uUserInfo.status != 0) {
return uUserInfo;
}//2030验证码校验不成功 或 注册失败
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment