EditablePage.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. *
  9. * ----------------------------------------------------------------------------
  10. *
  11. * ============================================================================
  12. * 数据层模型
  13. */
  14. class EditablePage extends BaseModel {
  15. public $page_info;
  16. /**
  17. * 新增可编辑页面
  18. * @author csdeshang
  19. * @param array $data 参数内容
  20. * @return bool 布尔类型的返回结果
  21. */
  22. public function addEditablePage($data) {
  23. return Db::name('editable_page')->insertGetId($data);
  24. }
  25. /**
  26. * 删除一个可编辑页面
  27. * @author csdeshang
  28. * @param array $editable_page_id 可编辑页面id
  29. * @return bool 布尔类型的返回结果
  30. */
  31. public function delEditablePage($editable_page_id) {
  32. //删除配置
  33. model('editable_page_config')->delEditablePageConfig(array('editable_page_id'=>$editable_page_id));
  34. return Db::name('editable_page')->where('editable_page_id', $editable_page_id)->delete();
  35. }
  36. /**
  37. * 获取可编辑页面列表
  38. * @author csdeshang
  39. * @param array $condition 查询条件
  40. * @param obj $pagesize 分页页数
  41. * @param str $orderby 排序
  42. * @return array 二维数组
  43. */
  44. public function getEditablePageList($condition = array(), $pagesize = '', $orderby = 'editable_page_id desc') {
  45. if ($pagesize) {
  46. $result = Db::name('editable_page')->where($condition)->order($orderby)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  47. $this->page_info = $result;
  48. return $result->items();
  49. } else {
  50. return Db::name('editable_page')->where($condition)->order($orderby)->select()->toArray();
  51. }
  52. }
  53. public function getOneEditablePage($condition = array()) {
  54. return Db::name('editable_page')->where($condition)->find();
  55. }
  56. /**
  57. * 更新可编辑页面记录
  58. * @author csdeshang
  59. * @param array $data 更新内容
  60. * @return bool
  61. */
  62. public function editEditablePage($condition, $data) {
  63. return Db::name('editable_page')->where($condition)->update($data);
  64. }
  65. }