12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace app\data\model;
- use think\admin\Model;
- use think\helper\Arr;
- /**
- * 采购接单需求模型
- * Class DataUserPurchaseAcceptance
- * @package app\data\model
- */
- class DataUserPurchaseAcceptance extends Model
- {
- protected $autoWriteTimestamp=true;
- protected $createTime='create_at';
- protected $updateTime='update_at';
- protected $append=[
- 'addr',
- 'status_text',
- ];
- public static $status=[
- '待审核',
- '审核通过',
- '审核驳回',
- ];
- /**
- * @return string[]
- */
- public static function getStatus(): array
- {
- return self::$status;
- }
- public function getImgsAttr($_,$model){
- return array_filter(explode(',',$model['imgs']));
- }
- public function user(){
- return $this->belongsTo(DataUser::class,'uuid');
- }
- public function getAddrAttr($_,$model){
- return sprintf("%s%s%s",$model['province']??'',$model['city']??'',$model['area']??'');
- }
- public function getStatusTextAttr($_,$model){
- return Arr::get(self::$status,$model['status']);
- }
- }
|