ui-process-h5 1.0.9 → 1.0.10
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/README.md +1 -3
- package/package.json +1 -1
- package/v2/ui-process-h5.js +9 -4
- package/v2/ui-process-h5.umd.cjs +2 -2
- package/v2.7/ui-process-h5.js +9 -4
- package/v2.7/ui-process-h5.umd.cjs +2 -2
- package/v3/ui-process-h5.js +501 -493
- package/v3/ui-process-h5.umd.cjs +3 -3
package/v2.7/ui-process-h5.js
CHANGED
|
@@ -3649,7 +3649,7 @@ const Pt = /* @__PURE__ */ function() {
|
|
|
3649
3649
|
};
|
|
3650
3650
|
var $h = function() {
|
|
3651
3651
|
var t = this, n = t.$createElement, e = t._self._c || n;
|
|
3652
|
-
return e("div", {
|
|
3652
|
+
return t.url ? e("div", {
|
|
3653
3653
|
staticStyle: {
|
|
3654
3654
|
width: "100%",
|
|
3655
3655
|
height: "calc(100% - 40px)"
|
|
@@ -3676,7 +3676,7 @@ var $h = function() {
|
|
|
3676
3676
|
attrs: {
|
|
3677
3677
|
src: t.url
|
|
3678
3678
|
}
|
|
3679
|
-
})]);
|
|
3679
|
+
})]) : t._e();
|
|
3680
3680
|
}, tv = [];
|
|
3681
3681
|
const Io = {};
|
|
3682
3682
|
var ev = /* @__PURE__ */ ot(
|
|
@@ -9908,6 +9908,10 @@ const be = /* @__PURE__ */ function() {
|
|
|
9908
9908
|
title: {
|
|
9909
9909
|
type: String,
|
|
9910
9910
|
default: "\u6D4B\u8BD5"
|
|
9911
|
+
},
|
|
9912
|
+
showType: {
|
|
9913
|
+
type: String,
|
|
9914
|
+
default: "all"
|
|
9911
9915
|
}
|
|
9912
9916
|
},
|
|
9913
9917
|
data() {
|
|
@@ -9942,7 +9946,8 @@ const be = /* @__PURE__ */ function() {
|
|
|
9942
9946
|
async handler(t, n) {
|
|
9943
9947
|
this.show = t, this.$emit("update:visible", this.show), await this.request.get("/aws/repository/getProcessDefList", {
|
|
9944
9948
|
params: {
|
|
9945
|
-
appId: this.appId
|
|
9949
|
+
appId: this.appId,
|
|
9950
|
+
processGroupName: this.processName
|
|
9946
9951
|
}
|
|
9947
9952
|
}).then((e) => {
|
|
9948
9953
|
console.log("\u83B7\u53D6\u6D41\u7A0B::", e), e.code == 200 && (this.option = e.data, this.checkedItem = this.option[0], this.getAfferentParticipantNodeList(), this.getDiagramUrl());
|
|
@@ -10014,7 +10019,7 @@ const be = /* @__PURE__ */ function() {
|
|
|
10014
10019
|
title: this.title,
|
|
10015
10020
|
processDefId: this.checkedItem.id,
|
|
10016
10021
|
processBusinessKey: this.id,
|
|
10017
|
-
showType:
|
|
10022
|
+
showType: this.showType,
|
|
10018
10023
|
businessType: this.businessType,
|
|
10019
10024
|
multiNodeParticipant: this.multiNodeParticipant,
|
|
10020
10025
|
todoParameter: this.todoParameter
|