where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false); $this->page_info = $result; return $result->items(); } else { $result = Db::name('entityshop')->where($condition)->order($order)->limit($limit)->select()->toArray(); return $result; } } /** * 新增地址 * @author o1h.cn * @param array $data 参数内容 * @return bool 布尔类型的返回结果 */ public function addEntityshop($data) { return Db::name('entityshop')->insertGetId($data); } /** * 取单个地址 * @author o1h.cn * @param int $id 地址ID * @return array 数组类型的返回结果 */ public function getOneEntityshop($condition) { $result = Db::name('entityshop')->where($condition)->find(); return $result; } /** * 更新地址信息 * @author o1h.cn * @param array $data 更新数据 * @param array $condition 更新条件 * @return bool 布尔类型的返回结果 */ public function editEntityshop($condition, $data) { return Db::name('entityshop')->where($condition)->update($data); } /** * 删除地址 * @author o1h.cn * @param array $condition记录ID * @return bool 布尔类型的返回结果 */ public function delEntityshop($condition) { $entityshop = $this->getOneEntityshop($condition); //删除友情链接图片 @unlink(BASE_UPLOAD_PATH . DIRECTORY_SEPARATOR . DIR_HOME . DIRECTORY_SEPARATOR . 'entityshop' . DIRECTORY_SEPARATOR . $entityshop['entityshop_pic']); return Db::name('entityshop')->where($condition)->delete(); } } ?>