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 @@
+
+
+
+
+
+
+
+