mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
23 lines
296 B
PHP
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);
|
|
}
|
|
}
|