1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace app\common\model;
- use think\facade\Db;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 数据层模型
- */
- class EditablePage extends BaseModel {
- public $page_info;
- /**
- * 新增可编辑页面
- * @author csdeshang
- * @param array $data 参数内容
- * @return bool 布尔类型的返回结果
- */
- public function addEditablePage($data) {
- return Db::name('editable_page')->insertGetId($data);
- }
- /**
- * 删除一个可编辑页面
- * @author csdeshang
- * @param array $editable_page_id 可编辑页面id
- * @return bool 布尔类型的返回结果
- */
- public function delEditablePage($editable_page_id) {
- //删除配置
- model('editable_page_config')->delEditablePageConfig(array('editable_page_id'=>$editable_page_id));
- return Db::name('editable_page')->where('editable_page_id', $editable_page_id)->delete();
- }
- /**
- * 获取可编辑页面列表
- * @author csdeshang
- * @param array $condition 查询条件
- * @param obj $pagesize 分页页数
- * @param str $orderby 排序
- * @return array 二维数组
- */
- public function getEditablePageList($condition = array(), $pagesize = '', $orderby = 'editable_page_id desc') {
- if ($pagesize) {
- $result = Db::name('editable_page')->where($condition)->order($orderby)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
- $this->page_info = $result;
- return $result->items();
- } else {
- return Db::name('editable_page')->where($condition)->order($orderby)->select()->toArray();
- }
- }
- public function getOneEditablePage($condition = array()) {
- return Db::name('editable_page')->where($condition)->find();
- }
- /**
- * 更新可编辑页面记录
- * @author csdeshang
- * @param array $data 更新内容
- * @return bool
- */
- public function editEditablePage($condition, $data) {
- return Db::name('editable_page')->where($condition)->update($data);
- }
- }
- ?>
|