SystemMessages.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace app\common\model;
  3. use think\Db;
  4. use think\Model;
  5. class SystemMessages extends Model
  6. {
  7. //头像审核结果
  8. const headimg_no = [
  9. 'title' => '头像审核未通过',
  10. 'content' => '用户您好,经平台审核您的头像不符合平台规范要求,没有通过审核,请重新上传!'
  11. ];
  12. const headimg_yes = [
  13. 'title' => '头像审核已通过',
  14. 'content' => '用户您好,经平台审核您的头像已通过审核!'
  15. ];
  16. //学历认证结果
  17. const education_authentication_yes = [
  18. 'title' => '学历认证已通过',
  19. 'content' => '用户您好,经平台审核您的学历认证已通过审核!'
  20. ];
  21. const education_authentication_no = [
  22. 'title' => '学历认证未通过',
  23. 'content' => '用户您好,经平台审核您的学历认证不符合平台规范要求,没有通过审核,请重新上传!'
  24. ];
  25. //工作认证结果
  26. const work_authentication_no = [
  27. 'title' => '工作认证未通过',
  28. 'content' => '用户您好,经平台审核您的工作认证不符合平台规范要求,没有通过审核,请重新上传!'
  29. ];
  30. const work_authentication_yes = [
  31. 'title' => '工作认证已通过',
  32. 'content' => '用户您好,经平台审核您的工作认证已通过审核!'
  33. ];
  34. // //申请wx结果
  35. // const wx_no = [
  36. // 'title' => '对方已拒绝',
  37. // 'content' => '用户您好,经平台审核您的工作认证不符合平台规范要求,没有通过审核,请重新上传!'
  38. // ];
  39. // const wx_yes = [
  40. // 'title' => '工作认证已通过',
  41. // 'content' => '用户您好,经平台审核您的工作认证已通过审核!'
  42. // ];
  43. public static $operate=[
  44. 'headimg_no'=>self::headimg_no,
  45. 'headimg_yes'=>self::headimg_yes,
  46. 'education_authentication_yes'=>self::education_authentication_yes,
  47. 'education_authentication_no'=>self::education_authentication_no,
  48. 'work_authentication_no'=>self::work_authentication_no,
  49. 'work_authentication_yes'=>self::work_authentication_yes,
  50. ];
  51. /**
  52. * 系统消息
  53. */
  54. public static function messages($res,$user_id){
  55. Db::startTrans();
  56. try {
  57. if(!is_null($res))
  58. SystemMessages::create(['uid' => $user_id, 'title' => self::$operate[$res]['title'], 'content' => self::$operate[$res]['content']]);
  59. Db::commit();
  60. } catch (\Exception $e) {
  61. Db::rollback();
  62. }
  63. }
  64. }