心理咨询网
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.

LinkModel.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年3月1日
  7. * 友情链接模型类
  8. */
  9. namespace app\admin\model\content;
  10. use core\basic\Model;
  11. class LinkModel extends Model
  12. {
  13. // 获取友情链接列表
  14. public function getList()
  15. {
  16. return parent::table('ay_link')->where("acode='" . session('acode') . "'")
  17. ->order('city asc,gid asc,sorting asc,id asc')
  18. ->page()
  19. ->select();
  20. }
  21. // 查找友情链接
  22. public function findLink($field, $keyword)
  23. {
  24. return parent::table('ay_link')->where("acode='" . session('acode') . "'")
  25. ->like($field, $keyword)
  26. ->order('city asc,gid asc,sorting asc,id asc')
  27. ->page()
  28. ->select();
  29. }
  30. // 获取友情链接详情
  31. public function getLink($id)
  32. {
  33. return parent::table('ay_link')->where("id=$id")
  34. ->where("acode='" . session('acode') . "'")
  35. ->find();
  36. }
  37. // 获取分组
  38. public function getGid()
  39. {
  40. return parent::table('ay_link')->distinct()
  41. ->where("acode='" . session('acode') . "'")
  42. ->order('gid')
  43. ->column('gid');
  44. }
  45. // 获取最大分组值
  46. public function getMaxGid()
  47. {
  48. return parent::table('ay_link')->max('gid');
  49. }
  50. // 添加友情链接
  51. public function addLink(array $data)
  52. {
  53. return parent::table('ay_link')->autoTime()->insert($data);
  54. }
  55. // 删除友情链接
  56. public function delLink($id)
  57. {
  58. return parent::table('ay_link')->where("id=$id")
  59. ->where("acode='" . session('acode') . "'")
  60. ->delete();
  61. }
  62. // 修改友情链接
  63. public function modLink($id, $data)
  64. {
  65. return parent::table('ay_link')->autoTime()
  66. ->where("id=$id")
  67. ->where("acode='" . session('acode') . "'")
  68. ->update($data);
  69. }
  70. public function getImage()
  71. {
  72. return parent::table('ay_link')->column('logo');
  73. }
  74. /*
  75. * 调用所有城市列表
  76. */
  77. public function getCity($cid=0){
  78. $ids = parent::table('ay_city')->where("pid=0")->column('id');
  79. $is = '-1';
  80. foreach ($ids as $k=>$v){
  81. $is = $is.','.$v;
  82. }
  83. $list = parent::table('ay_city')->where("id IN(1,2,9,22) and id!=381 OR pid IN($is) and id!=381")->order("etitle ASC")->select();;
  84. //return $list;
  85. // 将结果转换为数组
  86. $dataArray = [];
  87. foreach ($list as $row) {
  88. $dataArray[] = (array)$row;
  89. }
  90. $data = [];
  91. foreach($dataArray as $k=>$v){
  92. $str = $v['etitle'];
  93. $zm = $str[0];
  94. if((int)$cid === (int)$v['id']){
  95. $v['selected'] = 1;
  96. }else{
  97. $v['selected'] = 0;
  98. }
  99. $data[$zm][] = $v;
  100. }
  101. return $data;
  102. }
  103. public function getCityName($id){
  104. if($id > 0){
  105. return parent::table('ay_city')->where("id=$id")->value('title');
  106. }else{
  107. return "全国";
  108. }
  109. }
  110. }