fix
13404089107
2025-03-19 f3210e9d2f4bf2aa9d0ea8b1e4424d0e5b91a305
H5/pages/dispatchWorkOrder/dispatchWorkOrder.vue
@@ -120,21 +120,24 @@
               })
               return
            }
            uni.showLoading({
               mask: true
            })
            saveDispatch({
               complaintId: this.id,
               comment: this.content,
               dispatchId: this.value
            }).then(res => {
               this.showPop = false
               uni.hideLoading()
               if (res.code == 200) {
                  uni.showToast({
                     icon: 'none',
                     title: '下派成功'
                  })
                  setTimeout(() => {
                     uni.navigateBack({
                        delta: 2
                     })
                  }, 1500)
                  uni.navigateBack({
                     delta: 2
                  })
               }
            })
         }