From 2123b2947991003e6d77e26f5373f37084ac7671 Mon Sep 17 00:00:00 2001
From: chenxiaojun <956334972@qq.com>
Date: Fri, 22 Nov 2019 14:52:12 +0800
Subject: [PATCH 1/9] =?UTF-8?q?=E6=A0=B9=E6=8D=AE=E6=97=B6=E9=97=B4?=
=?UTF-8?q?=E7=BB=9F=E8=AE=A1=E7=8E=A9=E5=AE=B6=E5=85=85=E5=80=BC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Admin/Controller/AutoController.class.php | 26 ++++++++++++++++++
.../Home/Controller/QueryController.class.php | 27 -------------------
Data/update.sql | 2 +-
3 files changed, 27 insertions(+), 28 deletions(-)
diff --git a/Application/Admin/Controller/AutoController.class.php b/Application/Admin/Controller/AutoController.class.php
index 6ebe18b4b..b442ad320 100644
--- a/Application/Admin/Controller/AutoController.class.php
+++ b/Application/Admin/Controller/AutoController.class.php
@@ -890,5 +890,31 @@ public function auto_rrdae(){
}
}
+ //根据时间统计玩家充值
+ public function userPlayDataCount()
+ {
+ $time = strtotime(date('Y-m-d 00:00:00', time() - (3600 * 24)));
+ $spendMap['pay_status'] = 1;
+ $spendMap['pay_game_status'] = 1;
+ $spendMap['game_player_id'] = ['gt', 0];
+ $spendMap['pay_time'] = ['between', [$time, strtotime(date('Y-m-d 23:59:59', $time))]];
+
+ $field = 'FROM_UNIXTIME(pay_time, "%Y-%m-%d") as day,game_id,server_id,game_player_id,sum(pay_amount) as recharge_cost,count(id) as recharge_count';
+ $spendCostData = M('spend', 'tab_')->field($field)
+ ->where($spendMap)
+ ->group('day,game_player_id,server_id,game_id')
+ ->select();
+ $data = [];
+ foreach ($spendCostData as $list) {
+ $save['game_id'] = $list['game_id'];
+ $save['server_id'] = $list['server_id'];
+ $save['role_id'] = $list['game_player_id'];
+ $save['recharge_cost'] = $list['recharge_cost'];
+ $save['recharge_count'] = $list['recharge_count'];
+ $save['create_time'] = strtotime($list['day']);
+ $data[] = $save;
+ }
+ M('user_play_data_count', 'tab_')->addAll($data);
+ }
}
diff --git a/Application/Home/Controller/QueryController.class.php b/Application/Home/Controller/QueryController.class.php
index 4d0f5061b..be50a7529 100644
--- a/Application/Home/Controller/QueryController.class.php
+++ b/Application/Home/Controller/QueryController.class.php
@@ -2134,31 +2134,4 @@ class QueryController extends BaseController
$this->ajaxReturn($data);
}
-
- public function userPlayDataCount()
- {
- $time = strtotime(date('Y-m-d 00:00:00', time() - (3600 * 24)));
- $spendMap['pay_status'] = 1;
- $spendMap['pay_game_status'] = 1;
- $spendMap['game_player_id'] = ['gt', 0];
- $spendMap['pay_time'] = ['between', [$time, strtotime(date('Y-m-d 23:59:59', $time))]];
-
- $field = 'FROM_UNIXTIME(pay_time, "%Y-%m-%d") as day,game_id,server_id,game_player_id,sum(pay_amount) as recharge_cost,count(id) as recharge_count';
- $spendCostData = M('spend', 'tab_')->field($field)
- ->where($spendMap)
- ->group('day,game_player_id,server_id,game_id')
- ->select();
-
- $data = [];
- foreach ($spendCostData as $list) {
- $save['game_id'] = $list['game_id'];
- $save['server_id'] = $list['server_id'];
- $save['role_id'] = $list['game_player_id'];
- $save['recharge_cost'] = $list['recharge_cost'];
- $save['recharge_count'] = $list['recharge_count'];
- $save['create_time'] = strtotime($list['day']);
- $data[] = $save;
- }
- M('user_play_data_count', 'tab_')->addAll($data);
- }
}
diff --git a/Data/update.sql b/Data/update.sql
index c989c2a8c..9bfad8b2e 100644
--- a/Data/update.sql
+++ b/Data/update.sql
@@ -524,7 +524,7 @@ CREATE TABLE `tab_user_play_data_count` (
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
ALTER TABLE `tab_user_play_data_count`
-ADD INDEX `search`(`game_id`, `server_id`, `role_id`) USING BTREE,
+ADD INDEX `search`(`game_id`, `server_id`, `role_id`, `create_time`) USING BTREE,
ADD INDEX `create_time`(`create_time`) USING BTREE;
ADD INDEX `recharge_cost`(`recharge_cost`) USING BTREE,
ADD INDEX `recharge_count`(`recharge_count`) USING BTREE;
\ No newline at end of file
From e0c0f50c7d29d43d38418716f8ac55f0dfcc30eb Mon Sep 17 00:00:00 2001
From: chenxiaojun <956334972@qq.com>
Date: Fri, 22 Nov 2019 15:04:42 +0800
Subject: [PATCH 2/9] =?UTF-8?q?=E5=88=86=E6=88=90=E6=AF=94=E4=BE=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
Application/Common/Common/extend.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Application/Common/Common/extend.php b/Application/Common/Common/extend.php
index 6f38130b5..8ed98c5b7 100644
--- a/Application/Common/Common/extend.php
+++ b/Application/Common/Common/extend.php
@@ -1053,7 +1053,7 @@ function is_check_account($account){
$map[$field]=$game_id;
$data=M('game','tab_')->where($map)->find();
if(empty($data)){return '';}
- return $data['dratio'];
+ return $data['ratio'];
}
/**
From 0168a52b684e013bd51f514fabe072d403cc752f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9C=E7=94=A8lww?= <“529520975@qq.com>
Date: Fri, 22 Nov 2019 15:18:13 +0800
Subject: [PATCH 3/9] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=AE=98=E7=BD=91-?=
=?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=9B=B4=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Controller/UserController.class.php | 5 +-
Application/Mobile/View/Index/business.html | 41 ++-
Application/Mobile/View/Index/index.html | 28 ++
Application/Mobile/View/Index/introduce.html | 36 ++-
Application/Mobile/View/Public/bases.html | 31 +--
Application/Mobile/View/User/forget.html | 229 ++++++++--------
Application/Mobile/View/User/forget1.html | 157 ++++++-----
Application/Mobile/View/User/index.html | 31 ++-
Application/Mobile/View/User/userauth.html | 203 +++++++-------
Application/Mobile/View/User/usergift.html | 2 +-
Application/Mobile/View/User/usernick.html | 36 +--
.../Mobile/View/User/userpassword.html | 146 +++++-----
Application/Mobile/View/User/userphone.html | 255 ++++++++++--------
Application/Mobile/View/User/userset.html | 33 ++-
Application/Mobile/View/User/usersex.html | 148 +++++-----
Public/Mobile/css/business.css | 7 +-
Public/Mobile/css/common.css | 21 +-
Public/Mobile/css/enterprise.css | 4 +-
Public/Mobile/css/gender.css | 90 +++++++
Public/Mobile/css/home.css | 6 +-
Public/Mobile/css/my.css | 5 +-
Public/Mobile/css/myBag.css | 5 +-
Public/Mobile/css/name.css | 48 ++++
Public/Mobile/css/recharge.css | 5 +-
Public/Mobile/css/remove.css | 61 +++++
Public/Mobile/css/reset.css | 4 +-
Public/Mobile/css/step1.css | 2 +-
Public/Mobile/css/user/myPlay.css | 4 +
Public/Mobile/css/user/setting.css | 1 -
Public/Mobile/images/haoma.png | Bin 0 -> 1000 bytes
Public/Mobile/images/mingzibianji.png | Bin 0 -> 998 bytes
Public/Mobile/images/shimingrenzhengmoren.png | Bin 0 -> 1157 bytes
Public/Mobile/images/shouji.png | Bin 0 -> 620 bytes
Public/Mobile/images/shoujibangding.png | Bin 0 -> 1224 bytes
Public/Mobile/images/user/shoujibangding.png | Bin 1222 -> 1224 bytes
Public/Mobile/images/user/xingbie.png | Bin 0 -> 1970 bytes
Public/Mobile/images/xingbie2.png | Bin 0 -> 1342 bytes
Public/Mobile/images/xiugaimima.png | Bin 0 -> 602 bytes
38 files changed, 1013 insertions(+), 631 deletions(-)
create mode 100644 Public/Mobile/css/gender.css
create mode 100644 Public/Mobile/css/name.css
create mode 100644 Public/Mobile/css/remove.css
create mode 100644 Public/Mobile/images/haoma.png
create mode 100644 Public/Mobile/images/mingzibianji.png
create mode 100644 Public/Mobile/images/shimingrenzhengmoren.png
create mode 100644 Public/Mobile/images/shouji.png
create mode 100644 Public/Mobile/images/shoujibangding.png
create mode 100644 Public/Mobile/images/user/xingbie.png
create mode 100644 Public/Mobile/images/xingbie2.png
create mode 100644 Public/Mobile/images/xiugaimima.png
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 @@