<?php
namespace app\common\model;
class OrderAddress extends BaseModel
{
protected $name = 'order_address';
protected $updateTime = false;
protected $append = ['region'];
public function getRegionAttr($value, $data)
{
return [
'province' => Region::getNameById($data['province_id']),
'city' => Region::getNameById($data['city_id']),
'region' => $data['region_id'] == 0 ? '' : Region::getNameById($data['region_id']),
];
}
public function getFullAddress()
{
return $this['region']['province'] . $this['region']['city'] . $this['region']['region'] . $this['detail'];
}
}