19 lines
592 B
PHP
Executable File
19 lines
592 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
namespace app\api\model;
|
|
use app\common\server\UrlServer;
|
|
use think\Model;
|
|
|
|
class GoodsItem extends Model {
|
|
public function getImageAttr($value,$data){
|
|
if($value){
|
|
return UrlServer::getFileUrl($value);
|
|
}
|
|
return $value;
|
|
}
|
|
} |