Commit 01d3425b by 冷斌

add

parent 6557a716
...@@ -193,11 +193,10 @@ class Model_User extends PhalApi_Model_NotORM ...@@ -193,11 +193,10 @@ class Model_User extends PhalApi_Model_NotORM
} }
/* 钱包信息 */ /* 钱包信息 */
$accountinfo = DI()->notorm->users_info_auth->select("*")->where('uid=? and status=?', $uid, 1)->andWhere()->fetchOne(); $accountinfo = DI()->notorm->users_info_auth->where("uid={$uid} and status=1")->fetchOne();
if (!$accountinfo) { if (!$accountinfo) {
return 1007; return 1007;
} }
echo 1; die;
//提现比例 //提现比例
......
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