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 { 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; } } }