ExpressCompany.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use think\Db;
  17. /**
  18. * 快递公司管理
  19. * Class Express
  20. * @package app\store\controller
  21. */
  22. class ExpressCompany extends Controller
  23. {
  24. /**
  25. * 指定数据表
  26. * @var string
  27. */
  28. protected $table = 'StoreExpressCompany';
  29. /**
  30. * 快递公司管理
  31. * @auth true
  32. * @menu true
  33. * @throws \think\Exception
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. * @throws \think\exception\PDOException
  38. */
  39. public function index()
  40. {
  41. $this->title = '快递公司管理';
  42. $query = $this->_query($this->table)->equal('status')->like('express_title,express_code');
  43. $query->dateBetween('create_at')->order('status desc,sort desc,id desc')->where(['is_deleted' => '0'])->page();
  44. }
  45. /**
  46. * 添加快递公司
  47. * @auth true
  48. * @throws \think\Exception
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. * @throws \think\exception\PDOException
  53. */
  54. public function add()
  55. {
  56. $this->_form($this->table, 'form');
  57. }
  58. /**
  59. * 编辑快递公司
  60. * @auth true
  61. * @throws \think\Exception
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\ModelNotFoundException
  64. * @throws \think\exception\DbException
  65. * @throws \think\exception\PDOException
  66. */
  67. public function edit()
  68. {
  69. $this->_form($this->table, 'form');
  70. }
  71. /**
  72. * 表单数据处理
  73. * @param array $data
  74. * @auth true
  75. */
  76. protected function _form_filter(array $data)
  77. {
  78. if ($this->request->isPost()) {
  79. $where = [['express_code', 'eq', $data['express_code']], ['is_deleted', 'eq', '0']];
  80. if (!empty($data['id'])) $where[] = ['id ', 'neq', $data['id']];
  81. if (Db::name($this->table)->where($where)->count() > 0) {
  82. $this->error('该快递编码已经存在,请使用其它编码!');
  83. }
  84. }
  85. }
  86. /**
  87. * 禁用快递公司
  88. * @auth true
  89. * @throws \think\Exception
  90. * @throws \think\exception\PDOException
  91. */
  92. public function forbid()
  93. {
  94. $this->_save($this->table, ['status' => '0']);
  95. }
  96. /**
  97. * 启用快递公司
  98. * @auth true
  99. * @throws \think\Exception
  100. * @throws \think\exception\PDOException
  101. */
  102. public function resume()
  103. {
  104. $this->_save($this->table, ['status' => '1']);
  105. }
  106. /**
  107. * 删除快递公司
  108. * @auth true
  109. * @throws \think\Exception
  110. * @throws \think\exception\PDOException
  111. */
  112. public function remove()
  113. {
  114. $this->_delete($this->table);
  115. }
  116. }