diff --git a/src/api/Lecturer.js b/src/api/Lecturer.js index 74398e73..b40f7629 100644 --- a/src/api/Lecturer.js +++ b/src/api/Lecturer.js @@ -71,6 +71,8 @@ export const getApprovalResultByApprovalIdList = (approvalId) => http.post(`/adm export const recovery = (id) => http.post(`/admin/affiliation/recovery?id=${id}`) //删除培训发生组织 export const affiliationDelById = (id)=>http.post(`/admin/affiliation/delById?id=${id}`) +//停用启用培训发生组织 +export const isEnable = (obj) => http.post(`/admin/affiliation/isEnable`,obj) //撤回培训发生组织 export const affiliatIsConfirm = (id) => http.post(`/admin/affiliation/isConfirm?id=${id}`) //讲师费统计详情 diff --git a/src/api/lecturerFeeManagement.js b/src/api/lecturerFeeManagement.js index 08ae7b91..fdd837ad 100644 --- a/src/api/lecturerFeeManagement.js +++ b/src/api/lecturerFeeManagement.js @@ -43,6 +43,8 @@ export const queryTeacherFeeTotalList= (obj) => http.post('/teacher/fee/queryTea export const getPreviousTeacherFee= (obj) => http.post('/teacher/fee/getPreviousTeacherFee',obj) //汇总上月讲师费月度数据 export const CreateMonthSummary= (obj) => http.post('/admin/expenseSummary/createMonthSummary',obj) +//是否显示重汇按钮 +export const isShowReimport= () => http.get('/admin/expenseSummary/isAdmin') //讲师费统计列表 export const expenseSummaryList= (obj) => http.get('/admin/expenseSummary/list',{params:obj}) //提交/撤回 diff --git a/src/components/lecturer/ImportWork.vue b/src/components/lecturer/ImportWork.vue index 30e51dbe..3b3b1f4f 100644 --- a/src/components/lecturer/ImportWork.vue +++ b/src/components/lecturer/ImportWork.vue @@ -295,7 +295,7 @@ import {getCookieForName} from "@/api/method"; } }; function downTemplate() { - window.open(`${process.env.VUE_APP_BASE}/template/${props.template}.xlsx`); + window.open(`${process.env.VUE_APP_BOE_API_URL}/upload/template/${props.template}`); } return { diff --git a/src/components/project/AddOrgContent.vue b/src/components/project/AddOrgContent.vue index 7ec7505d..8fffb02f 100644 --- a/src/components/project/AddOrgContent.vue +++ b/src/components/project/AddOrgContent.vue @@ -93,7 +93,7 @@ import * as lecturerApi from "@/api/Lecturer.js"; notLists?.value?.some(i=>{ if(i.orgId == item.id){ item.disabled = true - item.name = item.name + '(' + i.orgName + ')' + item.name = item.name + '(' + i.affiliationName + ')' return true } }) @@ -129,7 +129,7 @@ import * as lecturerApi from "@/api/Lecturer.js"; notLists.value.some(i=>{ if(i.orgId == item.id){ item.disabled = true - item.name = item.name + '(' + i.orgName + ')' + item.name = item.name + '(' + i.affiliationName + ')' return true } }) diff --git a/src/components/project/BatchLecturer.vue b/src/components/project/BatchLecturer.vue index b6dc7d5d..482a2adb 100644 --- a/src/components/project/BatchLecturer.vue +++ b/src/components/project/BatchLecturer.vue @@ -4,7 +4,7 @@ :closable="false" class="largeDrawerInside" placement="right" - width="70%" + width="80%" >
@@ -22,9 +22,9 @@
-
+
搜索 重置 @@ -32,13 +32,15 @@