镇管理公司任务类型数据字典
This commit is contained in:
parent
06788042d5
commit
0f112c95ca
@ -58,4 +58,16 @@ class CommonController extends BaseApiController
|
|||||||
return $this->data($data->toArray());
|
return $this->data($data->toArray());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function dict_data_lists_by_type_value($type_value)
|
||||||
|
{
|
||||||
|
$data= DictData::where(['type_value' => $type_value])
|
||||||
|
->append(['status_desc'])
|
||||||
|
->limit(100)
|
||||||
|
->order(['sort' => 'desc', 'id' => 'desc'])
|
||||||
|
->select();
|
||||||
|
|
||||||
|
return $this->data($data->toArray());
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user