UserMessage.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\MessageService;
  4. use think\admin\Controller;
  5. /**
  6. * 短信发送管理
  7. * Class UserMessage
  8. * @package app\data\controller
  9. */
  10. class UserMessage extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. protected $table = 'DataUserMessage';
  17. /**
  18. * 短信发送管理
  19. * @auth true
  20. * @menu true
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\DbException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. */
  25. public function index()
  26. {
  27. $this->title = '短信发送管理';
  28. $query = $this->_query($this->table);
  29. $query->equal('status')->like('phone,content');
  30. $query->dateBetween('create_at')->order('id desc')->page();
  31. }
  32. /**
  33. * 短信接口配置
  34. * @auth true
  35. * @menu true
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function config()
  41. {
  42. if ($this->request->isGet()) {
  43. $this->title = '短信接口配置';
  44. $this->result = MessageService::instance()->balance();
  45. $this->fetch();
  46. } else {
  47. $data = $this->request->post();
  48. foreach ($data as $k => $v) sysconf($k, $v);
  49. $this->success('配置保存成功!');
  50. }
  51. }
  52. /**
  53. * 删除短信记录
  54. * @auth true
  55. * @throws \think\db\exception\DbException
  56. */
  57. public function remove()
  58. {
  59. $this->_delete($this->table);
  60. }
  61. }