截流自动化的商城平台
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.

Bargain.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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\bargain;
  20. use app\common\basics\Models;
  21. use app\common\model\goods\Goods;
  22. use app\common\model\shop\Shop;
  23. /**
  24. * 砍价活动模型
  25. * Class bargain
  26. * @package app\common\model
  27. */
  28. class Bargain extends Models
  29. {
  30. /**
  31. * @notes 关联商品模型
  32. * @return \think\model\relation\HasOne
  33. * @author suny
  34. * @date 2021/7/13 6:39 下午
  35. */
  36. public function goods()
  37. {
  38. return $this->hasOne(Goods::class, 'id', 'goods_id')
  39. ->field(['id', 'name', 'image', 'max_price', 'min_price']);
  40. }
  41. /**
  42. * @notes 关联商品模型
  43. * @return \think\model\relation\HasOne
  44. * @author suny
  45. * @date 2021/7/13 6:39 下午
  46. */
  47. public function shop()
  48. {
  49. return $this->hasOne(Shop::class, 'id', 'shop_id')
  50. ->field(['id', 'name', 'logo']);
  51. }
  52. /**
  53. * @notes 关联砍价参与人数
  54. * @return \think\model\relation\HasMany
  55. * @author suny
  56. * @date 2021/7/13 6:40 下午
  57. */
  58. public function launchPeopleNumber()
  59. {
  60. return $this->hasMany('BargainLaunch', 'bargain_id', 'id');
  61. }
  62. /**
  63. * @notes 帮砍人数
  64. * @return \think\model\relation\HasMany
  65. * @author suny
  66. * @date 2021/7/13 6:40 下午
  67. */
  68. public function KnifePeopleNumber()
  69. {
  70. return $this->hasMany('BargainKnife', 'bargain_id', 'id');
  71. }
  72. /**
  73. * @notes 关联砍价成功人数
  74. * @return \think\model\relation\HasMany
  75. * @author suny
  76. * @date 2021/7/13 6:40 下午
  77. */
  78. public function successKnifePeopleNumber()
  79. {
  80. return $this->hasMany('BargainLaunch', 'bargain_id', 'id')
  81. ->where(['status' => 1]);
  82. }
  83. /**
  84. * @notes 活动状态
  85. * @param $value
  86. * @param $data
  87. * @return string|string[]
  88. * @author suny
  89. * @date 2021/7/13 6:40 下午
  90. */
  91. public static function getStatusTextAttr($value, $data)
  92. {
  93. $array = [
  94. 1 => '已开启',
  95. 0 => '已停止',
  96. ];
  97. if ($data['status'] === true) {
  98. return $array;
  99. }
  100. return $array[$data['status']] ?? '';
  101. }
  102. }