EditablePage.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 数据层模型
  14. */
  15. class EditablePage extends BaseModel {
  16. public $page_info;
  17. /**
  18. * 新增可编辑页面
  19. * @author csdeshang
  20. * @param array $data 参数内容
  21. * @return bool 布尔类型的返回结果
  22. */
  23. public function addEditablePage($data) {
  24. return Db::name('editable_page')->insertGetId($data);
  25. }
  26. /**
  27. * 删除一个可编辑页面
  28. * @author csdeshang
  29. * @param array $editable_page_id 可编辑页面id
  30. * @return bool 布尔类型的返回结果
  31. */
  32. public function delEditablePage($editable_page_id) {
  33. //删除配置
  34. model('editable_page_config')->delEditablePageConfig(array('editable_page_id'=>$editable_page_id));
  35. return Db::name('editable_page')->where('editable_page_id', $editable_page_id)->delete();
  36. }
  37. /**
  38. * 获取可编辑页面列表
  39. * @author csdeshang
  40. * @param array $condition 查询条件
  41. * @param obj $pagesize 分页页数
  42. * @param str $orderby 排序
  43. * @return array 二维数组
  44. */
  45. public function getEditablePageList($condition = array(), $pagesize = '', $orderby = 'editable_page_id desc') {
  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. return Db::name('editable_page')->where($condition)->find();
  56. }
  57. /**
  58. * 更新可编辑页面记录
  59. * @author csdeshang
  60. * @param array $data 更新内容
  61. * @return bool
  62. */
  63. public function editEditablePage($condition, $data) {
  64. return Db::name('editable_page')->where($condition)->update($data);
  65. }
  66. }
  67. ?>