This commit is contained in:
hayu 2025-09-12 14:30:36 +08:00
parent aa360c3ead
commit 536781d1dd
1 changed files with 4 additions and 2 deletions

View File

@ -145,10 +145,12 @@ const getTableList = () => {
uni.showLoading({ title: '加载中...', mask: true }) uni.showLoading({ title: '加载中...', mask: true })
getBackInfo(id.value,keyWord.value).then(res => { getBackInfo(id.value,keyWord.value).then(res => {
uni.hideLoading() uni.hideLoading()
console.log(res) console.log("res",res)
if (res.msg && !res.msg.includes("成功")) {
uni.showToast({ title: res.msg, icon: 'none' })
}
taskInfo.value = res.data.backApplyInfo; taskInfo.value = res.data.backApplyInfo;
tableList.value = res.data.backApplyDetailsList; tableList.value = res.data.backApplyDetailsList;
console.log(taskInfo.value)
}).catch(error => { }).catch(error => {
console.log(error) console.log(error)
uni.hideLoading() uni.hideLoading()