ui-process-h5 1.3.23 → 1.3.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3496,8 +3496,10 @@ const EA = {
3496
3496
  },
3497
3497
  mounted() {
3498
3498
  this.$nextTick(() => {
3499
- const e = document.getElementsByClassName("process-warp")[0] ? document.getElementsByClassName("process-warp")[0] : document.querySelector("body");
3500
- e.append ? e.append(this.$el) : e.appendChild(this.$el);
3499
+ if (document.getElementsByClassName("process-warp")[0]) {
3500
+ const e = document.getElementsByClassName("process-warp")[0];
3501
+ e.append ? e.append(this.$el) : e.appendChild(this.$el);
3502
+ }
3501
3503
  });
3502
3504
  }
3503
3505
  };
@@ -12252,7 +12254,7 @@ const gC = /* @__PURE__ */ function() {
12252
12254
  taskId: this.taskNode[0].taskId
12253
12255
  }
12254
12256
  }).then((e) => {
12255
- e.code == 200 && (this.taskObj = e.data, this.handleTips("\u52A0\u8F7D\u5B8C\u6210", !0, "success"));
12257
+ e.code == 200 && (this.taskObj = e.data, this.$refs.topTips.handleClose());
12256
12258
  });
12257
12259
  },
12258
12260
  async showOperation(e, i, s, r) {