修复内容

This commit is contained in:
2026-01-17 16:44:21 +08:00
parent 41ad75af08
commit 5455aceab5
4 changed files with 23 additions and 4 deletions

View File

@@ -49,4 +49,12 @@ class Help extends ApiBase
$this->_success('获取成功', $help_detail);
}
//查询承诺
public function commitment()
{
$help = new HelpLogic();
$commitment = $help->commitmentInfo();
$this->_success('获取成功', $commitment);
}
}