diff --git a/src/api/common.js b/src/api/common.js index 0e5fd6e..84d68cb 100644 --- a/src/api/common.js +++ b/src/api/common.js @@ -60,26 +60,26 @@ export const getPostTypeSelectListAPI = () => { // 获取标段工程下拉列表 ----- 携带查询条件的 export function getLotProjectSelectListByConditionAPI(data) { return request({ - url: '/bmw/pmProject/listAll', - method: 'GET', - params: data, + url: '/bmw/select/selectPro', + method: 'POST', + data, }) } // 获取分包商下拉列表 ----- 携带查询条件的 export const getSubSelectListByConditionAPI = (data) => { return request({ - url: '/bmw/pmSub/listAll', - method: 'GET', - params: data, + url: '/bmw/select/selectSub', + method: 'POST', + data, }) } // 获取班组下拉列表 ----- 携带查询条件的 export const getTeamSelectListByConditionAPI = (data) => { return request({ - url: '/bmw/pmSubTeam/listAll', - method: 'GET', - params: data, + url: '/bmw/select/selectTeam', + method: 'POST', + data, }) } diff --git a/src/components/AttendanceCalendar/index.vue b/src/components/AttendanceCalendar/index.vue index beea920..6515f41 100644 --- a/src/components/AttendanceCalendar/index.vue +++ b/src/components/AttendanceCalendar/index.vue @@ -1,7 +1,6 @@