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

Freight.php 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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\shop\controller;
  20. use app\common\logic\ExpressLogic;
  21. use app\common\logic\FreightLogic;
  22. use app\common\model\Freight as FreightModel;
  23. use app\admin\validate\FreightValidate;
  24. use app\common\basics\ShopBase;
  25. use app\common\server\ConfigServer;
  26. use app\common\server\JsonServer;
  27. use think\exception\ValidateException;
  28. /**
  29. * 运费模板设置
  30. * Class Freight
  31. * @package app\shop\controller
  32. */
  33. class Freight extends ShopBase
  34. {
  35. /**
  36. * User: 意象信息科技 mjf
  37. * Desc: 设置快递方式
  38. */
  39. public function set()
  40. {
  41. if ($this->request->isAjax()) {
  42. $post = $this->request->post();
  43. $post['type'] = isset($post['type']) && $post['type'] == 'on' ? 1 : 0;
  44. ConfigServer::set('express', 'is_express', $post['type']);
  45. return JsonServer::success('操作成功');
  46. }
  47. $type = ConfigServer::get('express', 'is_express');
  48. return view('', [
  49. 'type' => $type
  50. ]);
  51. }
  52. /**
  53. * User: 意象信息科技 mjf
  54. * Desc: 运费模板列表
  55. */
  56. public function lists()
  57. {
  58. if ($this->request->isAjax()) {
  59. $get = $this->request->get();
  60. $get['shop_id'] = $this->shop_id;
  61. return JsonServer::success('获取成功', FreightLogic::lists($get));//运费模板页
  62. }
  63. return view('index', [
  64. 'charge_way_lists' => FreightModel::getChargeWay(true),
  65. 'config'=>ExpressLogic::getExpress()
  66. ]);
  67. }
  68. /**
  69. * User: 意象信息科技 mjf
  70. * Desc: 添加运费模板
  71. */
  72. public function add()
  73. {
  74. if ($this->request->isAjax()) {
  75. try {
  76. $post = $this->request->post();
  77. validate(FreightValidate::class)->scene('add')->check($post);
  78. $post['shop_id'] = $this->shop_id;
  79. FreightLogic::add($post);
  80. return JsonServer::success('添加成功');
  81. } catch (ValidateException $e) {
  82. return JsonServer::error($e->getMessage());
  83. }
  84. }
  85. return view('',[]);
  86. }
  87. /**
  88. * User: 意象信息科技 mjf
  89. * Desc: 删除运费模板
  90. */
  91. public function del()
  92. {
  93. if ($this->request->isAjax()) {
  94. try {
  95. $post = $this->request->post();
  96. validate(FreightValidate::class)->scene('del')->check($post);
  97. FreightLogic::del($post);
  98. return JsonServer::success('删除成功');
  99. } catch (ValidateException $e) {
  100. return JsonServer::error($e->getMessage());
  101. }
  102. }
  103. return view('',[]);
  104. }
  105. /**
  106. * User: 意象信息科技 mjf
  107. * Desc: 运费模板详情
  108. */
  109. public function detail()
  110. {
  111. $id = $this->request->get('id');
  112. $detail = FreightLogic::detail($id);
  113. return view('',[
  114. 'detail'=>$detail
  115. ]);
  116. }
  117. /**
  118. * User: 意象信息科技 mjf
  119. * Desc: 运费模板编辑
  120. */
  121. public function edit()
  122. {
  123. if ($this->request->isAjax()) {
  124. try {
  125. $post = $this->request->post();
  126. validate(FreightValidate::class)->scene('edit')->check($post);
  127. FreightLogic::edit($post);
  128. return JsonServer::success('编辑成功');
  129. } catch (ValidateException $e) {
  130. return JsonServer::error($e->getMessage());
  131. }
  132. }
  133. $id = $this->request->get('id');
  134. $detail = FreightLogic::detail($id);
  135. return view('',[
  136. 'detail'=>$detail
  137. ]);
  138. }
  139. public function area()
  140. {
  141. return view();
  142. }
  143. //编辑页的地区选择
  144. public function areaEdit()
  145. {
  146. return view();
  147. }
  148. }