Commit c3a2cf6b by 林家欣

feat: 新增首页大轮播图接口

parent 7cc80b24
import {
GET, POSTFORM, POST, UPLOAD, DOWNLOAD
} from "../fetch.js"
// 根据业主id查询报名表
const QueryApplicationFormFindByUser = async (params) => {
return await GET("/cmt/committee/cmt/p5/apply/findByUser",params)
}
// 审核报名表
const AuditApplicationForm = async (params) => {
return await POST("/cmt/console/cmt/p5/apply/audit",params)
}
// 确认总报名记录审核结果
const VerifyApplyResult = async (stageId) => {
return await POST("/cmt/console/cmt/p5/apply/auditByStage",stageId)
}
// 根据id查询报名表
const QueryApplicationFormFindId = async (applyId) => {
return await GET("/cmt/console/cmt/p5/apply/findById",applyId)
}
// 查询审核通过的候选人清单
const QueryCandidateList = async (stageId) => {
return await GET("/cmt/console/cmt/p5/apply/findSelected",stageId)
}
// 审核联名报名记录
const AuditJointlyApply = async (params) => {
return await GET("/cmt/console/cmt/p5/apply/jointly/audit",params)
}
// 确认联名审核
const VerifyJointlyApply = async (stageId) => {
return await POST("/cmt/console/cmt/p5/apply/jointly/auditByStage",stageId)
}
// 查询指定人被联名清单
const QueryJointlyListFindSelected = async (params) => {
return await GET("/cmt/console/cmt/p5/apply/jointly/findBySelected",params)
}
// 查询报名列表
const QueryApplyList = async (params) => {
return await GET("/cmt/console/cmt/p5/apply/listByStage",params)
}
// 提交报名通知审核
const AuditApplyNotification = async(params) => {
return await POST("/cmt/console/cmt/p5/notification/audit",params)
}
// id查询报名通知
const QueryApplyNotificationById = async (id) => {
return await GET("/cmt/console/cmt/p5/notification/findById",id)
}
// 阶段查询报名通知
const QueryApplyNotificationFindByStage = async (stageId) => {
return await GET("/cmt/console/cmt/p5/notification/findByStage",stageId)
}
// 提交报名通知
const SubmitApplyNotification = async (params) => {
return await POST("/cmt/console/cmt/p5/notification/submit",params)
}
// 审批报名公示
const AuditApplyPublicity = async (params) => {
return await POST("/cmt/console/cmt/p5/publicity/audit",params)
}
//查询公示通知
const QueryPublicityFindByStage = async (stageId) => {
return await GET("/cmt/console/cmt/p5/publicity/findByStage",stageId)
}
// 提交公示通知
const SubmitPublicity = async (params) => {
return await POST("/cmt/console/cmt/p5/publicity/submit")
}
// 驳回业主报名事项
const RejectApply = async (params) => {
return await POST("/cmt/console/cmt/p5/reject",params)
}
export default {
QueryApplicationFormFindByUser,
AuditApplicationForm,
VerifyApplyResult,
QueryApplicationFormFindId,
QueryCandidateList,
AuditJointlyApply,
VerifyJointlyApply,
QueryJointlyListFindSelected,
QueryApplyList,
AuditApplyNotification,
QueryApplyNotificationById,
QueryApplyNotificationFindByStage,
SubmitApplyNotification,
AuditApplyPublicity,
QueryPublicityFindByStage,
SubmitPublicity,
RejectApply
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment