linwenxin 1 hónapja
szülő
commit
58c647a1f3

+ 3 - 3
src/packageWorkorder/pages/nandufysq.vue

@@ -199,7 +199,7 @@ export default {
           this.oldData = res.data
           this.remarkVal = res.data.reason
           this.remarkVal2 = res.data.problemDescription
-          this.imageList = res.data.image.split(',').map(url => ({ url }))
+          this.imageList = res.data?.image ? res.data.image.split(',').map(url => ({ url })) : []
         }
       })
       .catch(res => {})
@@ -316,7 +316,7 @@ export default {
         params.problemDescription = this.remarkVal2
       }
 
-      if (!this.remarkVal2) {
+      if (!this.imageList.length) {
         return this.$toast('请上传环境照片')
       } else {
         params.image = this.imageList
@@ -360,7 +360,7 @@ export default {
         params.problemDescription = this.remarkVal2
       }
 
-      if (!this.remarkVal2) {
+      if (!this.imageList.length) {
         return this.$toast('请上传环境照片')
       } else {
         params.image = this.imageList

+ 4 - 1
src/packageWorkorder/pages/orderDetail.vue

@@ -828,12 +828,15 @@ export default {
   async onLoad({ id, behavior }) {
     this.id = id
     this.behavior = behavior
-    await this.refreshData()
     this.crossPage.$on('refreshWorkorderDetail', async () => {
       await this.refreshData()
     })
   },
 
+  async onShow() {
+    await this.refreshData()
+  },
+
   onUnload() {
     this.crossPage.$off('refreshWorkorderDetail')
   },