title = '商城页面管理'; $this->_query($this->table)->order('sort asc,id desc')->page(); } /** * 数据列表处理 * @param array $data */ protected function _page_filter(&$data) { foreach ($data as &$vo) { $vo['one'] = json_decode($vo['one'], true); $vo['mul'] = json_decode($vo['mul'], true); } } /** * 添加页面 */ public function add() { $this->title = '添加商城页面'; $this->_form($this->table, 'form'); } /** * 编辑页面 */ public function edit() { $this->title = '编辑商城页面'; $this->_form($this->table, 'form'); } /** * 表单数据处理 * @param array $post * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ protected function _form_filter(&$post = []) { if ($this->request->isGet()) { $where = ['is_deleted' => '0', 'status' => '1']; $this->goodsList = Db::name('StoreGoods')->where($where)->order('sort asc,id desc')->select(); $maps = ['普通商品', '临时礼包', '会员礼包']; foreach ($this->goodsList as &$vo) { $vo['title'] = (isset($maps[$vo['vip_mod']]) ? "【{$maps[$vo['vip_mod']]}】" : '【类型异常】') . $vo['title']; } if (isset($post['one'])) $post['one'] = json_decode($post['one'], true); if (isset($post['mul'])) $post['mul'] = json_decode($post['mul'], true); } else foreach (['one', 'mul'] as $type) { if (empty($post[$type])) $post[$type] = []; $post[$type] = json_encode($post[$type], JSON_UNESCAPED_UNICODE); } } /** * 表单数据结果处理 * @param boolean $result */ protected function _form_result($result) { if ($result) { $this->success('页面更新成功!', url('@admin') . '#' . url('@store/page/index')); } } /** * 禁用页面 */ public function forbid() { $this->_save($this->table, ['status' => '0']); } /** * 启用页面 */ public function resume() { $this->_save($this->table, ['status' => '1']); } /** * 删除页面 */ public function del() { $this->_delete($this->table); } }