Config.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace app\admin\controller\shopro\commission;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\exception\PDOException;
  6. use think\exception\ValidateException;
  7. use Exception;
  8. /**
  9. * 分销配置
  10. *
  11. * @icon fa fa-circle-o
  12. */
  13. class Config extends Backend
  14. {
  15. /**
  16. * 分销设置模型对象
  17. * @var \app\admin\model\shopro\commission\Config
  18. */
  19. protected $model = null;
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->model = new \app\admin\model\shopro\commission\Config;
  24. }
  25. /**
  26. * 查看
  27. */
  28. public function index()
  29. {
  30. if($this->request->isAjax()) {
  31. $data = [];
  32. if (checkEnv('commission', false)) {
  33. $data = $this->model->column('name, value');
  34. }
  35. $this->success('分销设置', null, $data);
  36. }
  37. $this->assignconfig('is_upgrade', checkEnv('commission', false) ? false : true);
  38. return $this->view->fetch();
  39. }
  40. public function save()
  41. {
  42. if ($this->request->isPost()) {
  43. checkEnv('commission');
  44. $params = $this->request->post();
  45. foreach($params as $k => $p) {
  46. $this->model->where('name', $k)->update([
  47. 'value' => $p
  48. ]);
  49. }
  50. $this->success('更新成功');
  51. }
  52. }
  53. }