NoticeGet.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace catchAdmin\wechat\model;
  3. use think\facade\Db;
  4. trait NoticeGet
  5. {
  6. /**
  7. * 获取部门数组(文本)
  8. */
  9. public function getDepartmentIdAttr($value)
  10. {
  11. $id = [$this->school_id,$this->grade_id,$this->class_id];
  12. $yy_id = Db::table('departments')->where('id',$this->school_id)->value('parent_id');
  13. $ids = [$yy_id];
  14. foreach($id as $v){
  15. if($v){
  16. array_push($ids,$v);
  17. }
  18. }
  19. return $ids;
  20. }
  21. /**
  22. * 获取是否启用名称(文本)
  23. */
  24. public function getEnableTextAttr($value)
  25. {
  26. $value = $this->enable;
  27. if ($value) {
  28. $value = '启用';
  29. } else {
  30. $value = '禁用';
  31. }
  32. return $value;
  33. }
  34. /**
  35. * 获取是否启用名称(文本)
  36. */
  37. public function getEnableAttr($value)
  38. {
  39. if ($value) {
  40. return true;
  41. } else {
  42. return false;
  43. }
  44. }
  45. /**
  46. * 获取学校名称(文本)
  47. */
  48. public function getSchoolNameAttr($value)
  49. {
  50. $id = $this->school_id;
  51. $name = Db::table('departments')->where('id',$id)->value('department_name');
  52. return $name;
  53. }
  54. /**
  55. * 获取年级名称(文本)
  56. */
  57. public function getGradeNameAttr($value)
  58. {
  59. $id = $this->grade_id;
  60. $name = Db::table('departments')->where('id',$id)->value('department_name');
  61. return $name;
  62. }
  63. /**
  64. * 获取班级名称(文本)
  65. */
  66. public function getClassNameAttr($value)
  67. {
  68. $id = $this->class_id;
  69. $name = Db::table('departments')->where('id',$id)->value('department_name');
  70. return $name;
  71. }
  72. /**
  73. * 获取类型名称(文本)
  74. */
  75. public function getTypeTextAttr($value)
  76. {
  77. // return 1122;
  78. // var_dump($value);
  79. $type = $this->getData('type');
  80. if($type == 'school'){
  81. $type = '学校公告';
  82. }elseif($type == 'grade'){
  83. $type = '年级公告';
  84. }else{
  85. $type = '班级公告';
  86. }
  87. // var_dump($type);
  88. return $type;
  89. }
  90. }