心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MessageModel.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年3月29日
  7. * 留言模型类
  8. */
  9. namespace app\admin\model\content;
  10. use core\basic\Model;
  11. class MessageModel extends Model
  12. {
  13. // 获取列表
  14. public function getList($page = true)
  15. {
  16. $field = array(
  17. 'a.*',
  18. 'b.username',
  19. 'b.nickname',
  20. 'b.headpic'
  21. );
  22. $join = array(
  23. 'ay_member b',
  24. 'a.uid=b.id',
  25. 'LEFT'
  26. );
  27. return parent::table('ay_message a')->field($field)
  28. ->join($join)
  29. ->where("a.acode='" . session('acode') . "'")
  30. ->order('a.id DESC')
  31. ->decode(false)
  32. ->page($page)
  33. ->select();
  34. }
  35. // 获取详情
  36. public function getMessage($id)
  37. {
  38. $field = array(
  39. 'a.*',
  40. 'b.username',
  41. 'b.nickname',
  42. 'b.headpic'
  43. );
  44. $join = array(
  45. 'ay_member b',
  46. 'a.uid=b.id',
  47. 'LEFT'
  48. );
  49. return parent::table('ay_message a')->field($field)
  50. ->join($join)
  51. ->where("a.id=$id")
  52. ->where("a.acode='" . session('acode') . "'")
  53. ->find();
  54. }
  55. // 删除留言
  56. public function delMessage($id)
  57. {
  58. return parent::table('ay_message')->where("id=$id")
  59. ->where("acode='" . session('acode') . "'")
  60. ->delete();
  61. }
  62. // 修改留言
  63. public function modMessage($id, $data)
  64. {
  65. return parent::table('ay_message')->autoTime()
  66. ->where("id=$id")
  67. ->where("acode='" . session('acode') . "'")
  68. ->update($data);
  69. }
  70. // 获取表单字段
  71. public function getFormFieldByCode($fcode)
  72. {
  73. return parent::table('ay_form_field')->where("fcode='$fcode'")
  74. ->order('sorting ASC,id ASC')
  75. ->select();
  76. }
  77. // 获取留言数量
  78. public function getCount()
  79. {
  80. $rs = parent::table('ay_message')->field('count(*) as count')
  81. ->where("acode='" . session('acode') . "'")
  82. ->find();
  83. return $rs->count ?: 0;
  84. }
  85. // 删除留言
  86. public function clearMessage($where)
  87. {
  88. if(!$where){
  89. return parent::table('ay_message')->delete();
  90. } else {
  91. return parent::table('ay_message')->delete($where);
  92. }
  93. }
  94. }