diff --git a/src/api/Lecturer.js b/src/api/Lecturer.js
index 24ba6d4f..66a14ad6 100644
--- a/src/api/Lecturer.js
+++ b/src/api/Lecturer.js
@@ -64,4 +64,8 @@ export const affiliationDelById = (id)=>http.post(`/admin/affiliation/delById?id
//讲师费统计详情
export const expenseSummaryById = (obj) => http.get( `/admin/expenseSummary/queryById?id=${obj.id}&name=${obj.name}&trainOrgId=${obj.trainOrgId}`)
//查看月度讲师费详情
-export const queryDetailId = (obj) => http.get(`/admin/expenseSummary/queryDetailId?summaryId=${obj.summaryId}&name=${obj.name}`)
\ No newline at end of file
+export const queryDetailId = (obj) => http.get(`/admin/expenseSummary/queryDetailId?summaryId=${obj.summaryId}&name=${obj.name}`)
+//查询未汇总的数据(批量确认弹框)
+export const getListByStatus = (obj) => http.get(`/admin/teacherExpense/getListByStatus`)
+//根据发生组织查询汇总的数据(一键确认弹框使用)
+export const getListByAffiliation = (obj) => http.get(`/admin/teacherExpense/getListByAffiliation?ids=${obj.ids}&beginTime=${obj.beginTime}&endTime=${obj.endTime}&name=${obj.name}&`)
diff --git a/src/components/project/BatchLecturer.vue b/src/components/project/BatchLecturer.vue
new file mode 100644
index 00000000..f59d03d3
--- /dev/null
+++ b/src/components/project/BatchLecturer.vue
@@ -0,0 +1,313 @@
+
+
+