UserDiscount.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. namespace app\data\controller;
  3. use think\admin\Controller;
  4. /**
  5. * 折扣方案管理
  6. * Class UserDiscount
  7. * @package app\data\controller
  8. */
  9. class UserDiscount extends Controller
  10. {
  11. /**
  12. * 绑定数据表
  13. * @var string
  14. */
  15. private $table = 'DataUserDiscount';
  16. /**
  17. * 折扣方案管理
  18. * @auth true
  19. * @menu true
  20. * @throws \think\db\exception\DataNotFoundException
  21. * @throws \think\db\exception\DbException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. */
  24. public function index()
  25. {
  26. $this->title = '折扣方案管理';
  27. $query = $this->_query($this->table);
  28. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  29. }
  30. /**
  31. * 数据列表处理
  32. * @param array $data
  33. */
  34. protected function _page_filter(array &$data)
  35. {
  36. foreach ($data as &$vo) {
  37. $vo['items'] = json_decode($vo['items'], true);
  38. }
  39. }
  40. /**
  41. * 添加折扣方案
  42. * @auth true
  43. * @throws \think\db\exception\DataNotFoundException
  44. * @throws \think\db\exception\DbException
  45. * @throws \think\db\exception\ModelNotFoundException
  46. */
  47. public function add()
  48. {
  49. $this->_form($this->table, 'form');
  50. }
  51. /**
  52. * 编辑折扣方案
  53. * @auth true
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\DbException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. */
  58. public function edit()
  59. {
  60. $this->_form($this->table, 'form');
  61. }
  62. /**
  63. * 表单数据处理
  64. * @param array $vo
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\DbException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. */
  69. protected function _form_filter(array &$vo)
  70. {
  71. if ($this->request->isPost()) {
  72. $rule = [];
  73. foreach ($vo as $k => $v) if (stripos($k, '_level_') !== false) {
  74. [, $level] = explode('_level_', $k);
  75. $rule[] = ['level' => $level, 'discount' => $v];
  76. }
  77. $vo['items'] = json_encode($rule, JSON_UNESCAPED_UNICODE);
  78. } else {
  79. $query = $this->app->db->name('DataUserLevel');
  80. $this->levels = $query->where(['status' => 1])->order('number asc')->select()->toArray();
  81. if (empty($this->levels)) $this->error('未配置用户等级!');
  82. if (!empty($vo['items'])) foreach (json_decode($vo['items'], true) as $item) {
  83. $vo["_level_{$item['level']}"] = $item['discount'];
  84. }
  85. }
  86. }
  87. /**
  88. * 修改折扣方案状态
  89. * @auth true
  90. * @throws \think\db\exception\DbException
  91. */
  92. public function state()
  93. {
  94. $this->_save($this->table);
  95. }
  96. /**
  97. * 删除折扣方案配置
  98. * @auth true
  99. * @throws \think\db\exception\DbException
  100. */
  101. public function remove()
  102. {
  103. $this->_delete($this->table);
  104. }
  105. }