ecinc-cloud-mappaio 9.6.166 → 9.6.167
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/lib/ecmappaio.common.js
CHANGED
|
@@ -42195,7 +42195,7 @@ var wfengine_install = function install(Vue) {
|
|
|
42195
42195
|
$scope.wfInstance.udmNodes = null;
|
|
42196
42196
|
return customRoutes;
|
|
42197
42197
|
}
|
|
42198
|
-
if (curNode.canEndWflow !== 0) {
|
|
42198
|
+
if (curNode.canEndWflow !== 0 || customRoutes.length === 0) {
|
|
42199
42199
|
var endRoute = {
|
|
42200
42200
|
evtMsg: '',
|
|
42201
42201
|
mustNextTN: '',
|
|
@@ -44503,9 +44503,14 @@ var src_install = function install(Vue) {
|
|
|
44503
44503
|
clearAllNotification: function clearAllNotification() {
|
|
44504
44504
|
this.jsBridgeCallNativeMethod('clearAllNotification', null);
|
|
44505
44505
|
},
|
|
44506
|
+
//通知APP已初始化完成
|
|
44506
44507
|
showWebComplete: function showWebComplete() {
|
|
44507
44508
|
this.jsBridgeCallNativeMethod('showWebComplete', null);
|
|
44508
44509
|
},
|
|
44510
|
+
//自动旋转屏幕
|
|
44511
|
+
switchOrientation: function switchOrientation(data) {
|
|
44512
|
+
this.jsBridgeCallNativeMethod('switchOrientation', data);
|
|
44513
|
+
},
|
|
44509
44514
|
// jsBridgeCallNativeMethod: window.flutter_inappwebview ? jsBridgeCallNativeMethod_9 : jsBridgeCallNativeMethod_8
|
|
44510
44515
|
jsBridgeCallNativeMethod: window.flutter_inappwebview ? jsBridgeCallNativeMethod_9 : navigator.userAgent && navigator.userAgent.indexOf('Harmony') > -1 ? jsBridgeCallNativeMethod_harmony : jsBridgeCallNativeMethod_8
|
|
44511
44516
|
}
|
package/lib/ecmappaio.umd.js
CHANGED
|
@@ -42205,7 +42205,7 @@ var wfengine_install = function install(Vue) {
|
|
|
42205
42205
|
$scope.wfInstance.udmNodes = null;
|
|
42206
42206
|
return customRoutes;
|
|
42207
42207
|
}
|
|
42208
|
-
if (curNode.canEndWflow !== 0) {
|
|
42208
|
+
if (curNode.canEndWflow !== 0 || customRoutes.length === 0) {
|
|
42209
42209
|
var endRoute = {
|
|
42210
42210
|
evtMsg: '',
|
|
42211
42211
|
mustNextTN: '',
|
|
@@ -44513,9 +44513,14 @@ var src_install = function install(Vue) {
|
|
|
44513
44513
|
clearAllNotification: function clearAllNotification() {
|
|
44514
44514
|
this.jsBridgeCallNativeMethod('clearAllNotification', null);
|
|
44515
44515
|
},
|
|
44516
|
+
//通知APP已初始化完成
|
|
44516
44517
|
showWebComplete: function showWebComplete() {
|
|
44517
44518
|
this.jsBridgeCallNativeMethod('showWebComplete', null);
|
|
44518
44519
|
},
|
|
44520
|
+
//自动旋转屏幕
|
|
44521
|
+
switchOrientation: function switchOrientation(data) {
|
|
44522
|
+
this.jsBridgeCallNativeMethod('switchOrientation', data);
|
|
44523
|
+
},
|
|
44519
44524
|
// jsBridgeCallNativeMethod: window.flutter_inappwebview ? jsBridgeCallNativeMethod_9 : jsBridgeCallNativeMethod_8
|
|
44520
44525
|
jsBridgeCallNativeMethod: window.flutter_inappwebview ? jsBridgeCallNativeMethod_9 : navigator.userAgent && navigator.userAgent.indexOf('Harmony') > -1 ? jsBridgeCallNativeMethod_harmony : jsBridgeCallNativeMethod_8
|
|
44521
44526
|
}
|