__('Normal'), 'hidden' => __('Hidden')]; } public function getStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['status']) ? $data['status'] : ''); $list = $this->getStatusList(); return isset($list[$value]) ? $list[$value] : ''; } /** * 文章类型 */ public function getTypeList(){ return [1 => __('Type_1'),9 => __('Type_9'),2 => __('Type_2'), 3 => __('Type_3'), 4 => __('Type_4'), 5 => __('Type_5'), 6 => __('Type_6'), 7 => __('Type_7'), 8 => __('Type_8')]; } /** * 关联查询 * 品牌商 */ public function brand(){ return $this->belongsTo('\\app\\admin\\model\\xilufitness\\brand\\Index','brand_id','id',[],'LEFT')->setEagerlyType(0); } }