增加后台查看消息记录

This commit is contained in:
lccsw
2025-11-21 10:18:21 +08:00
parent d1f5040f8e
commit 1e83af14c6
2 changed files with 48 additions and 1 deletions
+47
View File
@@ -0,0 +1,47 @@
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Notice extends HD_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
}
public function lists()
{
$this->load->view('sys/notice/lists');
}
public function add()
{
}
public function get()
{
}
public function edit()
{
}
public function batch()
{
}
public function export()
{
}
public function del()
{
}
}
+1 -1
View File
@@ -311,7 +311,7 @@
// 连接关闭事件
websocket.onclose = function (event) {
console.log('websocket 关闭连接');
console.log('websocket 关闭连接', event);
if (heartbeatInterval) {
clearInterval(heartbeatInterval);
heartbeatInterval = null;