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

Express.php 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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;
  20. use app\admin\validate\ExpressValidate;
  21. use app\common\basics\AdminBase;
  22. use app\common\server\ConfigServer;
  23. use app\common\logic\ExpressLogic;
  24. use app\common\server\JsonServer;
  25. use think\db;
  26. use think\exception\ValidateException;
  27. class Express extends AdminBase
  28. {
  29. /**
  30. * lists
  31. * @return mixed
  32. * @throws \think\exception\DbException
  33. * @throws db\exception\DataNotFoundException
  34. * @throws db\exception\ModelNotFoundException
  35. */
  36. public function lists()
  37. {
  38. if ($this->request->isAjax()) {
  39. $get = $this->request->get();
  40. return JsonServer::error('', ExpressLogic::lists($get));
  41. }
  42. }
  43. /**
  44. * 添加
  45. * @return mixed
  46. */
  47. public function add()
  48. {
  49. if ($this->request->isAjax()) {
  50. $post = $this->request->post();
  51. $post['del'] = 0;
  52. try {
  53. validate(ExpressValidate::class)->scene('add')->check($post);
  54. $result = ExpressLogic::addExpress($post);
  55. if ($result) {
  56. return JsonServer::success('添加成功');
  57. }
  58. return JsonServer::error($result);
  59. } catch (ValidateException $e) {
  60. return JsonServer::error($e->getMessage());
  61. }
  62. }
  63. return view();
  64. }
  65. /**
  66. * 编辑
  67. * @param $id
  68. * @return mixed
  69. */
  70. public function edit($id)
  71. {
  72. if ($this->request->isAjax()) {
  73. $post = $this->request->post();
  74. $post['del'] = 0;
  75. try {
  76. validate(ExpressValidate::class)->scene('edit')->check($post);
  77. $result = ExpressLogic::editExpress($post);
  78. if ($result) {
  79. return JsonServer::success('修改成功');
  80. }
  81. return JsonServer::error($result);
  82. } catch (ValidateException $e) {
  83. return JsonServer::error($e->getMessage());
  84. }
  85. }
  86. return view('', [
  87. 'info' => ExpressLogic::info($id)
  88. ]);
  89. }
  90. /**
  91. * 删除
  92. * @param $delData
  93. * @throws \think\Exception
  94. * @throws \think\exception\PDOException
  95. */
  96. public function del($delData)
  97. {
  98. if ($this->request->isAjax()) {
  99. $result = ExpressLogic::delExpress($delData);
  100. if ($result) {
  101. return JsonServer::success('删除成功');
  102. }
  103. return JsonServer::error('删除失败');
  104. }
  105. }
  106. //查询配置
  107. public function setExpress()
  108. {
  109. $post = $this->request->post();
  110. if ($post) {
  111. ConfigServer::set('express', 'way', $post['way']);
  112. ConfigServer::set('kd100', 'appkey', $post['kd100_appkey']);
  113. ConfigServer::set('kd100', 'appsecret', $post['kd100_customer']);
  114. ConfigServer::set('kdniao', 'appkey', $post['kdniao_appkey']);
  115. ConfigServer::set('kdniao', 'appsecret', $post['kdniao_ebussinessid']);
  116. ConfigServer::set('kdniao', 'type', $post['kdniao_type']);
  117. }
  118. return JsonServer::success('操作成功');
  119. }
  120. }