ExpressCompany.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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')->page();
  44. }
  45. /**
  46. * 添加快递公司
  47. * @auth true
  48. */
  49. public function add()
  50. {
  51. $this->_form($this->table, 'form');
  52. }
  53. /**
  54. * 编辑快递公司
  55. * @auth true
  56. */
  57. public function edit()
  58. {
  59. $this->_form($this->table, 'form');
  60. }
  61. /**
  62. * 表单数据处理
  63. * @param array $data
  64. * @auth true
  65. */
  66. protected function _form_filter(array $data)
  67. {
  68. if ($this->request->isPost()) {
  69. $where = [['express_code', 'eq', $data['express_code']], ['is_deleted', 'eq', '0']];
  70. if (!empty($data['id'])) $where[] = ['id ', 'neq', $data['id']];
  71. if (Db::name($this->table)->where($where)->count() > 0) {
  72. $this->error('该快递编码已经存在,请使用其它编码!');
  73. }
  74. }
  75. }
  76. /**
  77. * 禁用快递公司
  78. * @auth true
  79. */
  80. public function forbid()
  81. {
  82. $this->_save($this->table, ['status' => '0']);
  83. }
  84. /**
  85. * 启用快递公司
  86. * @auth true
  87. */
  88. public function resume()
  89. {
  90. $this->_save($this->table, ['status' => '1']);
  91. }
  92. /**
  93. * 删除快递公司
  94. * @auth true
  95. */
  96. public function remove()
  97. {
  98. $this->_delete($this->table);
  99. }
  100. }