diff --git a/src/pages/materialsStation/index/index.vue b/src/pages/materialsStation/index/index.vue index 86a15e0..75a3639 100644 --- a/src/pages/materialsStation/index/index.vue +++ b/src/pages/materialsStation/index/index.vue @@ -133,8 +133,9 @@ const getUserInfoByUserName = async () => { const projectInfoList = async () => { try { const res = await getProjectInfoApi({ unitId: null, isApp: true }) + console.log('🚀 ~ projectInfoList ~ res:', res) if (res.data && res.data.length > 0) { - projectIds.value = res.data.map((item) => item.projectId) + projectIds.value = res.data.map((item) => item.proId) } } catch (error) { console.log('🚀 ~ projectInfoList ~ error:', error)