ShopTruckTemplate.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\TruckService;
  4. use think\admin\Controller;
  5. use think\admin\extend\CodeExtend;
  6. /**
  7. * 邮费模板管理
  8. * Class ShopTruckTemplate
  9. * @package app\data\controller
  10. */
  11. class ShopTruckTemplate extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. private $table = 'ShopTruckTemplate';
  18. /**
  19. * 快递邮费模板
  20. * @auth true
  21. * @menu true
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\DbException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. */
  26. public function index()
  27. {
  28. $this->title = '快递邮费模板';
  29. $query = $this->_query($this->table);
  30. $query->like('code,name')->equal('status')->dateBetween('create_at');
  31. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  32. }
  33. /**
  34. * 配送区域管理
  35. * @auth true
  36. * @menu true
  37. * @throws \think\db\exception\DbException
  38. */
  39. public function region()
  40. {
  41. if ($this->request->isGet()) {
  42. $this->title = '配送区域管理';
  43. $this->citys = TruckService::instance()->region(3, null);
  44. $this->fetch('form_region');
  45. } else {
  46. $data = $this->_vali(['nos.default' => '', 'oks.default' => '']);
  47. if ($data['nos']) $this->app->db->name('ShopTruckRegion')->whereIn('id', str2arr($data['nos']))->update(['status' => 0]);
  48. if ($data['oks']) $this->app->db->name('ShopTruckRegion')->whereIn('id', str2arr($data['oks']))->update(['status' => 1]);
  49. $this->success('修改配送区域成功!');
  50. }
  51. }
  52. /**
  53. * 添加配送邮费模板
  54. * @auth true
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\DbException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. */
  59. public function add()
  60. {
  61. $this->title = '添加配送邮费模板';
  62. $this->_form($this->table, 'form', 'code');
  63. }
  64. /**
  65. * 编辑配送邮费模板
  66. * @auth true
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\DbException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. */
  71. public function edit()
  72. {
  73. $this->title = '编辑配送邮费模板';
  74. $this->_form($this->table, 'form', 'code');
  75. }
  76. /**
  77. * 表单数据处理
  78. * @param array $data
  79. */
  80. protected function _form_filter(array &$data)
  81. {
  82. if (empty($data['code'])) {
  83. $data['code'] = CodeExtend::uniqidDate(12, 'T');
  84. }
  85. if ($this->request->isGet()) {
  86. $this->citys = TruckService::instance()->region(2, 1);
  87. }
  88. }
  89. /**
  90. * 表单结果处理
  91. * @param boolean $result
  92. */
  93. protected function _form_result(bool $result)
  94. {
  95. if ($result && $this->request->isPost()) {
  96. $this->success('邮费模板保存成功!', 'javascript:history.back()');
  97. }
  98. }
  99. /**
  100. * 启用或禁用邮费模板
  101. * @auth true
  102. * @throws \think\db\exception\DbException
  103. */
  104. public function state()
  105. {
  106. $this->_save($this->table, $this->_vali([
  107. 'status.in:0,1' => '状态值范围异常!',
  108. 'status.require' => '状态值不能为空!',
  109. ]), 'code');
  110. }
  111. /**
  112. * 删除邮费模板
  113. * @auth true
  114. * @throws \think\db\exception\DbException
  115. */
  116. public function remove()
  117. {
  118. $this->_delete($this->table, 'code');
  119. }
  120. }