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.
28 lines
424 B
28 lines
424 B
<?php |
|
/** |
|
* |
|
* Resource.php |
|
* User: ChenLong |
|
* DateTime: 2020-05-06 16:43 |
|
*/ |
|
|
|
namespace app\admin\model; |
|
|
|
class Resource extends \app\common\model\Resource |
|
{ |
|
|
|
|
|
/** |
|
* 分类值展示处理 |
|
* @param $value |
|
* @return string |
|
*/ |
|
public function getTypeAttr($value) |
|
{ |
|
$field = self::getTypeSc(); |
|
|
|
return $field[$value] ?? $value; |
|
} |
|
|
|
|
|
}
|
|
|