From ad055f25548bd4a9db0ddd9ad5e5f335f5b59b24 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Tue, 19 Aug 2025 10:59:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/common.js | 18 +- src/components/AttendanceCalendar/index.vue | 235 +++++++++++------- .../attendance-count/attendance-details.vue | 82 ++++-- .../person-entry/add-or-edit-form.vue | 39 ++- 4 files changed, 242 insertions(+), 132 deletions(-) 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 @@