EditablePage.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. *
  6. *
  7. * ----------------------------------------------------------------------------
  8. *
  9. * 数据层模型
  10. */
  11. class EditablePage extends BaseModel
  12. {
  13. public $page_info;
  14. /**
  15. * 新增可编辑页面
  16. * @author csdeshang
  17. * @param array $data 参数内容
  18. * @return bool 布尔类型的返回结果
  19. */
  20. public function addEditablePage($data)
  21. {
  22. return Db::name('editable_page')->insertGetId($data);
  23. }
  24. /**
  25. * 删除一个可编辑页面
  26. * @author csdeshang
  27. * @param array $editable_page_id 可编辑页面id
  28. * @return bool 布尔类型的返回结果
  29. */
  30. public function delEditablePage($editable_page_id)
  31. {
  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. {
  46. if ($pagesize) {
  47. $result = Db::name('editable_page')->where($condition)->order($orderby)->paginate(['list_rows' => $pagesize, 'query' => request()->param()], false);
  48. $this->page_info = $result;
  49. return $result->items();
  50. } else {
  51. return Db::name('editable_page')->where($condition)->order($orderby)->select()->toArray();
  52. }
  53. }
  54. public function getOneEditablePage($condition = array())
  55. {
  56. return Db::name('editable_page')->where($condition)->find();
  57. }
  58. /**
  59. * 更新可编辑页面记录
  60. * @author csdeshang
  61. * @param array $data 更新内容
  62. * @return bool
  63. */
  64. public function editEditablePage($condition, $data)
  65. {
  66. return Db::name('editable_page')->where($condition)->update($data);
  67. }
  68. }