Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴迪
gs1
Commits
c3a2cf6b
Commit
c3a2cf6b
authored
Nov 10, 2021
by
林家欣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 新增首页大轮播图接口
parent
7cc80b24
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
120 deletions
+0
-120
committee.js
src/axios/module/committee.js
+0
-120
No files found.
src/axios/module/committee.js
deleted
100644 → 0
View file @
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
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment