DataBidding.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace app\data\model;
  3. use think\admin\Model;
  4. use think\db\Query;
  5. use think\helper\Str;
  6. /**
  7. * @method static|Query show()
  8. */
  9. class DataBidding extends Model
  10. {
  11. protected $type=[
  12. 'files'=>'array',
  13. ];
  14. protected $append=[
  15. 'citys',
  16. ];
  17. public function scopeShow(Query $query){
  18. $query->where('status',1);
  19. }
  20. public function setCityAttr($a){
  21. if(is_array($a)){
  22. return implode(',',$a);
  23. }
  24. return $a;
  25. }
  26. public function type(){
  27. return $this->belongsTo(DataBiddingType::class,'type_id');
  28. }
  29. public function getCityAttr($a,$model){
  30. return array_map(function ($val){
  31. return intval($val);
  32. },array_filter(explode(',',$a)));
  33. }
  34. public function getCitysAttr($a,$model){
  35. if(empty($model['city'])){
  36. return [];
  37. }
  38. return BasePostageRegion::whereIn('id',$model['city'])->column('name');
  39. }
  40. public function win(){
  41. return $this->hasOne(DataBiddingWin::class,'b_id');
  42. }
  43. }