// +---------------------------------------------------------------------- namespace app\activity\model; use think\Model; use think\model\concern\SoftDelete; class ActivityModel extends Model { use SoftDelete; protected $type = ['options' => 'array']; /** * 状态名 */ public function getStatusTextAttr($value, $data) { $status = ['待审核', '通过', '不通过']; return $status[$data['status'] - 1]; } public function setStartTimeAttr($value) { return strtotime($value); } public function setEndTimeAttr($value) { return strtotime($value); } }