Files
ulthon_admin/app/model/User.php
2019-10-09 22:25:54 +08:00

23 lines
296 B
PHP

<?php
namespace app\model;
use think\Model;
/**
* @mixin think\Model
*/
class User extends Model
{
//
public function getAvatarAttr($value)
{
if(empty($value)){
return '/static/images/avatar.jpeg';
}
return \get_source_link($value);
}
}