dev #108

Merged
ysCha merged 6 commits from dev into prd-deploy 2025-06-10 14:59:12 +09:00
2 changed files with 9 additions and 3 deletions
Showing only changes of commit a0cca5fbca - Show all commits

View File

@ -212,9 +212,14 @@ export function useMasterController() {
}
const getQuotationItem = async (params) => {
return await post({ url: '/api/v1/master/getQuotationItem', data: params }).then((res) => {
return res
})
return await post({ url: '/api/v1/master/getQuotationItem', data: params })
.then((res) => {
return res
})
.catch((error) => {
console.log('🚀 ~ getQuotationItem ~ error:', error)
setIsGlobalLoading(false)
})
}
/**

View File

@ -343,6 +343,7 @@ export function usePlan(params = {}) {
})
.catch((error) => {
swalFire({ text: error.message, icon: 'error' })
setIsGlobalLoading(false)
})
return rtn
}