diff --git a/Application/Mobile/Controller/UserController.class.php b/Application/Mobile/Controller/UserController.class.php
index 5de27038d..e967dbe33 100644
--- a/Application/Mobile/Controller/UserController.class.php
+++ b/Application/Mobile/Controller/UserController.class.php
@@ -176,7 +176,6 @@ class UserController extends BaseController
}
$res = $this->suser->login($account, $password);
- file_put_contents(dirname(__FILE__) . '/login_res_text.txt', json_encode([$res]));
if ($res > 0) {
$data = $this->bindingPromote($promoteId, $account);
} else {
@@ -931,9 +930,9 @@ class UserController extends BaseController
$map['id'] = $logininfo['user_id'];
$user = M("user", "tab_")->where($map)->field("id,phone")->find();
if (!$user['phone']) {
- $where['account'] = $phone;
+// $where['account'] = $phone;
$where['phone'] = $phone;
- $where['_logic'] = 'OR';
+// $where['_logic'] = 'OR';
$is_user = M("user", "tab_")->where($where)->field("id")->find();
if ($is_user) {
echo json_encode(array('status' => 0, 'msg' => '手机号已存在,请更换手机号'));
diff --git a/Application/Mobile/View/Index/business.html b/Application/Mobile/View/Index/business.html
index f6bf23cb6..c11dbc52c 100644
--- a/Application/Mobile/View/Index/business.html
+++ b/Application/Mobile/View/Index/business.html
@@ -1,6 +1,10 @@