Browse Source

no message

linwenxin 1 month ago
parent
commit
8d889421a9
2 changed files with 6 additions and 4 deletions
  1. 0 2
      src/common/utils/util.js
  2. 6 2
      src/packageWorkorder/pages/nandufysq.vue

+ 0 - 2
src/common/utils/util.js

@@ -410,7 +410,6 @@ export const uploadImgFull = async function (file) {
       })
       .then(res => {
         uni.hideLoading()
-        alert(JSON.stringify(res.data))
         resolve(
           replaceStringInObject(
             res.data.data,
@@ -432,7 +431,6 @@ export const uploadImgFull = async function (file) {
       filePath: file,
       success(res) {
         uni.hideLoading()
-        alert(JSON.stringify(JSON.parse(res.data)))
         resolve(
           replaceStringInObject(
             JSON.parse(res.data).data,

+ 6 - 2
src/packageWorkorder/pages/nandufysq.vue

@@ -240,7 +240,9 @@ export default {
                 uni.showLoading()
                 res.tempFilePaths.forEach(async item => {
                   let data = await uploadImgFull(item)
-                  this.imageList.push(data)
+                  if (data && data.url) {
+                    this.imageList.push(data)
+                  }
                 })
                 uni.hideLoading()
               },
@@ -256,7 +258,9 @@ export default {
               success: async res => {
                 uni.showLoading()
                 let data = await uploadImgFull(res.tempFilePath)
-                this.imageList.push(data)
+                if (data && data.url) {
+                  this.imageList.push(data)
+                }
                 uni.hideLoading()
               },
               fail: err => {