data($data); } /** * @notes 正版检测 * @return \think\response\Json * @author ljj * @date 2023/5/16 11:49 上午 */ public function checkLegal() { $data = ConfigLogic::checkLegal(); return $this->data($data); } /** * @notes 检测新版本 * @return \think\response\Json * @author ljj * @date 2023/5/25 7:02 下午 */ public function checkVersion() { $data = ConfigLogic::checkVersion(); return $this->data($data); } }