field(true) ->where($where) ->with(['category', 'category2']) //->order('sort', 'asc') ->order([ 'yid' => 'asc', 'cid' => 'asc' ]) ->paginate([ 'page' => $get['page'], 'list_rows' => $get['limit'], 'var_page' => 'page' ]) ->toArray(); foreach ($lists['data'] as &$item) { $item['category'] = $item['category']['name'] ?? '未知'; $item['category2'] = $item['category2']['name'] ?? '未知'; $item['is_notice'] = $item['is_notice'] ? '是' : '否'; $item['is_show'] = $item['is_show'] ? '显示' : '隐藏'; } return ['count' => $lists['total'], 'lists' => $lists['data']]; } catch (Exception $e) { return ['error' => $e->getMessage()]; } } /** * @Notes: 文章详细 * @Author: 张无忌 * @param $id * @return array */ public static function detail($id) { $model = new Closure(); $data = $model->field(true)->findOrEmpty($id)->toArray(); $data['form_data'] = json_decode($data['form_data'], true); return $data; } /** * @Notes: 添加文章 * @Author: 张无忌 * @param $post * @return bool */ public static function add($post) { try { $model = new Closure(); $arr = $model->postDataHandle($post); Closure::create([ 'shop_id' => $post['shop_id'], 'cid' => $post['cid'], 'yid' => $post['yid'], 'title' => $post['title'], 'image' => $post['image'] ?? '', 'intro' => $post['intro'] ?? '', 'content' => $post['content'] ?? '', 'visit' => 0, 'likes' => 0, 'sort' => $post['sort'] ?? 0, 'is_notice' => $post['is_notice'], 'is_show' => $post['is_show'], 'version' => $post['shop_id'] . '-' . time(), 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE), 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE) ]); return true; } catch (\Exception $e) { static::$error = $e->getMessage(); return false; } } /** * @Notes: 编辑文章 * @Author: 张无忌 * @param $post * @return bool */ public static function edit($post) { try { $model = new Closure(); $arr = $model->postDataHandle($post); Closure::update([ 'shop_id' => $post['shop_id'], 'cid' => $post['cid'], 'yid' => $post['yid'] ?? '', 'title' => $post['title'], 'image' => $post['image'] ?? '', 'intro' => $post['intro'] ?? '', 'content' => $post['content'] ?? '', 'visit' => 0, 'likes' => 0, 'sort' => $post['sort'] ?? 0, 'is_notice' => $post['is_notice'], 'is_show' => $post['is_show'], 'version' => $post['version'], 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE), 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE) ], ['id' => $post['id']]); return true; } catch (\Exception $e) { static::$error = $e->getMessage(); return false; } } /** * @Notes: 删除 * @Author: 张无忌 * @param $id * @return bool */ public static function del($id) { try { $item = Closure::where(['id' => $id])->find(); $t = $item['shop_id'].'_'.'默认配置'; if($item['title'] == $t){ static::$error = "默认配置不允许删除"; return false; } Closure::update([ 'del' => 1, 'update_time' => time() ], ['id' => $id]); return true; } catch (\Exception $e) { static::$error = $e->getMessage(); return false; } } /** * @Notes: 隐藏 * @Author: 张无忌 * @param $id * @return bool */ public static function hide($id) { try { $model = new Closure(); $article = $model->findOrEmpty($id)->toArray(); Closure::update([ 'is_show' => !$article['is_show'], 'update_time' => time() ], ['id' => $id]); return true; } catch (\Exception $e) { static::$error = $e->getMessage(); return false; } } /* * 初始化一个默认配置 */ public static function insertDefault($shop_id){ /* * 查询默认记录 */ $model = new Closure(); $where = [ "shop_id" => 1, "cid" => 3, "yid" => 4, ]; //先查询用户是否已有配置 $t = $model->where(['del'=>0,'shop_id'=>$shop_id])->order('id asc')->find(); //$t = $t->toArray(); if(empty($t)){ //不存在配置 $row = $model->where($where)->order('id asc')->find(); //默认配置id $cid = ClosureCategoryModel::where(['shop_id'=>$shop_id,'del'=>0,'name'=>'默认'])->value('id'); //默认行业id $sid = IndustryCategoryModel::where(['shop_id'=>$shop_id,'del'=>0,'name'=>'默认'])->value('id'); if(!empty($row)){ //转成数组 $row = $row->toArray(); //dump($row); //复制给用户 unset($row['id']); $row['cid'] = $cid; $row['yid'] = $sid; $row['title'] = $shop_id."_默认配置"; $row['version'] = $shop_id.'_'.time(); $row['create_time'] = time(); $row['update_time'] = time(); $row['shop_id'] = $shop_id; //插入数据库 $model->insert($row); } }else{ //查找是否存在默认配置 重新增加 这条记录不可删除 //现有用户的记录如果已绑定 也不影响 $title = $shop_id."_默认配置"; $item = $model->where(['del'=>0,'shop_id'=>$shop_id,'title'=>$title])->find(); //$item = $item->toArray(); if(empty($item)){ //不存在 则新增 $row = $model->where($where)->order('id asc')->find(); if(!empty($row)){ //转成数组 $row = $row->toArray(); //复制给用户 unset($row['id']); $row['title'] = $shop_id."_默认配置"; $row['version'] = $shop_id.'_'.time(); $row['create_time'] = time(); $row['update_time'] = time(); $row['shop_id'] = $shop_id; //插入数据库 $model->insert($row); } } } } }