WechatMessage.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\controller\admin\v1\wechat;
  12. use app\controller\admin\AuthController;
  13. /**
  14. * 用户扫码点击事件
  15. * Class SystemMessage
  16. * @package app\controller\admin\v1\application\wechat
  17. */
  18. class WechatMessage extends AuthController
  19. {
  20. /**
  21. * 显示操作记录
  22. */
  23. public function index()
  24. {
  25. $where = $this->getMore([
  26. ['page', 1],
  27. ['limit', 20],
  28. ['nickname', ''],
  29. ['type', ''],
  30. ['data', ''],
  31. ]);
  32. return $this->success([]);
  33. }
  34. /**
  35. * 操作名称列表
  36. * @return mixed
  37. */
  38. public function operate()
  39. {
  40. return $this->success([]);
  41. }
  42. }