From 05312b34178ea21544391e6c154b10d1a09cc28f Mon Sep 17 00:00:00 2001
From: zhenhui <1276357500@qq.com>
Date: Fri, 20 Mar 2026 18:10:34 +0800
Subject: [PATCH] =?UTF-8?q?[=E7=A7=AF=E5=88=86=E5=95=86=E5=9F=8E]PlayX?=
=?UTF-8?q?=E6=AF=8F=E6=97=A5=E6=8E=A8=E9=80=81=E6=95=B0=E6=8D=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/admin/controller/mall/PlayxDailyPush.php | 61 +++++++++++++++++
app/common/model/MallPlayxDailyPush.php | 23 +++++++
.../lang/backend/en/mall/playxDailyPush.ts | 12 ++++
.../lang/backend/zh-cn/mall/playxDailyPush.ts | 13 ++++
.../backend/mall/playxDailyPush/index.vue | 65 +++++++++++++++++++
5 files changed, 174 insertions(+)
create mode 100644 app/admin/controller/mall/PlayxDailyPush.php
create mode 100644 app/common/model/MallPlayxDailyPush.php
create mode 100644 web/src/lang/backend/en/mall/playxDailyPush.ts
create mode 100644 web/src/lang/backend/zh-cn/mall/playxDailyPush.ts
create mode 100644 web/src/views/backend/mall/playxDailyPush/index.vue
diff --git a/app/admin/controller/mall/PlayxDailyPush.php b/app/admin/controller/mall/PlayxDailyPush.php
new file mode 100644
index 0000000..d93d21a
--- /dev/null
+++ b/app/admin/controller/mall/PlayxDailyPush.php
@@ -0,0 +1,61 @@
+model = new \app\common\model\MallPlayxDailyPush();
+ }
+
+ /**
+ * 查看
+ * @throws Throwable
+ */
+ public function index(Request $request): Response
+ {
+ $response = $this->initializeBackend($request);
+ if ($response !== null) {
+ return $response;
+ }
+
+ if ($request->get('select') || $request->post('select')) {
+ return $this->select($request);
+ }
+
+ return $this->_index();
+ }
+}
+
diff --git a/app/common/model/MallPlayxDailyPush.php b/app/common/model/MallPlayxDailyPush.php
new file mode 100644
index 0000000..63ab34a
--- /dev/null
+++ b/app/common/model/MallPlayxDailyPush.php
@@ -0,0 +1,23 @@
+ 'float',
+ 'yesterday_total_deposit' => 'float',
+ 'lifetime_total_deposit' => 'float',
+ 'lifetime_total_withdraw' => 'float',
+ 'create_time' => 'integer',
+ ];
+}
diff --git a/web/src/lang/backend/en/mall/playxDailyPush.ts b/web/src/lang/backend/en/mall/playxDailyPush.ts
new file mode 100644
index 0000000..277fcc5
--- /dev/null
+++ b/web/src/lang/backend/en/mall/playxDailyPush.ts
@@ -0,0 +1,12 @@
+export default {
+ id: 'id',
+ user_id: 'user_id',
+ date: 'date',
+ username: 'username',
+ yesterday_win_loss_net: 'yesterday_win_loss_net',
+ yesterday_total_deposit: 'yesterday_total_deposit',
+ lifetime_total_deposit: 'lifetime_total_deposit',
+ lifetime_total_withdraw: 'lifetime_total_withdraw',
+ create_time: 'create_time',
+ 'quick Search Fields': 'id',
+}
diff --git a/web/src/lang/backend/zh-cn/mall/playxDailyPush.ts b/web/src/lang/backend/zh-cn/mall/playxDailyPush.ts
new file mode 100644
index 0000000..cdf1f0e
--- /dev/null
+++ b/web/src/lang/backend/zh-cn/mall/playxDailyPush.ts
@@ -0,0 +1,13 @@
+export default {
+ id: 'ID',
+ user_id: '用户ID',
+ date: '业务日期',
+ username: '用户名',
+ yesterday_win_loss_net: '昨日净输赢',
+ yesterday_total_deposit: '昨日总充值',
+ lifetime_total_deposit: '历史总充值',
+ lifetime_total_withdraw: '历史总提现',
+ create_time: '创建时间',
+ 'quick Search Fields': 'ID',
+}
+
diff --git a/web/src/views/backend/mall/playxDailyPush/index.vue b/web/src/views/backend/mall/playxDailyPush/index.vue
new file mode 100644
index 0000000..c42dc8e
--- /dev/null
+++ b/web/src/views/backend/mall/playxDailyPush/index.vue
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+