Page.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. namespace app\store\controller;
  14. use library\Controller;
  15. use think\Db;
  16. /**
  17. * 页面管理
  18. * Class Page
  19. * @package app\store\controller
  20. */
  21. class Page extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. protected $table = 'StorePage';
  28. /**
  29. * 页面管理
  30. * @throws \think\Exception
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. * @throws \think\exception\DbException
  34. * @throws \think\exception\PDOException
  35. */
  36. public function index()
  37. {
  38. $this->title = '商城页面管理';
  39. $this->_query($this->table)->order('sort asc,id desc')->page();
  40. }
  41. /**
  42. * 数据列表处理
  43. * @param array $data
  44. */
  45. protected function _page_filter(&$data)
  46. {
  47. foreach ($data as &$vo) {
  48. $vo['one'] = json_decode($vo['one'], true);
  49. $vo['mul'] = json_decode($vo['mul'], true);
  50. }
  51. }
  52. /**
  53. * 添加页面
  54. */
  55. public function add()
  56. {
  57. $this->title = '添加商城页面';
  58. $this->_form($this->table, 'form');
  59. }
  60. /**
  61. * 编辑页面
  62. */
  63. public function edit()
  64. {
  65. $this->title = '编辑商城页面';
  66. $this->_form($this->table, 'form');
  67. }
  68. /**
  69. * 表单数据处理
  70. * @param array $post
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. */
  75. protected function _form_filter(&$post = [])
  76. {
  77. if ($this->request->isGet()) {
  78. $where = ['is_deleted' => '0', 'status' => '1'];
  79. $this->goodsList = Db::name('StoreGoods')->where($where)->order('sort asc,id desc')->select();
  80. $maps = ['普通商品', '临时礼包', '会员礼包'];
  81. foreach ($this->goodsList as &$vo) {
  82. $vo['title'] = (isset($maps[$vo['vip_mod']]) ? "【{$maps[$vo['vip_mod']]}】" : '【类型异常】') . $vo['title'];
  83. }
  84. if (isset($post['one'])) $post['one'] = json_decode($post['one'], true);
  85. if (isset($post['mul'])) $post['mul'] = json_decode($post['mul'], true);
  86. } else foreach (['one', 'mul'] as $type) {
  87. if (empty($post[$type])) $post[$type] = [];
  88. $post[$type] = json_encode($post[$type], JSON_UNESCAPED_UNICODE);
  89. }
  90. }
  91. /**
  92. * 表单数据结果处理
  93. * @param boolean $result
  94. */
  95. protected function _form_result($result)
  96. {
  97. if ($result) {
  98. $this->success('页面更新成功!', url('@admin') . '#' . url('@store/page/index'));
  99. }
  100. }
  101. /**
  102. * 禁用页面
  103. */
  104. public function forbid()
  105. {
  106. $this->_save($this->table, ['status' => '0']);
  107. }
  108. /**
  109. * 启用页面
  110. */
  111. public function resume()
  112. {
  113. $this->_save($this->table, ['status' => '1']);
  114. }
  115. /**
  116. * 删除页面
  117. */
  118. public function del()
  119. {
  120. $this->_delete($this->table);
  121. }
  122. }