Item::getMainPicUrl PHP Method

getMainPicUrl() public method

得到商品主图Url地址
public getMainPicUrl ( ) : type
return type
    public function getMainPicUrl()
    {
        $img = $this->getMainPicPath();
        if (file_exists(dirname(F::basePath()) . $img)) {
            return F::baseUrl() . $this->getMainPicPath();
        } else {
            return $this->getHolderJs('350', '350');
        }
    }