截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Sms.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\setting;
  20. use app\admin\logic\setting\SmsLogic;
  21. use app\common\basics\AdminBase;
  22. use app\common\enum\SmsEnum;
  23. use app\common\server\ConfigServer;
  24. use app\common\server\JsonServer;
  25. /**
  26. * 短信设置
  27. * Class Sms
  28. * @package app\admin\controller\setting
  29. */
  30. class Sms extends AdminBase
  31. {
  32. /**
  33. * Notes: 列表
  34. * @author 段誉(2021/6/7 14:46)
  35. * @return \think\response\Json|\think\response\View
  36. */
  37. public function lists()
  38. {
  39. if ($this->request->isAjax()) {
  40. $lists = SmsLogic::configLists();
  41. return JsonServer::success('获取成功', $lists);
  42. }
  43. return view('', ['status_list' => SmsEnum::getSendStatusDesc(true)]);
  44. }
  45. /**
  46. * Notes: 短信配置
  47. * @author 段誉(2021/6/7 14:46)
  48. * @return \think\response\Json|\think\response\View
  49. */
  50. public function config()
  51. {
  52. if ($this->request->isAjax()) {
  53. $post = $this->request->post();
  54. $res = SmsLogic::setConfig($post);
  55. if (false === $res) {
  56. return JsonServer::error(SmsLogic::getError());
  57. }
  58. return JsonServer::success('设置成功');
  59. }
  60. $engine = $this->request->get('engine');
  61. $info = SmsLogic::getConfigInfo($engine);
  62. if (false === $info) {
  63. return JsonServer::error('数据错误');
  64. }
  65. return view('', [
  66. 'engine' => $engine,
  67. 'info' => $info
  68. ]);
  69. }
  70. /**
  71. * Notes: 短信记录->列表
  72. * @author 段誉(2021/6/7 14:46)
  73. * @return \think\response\Json
  74. */
  75. public function logLists()
  76. {
  77. if ($this->request->isAjax()) {
  78. $get = $this->request->get();
  79. $lists = SmsLogic::logLists($get);
  80. return JsonServer::success('', $lists);
  81. }
  82. }
  83. /**
  84. * Notes: 短信记录->详情
  85. * @author 段誉(2021/6/7 14:46)
  86. * @return \think\response\View
  87. */
  88. public function detail()
  89. {
  90. $id = $this->request->get('id');
  91. $info = SmsLogic::detail($id);
  92. return view('', ['info' => $info]);
  93. }
  94. }