You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
772 B
48 lines
772 B
<?php |
|
/** |
|
* |
|
* Bidding.php |
|
* User: ChenLong |
|
* DateTime: 2020-12-21 14:07:07 |
|
*/ |
|
|
|
namespace app\admin\model; |
|
|
|
use \app\common\model\Bidding as commonBidding; |
|
|
|
|
|
/** |
|
* Class Bidding |
|
* @package app\admin\controller\Bidding |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class Bidding extends commonBidding |
|
{ |
|
|
|
|
|
/** |
|
* 展示处理 |
|
* @param $value |
|
* @return string |
|
*/ |
|
public function getStatusAttr($value) |
|
{ |
|
$field = self::getStatusSc(); |
|
|
|
return $field[$value] ?? $value; |
|
} |
|
|
|
/** |
|
* 展示处理 |
|
* @param $value |
|
* @return string |
|
*/ |
|
public function getIsUrgentAttr($value) |
|
{ |
|
$field = self::getIsUrgentSc(); |
|
|
|
return $field[$value] ?? $value; |
|
} |
|
|
|
|
|
}
|
|
|