Selaa lähdekoodia

fix: 健康报告上传失败时 console 输出错误详情

Xiaogang Liao 1 kuukausi sitten
vanhempi
sitoutus
1256984f31
1 muutettua tiedostoa jossa 4 lisäystä ja 2 poistoa
  1. 4 2
      cfc-frontend/pages/health/report-upload.vue

+ 4 - 2
cfc-frontend/pages/health/report-upload.vue

@@ -307,8 +307,9 @@ export default {
               uni.showToast({ title: data.message || '解析失败', icon: 'none' })
             }
           },
-          fail: function() {
+          fail: function(err) {
             self.parsingPreview = false
+            console.error('PDF上传失败', err)
             uni.showToast({ title: '上传失败', icon: 'none' })
           }
         })
@@ -330,8 +331,9 @@ export default {
               uni.showToast({ title: data.message || '解析失败', icon: 'none' })
             }
           },
-          fail: function() {
+          fail: function(err) {
             self.parsingPreview = false
+            console.error('图片上传失败', err)
             uni.showToast({ title: '上传失败', icon: 'none' })
           }
         })