mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-21 10:07:11 +00:00
35 lines
741 B
PHP
35 lines
741 B
PHP
<?php
|
|
|
|
namespace app\admin\controller\wechat;
|
|
|
|
use app\admin\controller\AuthController;
|
|
use app\admin\model\wechat\WechatMessage as MessageModel;
|
|
use crmeb\services\UtilService as Util;
|
|
|
|
/**
|
|
* 用户扫码点击事件
|
|
* Class SystemMessage
|
|
* @package app\admin\controller\system
|
|
*/
|
|
class WechatMessage extends AuthController
|
|
{
|
|
/**
|
|
* 显示操作记录
|
|
*/
|
|
public function index()
|
|
{
|
|
$where = Util::getMore([
|
|
['nickname', ''],
|
|
['type', ''],
|
|
['data', ''],
|
|
], $this->request);
|
|
$this->assign('where', $where);
|
|
$this->assign('mold', MessageModel::$mold);
|
|
$this->assign(MessageModel::systemPage($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
|
|
}
|
|
|