123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- namespace app\data\controller\base;
- use app\data\service\UserUpgradeService;
- use think\admin\Controller;
- /**
- * 折扣方案管理
- * Class Discount
- * @package app\data\controller\base
- */
- class Discount extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- private $table = 'DataBaseDiscount';
- /**
- * 折扣方案管理
- * @auth true
- * @menu true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '折扣方案管理';
- $query = $this->_query($this->table);
- $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
- }
- /**
- * 数据列表处理
- * @param array $data
- */
- protected function _page_filter(array &$data)
- {
- foreach ($data as &$vo) {
- $vo['items'] = json_decode($vo['items'], true);
- }
- }
- /**
- * 添加折扣方案
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function add()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑折扣方案
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function edit()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 表单数据处理
- * @param array $vo
- */
- protected function _form_filter(array &$vo)
- {
- if ($this->request->isPost()) {
- $rule = [];
- foreach ($vo as $k => $v) if (stripos($k, '_level_') !== false) {
- [, $level] = explode('_level_', $k);
- $rule[] = ['level' => $level, 'discount' => $v];
- }
- $vo['items'] = json_encode($rule, JSON_UNESCAPED_UNICODE);
- } else {
- $this->levels = UserUpgradeService::instance()->levels();
- if (empty($this->levels)) $this->error('未配置用户等级!');
- if (!empty($vo['items'])) foreach (json_decode($vo['items'], true) as $item) {
- $vo["_level_{$item['level']}"] = $item['discount'];
- }
- }
- }
- /**
- * 修改折扣方案状态
- * @auth true
- * @throws \think\db\exception\DbException
- */
- public function state()
- {
- $this->_save($this->table);
- }
- /**
- * 删除折扣方案配置
- * @auth true
- * @throws \think\db\exception\DbException
- */
- public function remove()
- {
- $this->_delete($this->table);
- }
- }
|