IntroduceModel.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace app\api\model;
  3. use think\Cache;
  4. use think\Model;
  5. class IntroduceModel extends Model
  6. {
  7. protected $name = 'introduce';
  8. // protected $resultSetType = 'collection';
  9. public function allIntroduce()
  10. {
  11. $data = $this->alias('i')
  12. ->join('type t', 'i.tid=t.id','left')
  13. ->field('t.name name,title,zhu_image,pei_images,introduce')
  14. ->order('i.sort','asc')
  15. ->select();
  16. if ($data) {
  17. return json(['data' => $data, 'msg'=> '', 'code' => 200]);
  18. } else {
  19. return json(['data' => [], 'msg' => '暂无数据','code' => 100]);
  20. }
  21. }
  22. public function introduce($id)
  23. {
  24. $data = $this->alias('i')
  25. ->join('type t', 'i.tid=t.id','left')
  26. ->field('t.name name,title,zhu_image,pei_images,introduce')
  27. ->where('i.tid',$id)
  28. ->order('i.sort','asc')
  29. ->select();
  30. if ($data) {
  31. return json(['data' => $data, 'msg'=> '', 'code' => 200]);
  32. } else {
  33. return json(['data' => [], 'msg' => '暂无数据','code' => 100]);
  34. }
  35. }
  36. public function introduceInfo($id)
  37. {
  38. $data = $this->alias('i')
  39. ->join('type t', 'i.tid=t.id','left')
  40. ->field('t.name name,title,zhu_image,pei_images,introduce')
  41. ->where('i.id',$id)
  42. ->order('i.sort','asc')
  43. ->select();
  44. if ($data) {
  45. return json(['data' => $data, 'msg'=> '', 'code' => 200]);
  46. } else {
  47. return json(['data' => [], 'msg' => '暂无数据','code' => 100]);
  48. }
  49. }
  50. public function type()
  51. {
  52. $this->belongsTo('type','tid', 'id');
  53. }
  54. public function getZhuImageAttr($value)
  55. {
  56. return config('site.url').$value;
  57. }
  58. public function getPeiImagesAttr($value)
  59. {
  60. $value = explode(',', $value);
  61. foreach ($value as &$v) {
  62. $v = config('site.url').$v;
  63. }
  64. return $value;
  65. }
  66. }