截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

GoodsComment.php 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\model\goods;
  20. use app\common\basics\Models;
  21. use app\common\model\order\OrderGoods;
  22. class GoodsComment extends Models
  23. {
  24. /**
  25. * 关联商品
  26. */
  27. public function goods()
  28. {
  29. return $this->hasOne(Goods::class, 'id', 'goods_id')
  30. ->field('id,name,image');
  31. }
  32. /**
  33. * 关联SKU
  34. */
  35. public function goodsItem()
  36. {
  37. return $this->hasOne(GoodsItem::class, 'id', 'item_id')
  38. ->field('id,image,spec_value_str');
  39. }
  40. /**
  41. * 关联订单商品
  42. */
  43. public function orderGoods()
  44. {
  45. return $this->hasOne(OrderGoods::class, 'id', 'order_goods_id')
  46. ->field('id,total_pay_price');
  47. }
  48. /**
  49. * 关联图片评论
  50. */
  51. public function goodsCommentImage()
  52. {
  53. return $this->hasMany(GoodsCommentImage::class, 'goods_comment_id', 'id');
  54. }
  55. public function getStatusDescAttr($value)
  56. {
  57. return $value ? '显示' : '隐藏';
  58. }
  59. public function getGoodsCommentDescAttr($value)
  60. {
  61. $desc = [1=>'差评',2=>'差评',3=>'中评',4=>'好评',5=>'好评',];
  62. return $desc[$value];
  63. }
  64. /**
  65. * @notes 评论内容 xss
  66. * @param $comment
  67. * @return mixed|string
  68. * @author lbzy
  69. * @datetime 2023-09-06 14:36:25
  70. */
  71. function getCommentAttr($comment)
  72. {
  73. if (in_array(app('http')->getName(), [ 'admin', 'shop' ]) && request()->isAjax()) {
  74. $comment = htmlspecialchars($comment);
  75. }
  76. return $comment;
  77. }
  78. }