field(true) ->where($where) ->order('sort', 'desc') ->paginate([ 'page' => $get['page'], 'list_rows' => $get['limit'], 'var_page' => 'page' ]) ->toArray(); return ['count'=>$lists['total'], 'lists'=>$lists['data']]; } catch (Exception $e) { return ['error'=>$e->getMessage()]; } } /** * NOTE: 主营类目详细 * @author: 张无忌 * @param $id * @return array */ public static function detail($id) { $model = new ShopGoods(); return $model->field(true)->findOrEmpty((int)$id)->toArray(); } /** * NOTE: 获取主营类目 * @author: 张无忌 * @return array */ public static function getCategory() { try { $model = new ShopGoods(); return $model->field(true) ->where('del', 0) ->order('id', 'desc') ->order('sort', 'desc') ->select()->toArray(); } catch (\Exception $e) { return []; } } /** * NOTE: 新增主营类目 * @author: 张无忌 * @param $post * @return bool */ public static function add($post) { try { ShopGoods::create([ 'name' => $post['name'], 'price' => $post['price'], 'desc' => $post['desc'], 'pc_num' => $post['pc_num'], 'mobile_num' => $post['mobile_num'], 'run_num' => $post['run_num'], 'image' => $post['image'] ?? '', 'sort' => $post['sort'] ?? 0 ]); return true; } catch (Exception $e) { static::$error = $e->getMessage(); return false; } } /** * NOTE: 编辑主营类目 * @author: 张无忌 * @param $post * @return bool */ public static function edit($post) { try { ShopGoods::update([ 'name' => $post['name'], 'price' => $post['price'], 'desc' => $post['desc'], 'pc_num' => $post['pc_num'], 'mobile_num' => $post['mobile_num'], 'run_num' => $post['run_num'], 'image' => $post['image'] ?? '', 'sort' => $post['sort'] ?? 0 ], ['id'=>(int)$post['id']]); return true; } catch (Exception $e) { static::$error = $e->getMessage(); return false; } } /** * NOTE: 删除主营类目 * @author: 张无忌 * @param $id * @return bool */ public static function del($id) { try { $shopModel = new Shop(); //$shopApplyModel = new ShopApply(); $shop = $shopModel->where(['tid'=>(int)$id, 'del'=>0])->findOrEmpty()->toArray(); //$apply = $shopApplyModel->where(['cid'=>(int)$id, 'del'=>0])->findOrEmpty()->toArray(); $apply = false; if ($shop or $apply) { static::$error = '类目已被使用,不允许删除'; return false; } ShopGoods::update([ 'del' => 1, 'create_time' => time() ], ['id'=>(int)$id]); return true; } catch (Exception $e) { static::$error = $e->getMessage(); return false; } } }