fix : 修复详情页面移动端适配

This commit is contained in:
2024-06-24 13:25:34 +08:00
parent f66a570f00
commit 6f320a47bb
8 changed files with 436 additions and 40 deletions

View File

@@ -19,11 +19,6 @@ const getDetail = async () => {
loading.value = true
fundProcessViewer.value = false
const {code, data, msg} = await getFundDetailProcess(specialFundId)
ElNotification({
title: '提示',
message: msg,
type: code === 1000 ? 'success' : 'error'
})
if (code === 1000) {
fundData.value = data
loading.value = false
@@ -39,6 +34,11 @@ const getDetail = async () => {
showTable.value = true
})
}else {
ElNotification({
title: '提示',
message: msg,
type: 'error'
})
loading.value = false
}
}