截流自动化的商城平台
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.

FaceSheetSender.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller\express_assistant;
  20. use app\common\basics\ShopBase;
  21. use app\common\server\JsonServer;
  22. use app\shop\logic\express_assistant\FaceSheetSenderLogic;
  23. /**
  24. * 发件人模板
  25. * Class FaceSheetSender
  26. * @package app\shop\controller\express_assistant
  27. */
  28. class FaceSheetSender extends ShopBase
  29. {
  30. /**
  31. * @notes 发件人列表
  32. * @return \think\response\Json|\think\response\View
  33. * @author 段誉
  34. * @date 2023/2/13 16:39
  35. */
  36. public function lists()
  37. {
  38. if ($this->request->isAjax()) {
  39. $get = $this->request->get();
  40. $list = FaceSheetSenderLogic::lists($get, $this->shop_id);
  41. return JsonServer::success("", $list);
  42. }
  43. return view();
  44. }
  45. /**
  46. * @notes 新增发件人模板
  47. * @return \think\response\Json|\think\response\View
  48. * @author 段誉
  49. * @date 2023/2/13 16:39
  50. */
  51. public function add()
  52. {
  53. if ($this->request->isAjax()) {
  54. $post = $this->request->post();
  55. $result = FaceSheetSenderLogic::add($post, $this->shop_id);
  56. if ($result !== true) {
  57. return JsonServer::error($result);
  58. }
  59. return JsonServer::success("操作成功");
  60. }
  61. return view();
  62. }
  63. /**
  64. * @notes 编辑发件人
  65. * @return \think\response\Json|\think\response\View
  66. * @author 段誉
  67. * @date 2023/2/13 16:40
  68. */
  69. public function edit()
  70. {
  71. if ($this->request->isAjax()) {
  72. $post = $this->request->post();
  73. $result = FaceSheetSenderLogic::edit($post, $this->shop_id);
  74. if ($result !== true) {
  75. return JsonServer::error($result);
  76. }
  77. return JsonServer::success("操作成功");
  78. }
  79. $id = $this->request->get('id');
  80. return view('', [
  81. 'detail' => FaceSheetSenderLogic::detail($id, $this->shop_id)
  82. ]);
  83. }
  84. /**
  85. * @notes 删除发件人
  86. * @return \think\response\Json|void
  87. * @author 段誉
  88. * @date 2023/2/13 16:40
  89. */
  90. public function del()
  91. {
  92. if ($this->request->isAjax()) {
  93. $id = $this->request->post('id');
  94. $result = FaceSheetSenderLogic::del($id, $this->shop_id);
  95. if ($result !== true) {
  96. return JsonServer::error($result);
  97. }
  98. return JsonServer::success("操作成功");
  99. }
  100. }
  101. }