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.
package/v2.7/ui-process-h5.js
CHANGED
|
@@ -3496,8 +3496,10 @@ const EA = {
|
|
|
3496
3496
|
},
|
|
3497
3497
|
mounted() {
|
|
3498
3498
|
this.$nextTick(() => {
|
|
3499
|
-
|
|
3500
|
-
|
|
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.
|
|
12257
|
+
e.code == 200 && (this.taskObj = e.data, this.$refs.topTips.handleClose());
|
|
12256
12258
|
});
|
|
12257
12259
|
},
|
|
12258
12260
|
async showOperation(e, i, s, r) {
|