dggzichahu/application/api/model/GoodsImage.php

16 lines
533 B
PHP
Executable File

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