截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FaceSheetTpl.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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\FaceSheetTplLogic;
  23. /**
  24. * 面单模板
  25. * Class FaceSheetTpl
  26. * @package app\shop\controller\express_assistant
  27. */
  28. class FaceSheetTpl extends ShopBase
  29. {
  30. /**
  31. * @notes 电子面单模板列表
  32. * @return \think\response\Json|\think\response\View
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @author 段誉
  37. * @date 2023/2/13 16:02
  38. */
  39. public function lists()
  40. {
  41. if ($this->request->isAjax()) {
  42. $get = $this->request->get();
  43. $list = FaceSheetTplLogic::lists($get, $this->shop_id);
  44. return JsonServer::success('', $list);
  45. }
  46. return view();
  47. }
  48. /**
  49. * @notes 新增电子面单模板
  50. * @return \think\response\Json|\think\response\View
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\DbException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @author 段誉
  55. * @date 2023/2/13 16:01
  56. */
  57. public function add()
  58. {
  59. if ($this->request->isAjax()) {
  60. $post = $this->request->post();
  61. $result = FaceSheetTplLogic::add($post, $this->shop_id);
  62. if ($result !== true) {
  63. return JsonServer::error($result);
  64. }
  65. return JsonServer::success('操作成功');
  66. }
  67. return view('', [
  68. 'express' => FaceSheetTplLogic::allExpress()
  69. ]);
  70. }
  71. /**
  72. * @notes 编辑电子面单模板
  73. * @return \think\response\Json|\think\response\View
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\DbException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @author 段誉
  78. * @date 2023/2/13 16:01
  79. */
  80. public function edit()
  81. {
  82. if ($this->request->isAjax()) {
  83. $post = $this->request->post();
  84. $result = FaceSheetTplLogic::edit($post, $this->shop_id);
  85. if ($result !== true) {
  86. return JsonServer::error($result);
  87. }
  88. return JsonServer::success('操作成功');
  89. }
  90. $id = $this->request->get('id');
  91. return view('', [
  92. 'detail' => FaceSheetTplLogic::detail($id, $this->shop_id),
  93. 'express' => FaceSheetTplLogic::allExpress(),
  94. ]);
  95. }
  96. /**
  97. * @notes 删除电子面单模板
  98. * @return \think\response\Json|void
  99. * @author 段誉
  100. * @date 2023/2/13 16:01
  101. */
  102. public function del()
  103. {
  104. if ($this->request->isAjax()) {
  105. $id = $this->request->post('id');
  106. $result = FaceSheetTplLogic::del($id, $this->shop_id);
  107. if ($result !== true) {
  108. return JsonServer::error($result);
  109. }
  110. return JsonServer::success('操作成功');
  111. }
  112. }
  113. }