Codex Assistant
2025-10-05 0a48616045ddce1562584543a0e89e5144051fde
web/src/api/projectReviewNew.js
@@ -23,8 +23,9 @@
`
// 获取项目评审列表
export const getProjectReviewApplications = (params) => {
  return graphqlRequest(GET_PROJECT_REVIEW_APPLICATIONS_QUERY, params)
export const getProjectReviewApplications = async (params) => {
  const result = await graphqlRequest(GET_PROJECT_REVIEW_APPLICATIONS_QUERY, params)
  return result.data
}
export default {