1.提交缺失的东西

This commit is contained in:
2025-05-17 15:38:19 +08:00
parent bbdb401e71
commit 5be5385d5f
2 changed files with 103 additions and 1 deletions

View File

@ -0,0 +1,102 @@
<?php
// +----------------------------------------------------------------------
// | likeshop100%开源免费商用商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用,保留版权即可
// | 商业版本务必购买商业授权,以免引起法律纠纷
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshopTeam
// +----------------------------------------------------------------------
namespace app\common\model;
use app\common\service\UrlServer;
use think\Model;
class SelffetchShop extends Model
{
//门店状态
const CLOSE = 0;//停用
const OPEN = 1;//启用
/**
* @notes 门店状态
* @param bool $status
* @return string|string[]
* @author ljj
* @date 2021/8/14 5:22 下午
*/
public static function getShopStatus($status = true)
{
$desc = [
self::CLOSE => '停用',
self::OPEN => '启用',
];
if ($status === true) {
return $desc;
}
return $desc[$status] ?? '未知';
}
/**
* @notes 门店状态获取器
* @param $value
* @param $data
* @return string|string[]
* @author ljj
* @date 2021/8/14 5:24 下午
*/
public function getStatusDescAttr($value,$data)
{
return self::getShopStatus($data['status']);
}
/**
* @notes 创建时间获取器
* @param $value
* @param $data
* @return false|string
* @author ljj
* @date 2021/8/14 5:28 下午
*/
public function getCreateTimeAttr($value,$data)
{
return date('Y-m-d H:i:s',$value);
}
/**
* @notes 门店地址获取器
* @param $value
* @param $data
* @return string
* @author ljj
* @date 2021/8/14 5:29 下午
*/
public function getShopAddressAttr($value,$data)
{
return implode('',DevRegion::where('id', 'in', $data['province'].','.$data['city'].','.$data['district'])->column('name')).$data['address'];
}
/**
* @notes 图片获取器
* @param $value
* @param $data
* @return string
* @author ljj
* @date 2021/8/16 11:39 上午
*/
public function getImageAttr($value,$data)
{
return empty($value) ? '' : UrlServer::getFileUrl($value);
}
}