mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 19:12:49 +00:00
36 lines
732 B
PHP
36 lines
732 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();
|
|
}
|
|
|
|
|
|
}
|
|
|