data($data); } /** * @notes 根据类型获取字典数据 * @return \think\response\Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2022/9/27 19:10 */ public function dict() { $type = $this->request->get('type', ''); $data = ConfigLogic::getDictByType($type); return $this->data($data); } }