ecinc-cloud-mappaio 9.7.14 → 9.7.15
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 +14 -3
- package/lib/ecmappaio.umd.js +14 -3
- package/lib/ecmappaio.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/ecmappaio.common.js
CHANGED
|
@@ -18608,7 +18608,8 @@ module.exports = {
|
|
|
18608
18608
|
writReviewComments: 'Please fill in review comments',
|
|
18609
18609
|
noWritReview: 'Your reading record does not exist; you cannot fill in review comments.',
|
|
18610
18610
|
success: 'Processed successfully',
|
|
18611
|
-
failed: 'Processing failed'
|
|
18611
|
+
failed: 'Processing failed',
|
|
18612
|
+
notSupportMobile: 'This file does not support processing on mobile devices.'
|
|
18612
18613
|
}
|
|
18613
18614
|
}
|
|
18614
18615
|
};
|
|
@@ -18845,7 +18846,8 @@ module.exports = {
|
|
|
18845
18846
|
noWritReview: '您的阅文记录不存在,不能填写批阅意见',
|
|
18846
18847
|
submitToNet: '您是否确认提交下一环节?',
|
|
18847
18848
|
success: '处理成功',
|
|
18848
|
-
failed: '处理失败'
|
|
18849
|
+
failed: '处理失败',
|
|
18850
|
+
notSupportMobile: '此文件不支持在手机端办理。'
|
|
18849
18851
|
}
|
|
18850
18852
|
}
|
|
18851
18853
|
};
|
|
@@ -18881,7 +18883,7 @@ var spark_md5_default = /*#__PURE__*/__webpack_require__.n(spark_md5);
|
|
|
18881
18883
|
|
|
18882
18884
|
|
|
18883
18885
|
// ========== 配置 ==========
|
|
18884
|
-
var DEFAULT_CHUNK_SIZE =
|
|
18886
|
+
var DEFAULT_CHUNK_SIZE = 3; // 默认分片大小(MB)
|
|
18885
18887
|
var MAX_RETRY = 3; // 单分片最大重试次数
|
|
18886
18888
|
var RETRY_DELAYS = [1000, 2000, 4000]; // 指数退避延迟(ms)
|
|
18887
18889
|
var STORAGE_PREFIX = 'chunk_upload_'; // localStorage key 前缀
|
|
@@ -19455,6 +19457,15 @@ var install = function install(Vue) {
|
|
|
19455
19457
|
}
|
|
19456
19458
|
});
|
|
19457
19459
|
}
|
|
19460
|
+
if (window.vType === 'mapp' && $scope.curTN.h5TodoDisabled === 1) {
|
|
19461
|
+
$scope.$notify({
|
|
19462
|
+
title: '提示',
|
|
19463
|
+
message: $scope.$tx('ecmapp.wflowform.notSupportMobile'),
|
|
19464
|
+
offset: 60,
|
|
19465
|
+
duration: 10 * 1000,
|
|
19466
|
+
type: 'warning'
|
|
19467
|
+
});
|
|
19468
|
+
}
|
|
19458
19469
|
|
|
19459
19470
|
// 更新vo.flContent中<img>元素的src
|
|
19460
19471
|
if ($scope.vo.flContent !== undefined && $scope.vo.flContent != null && $scope.vo.flContent.indexOf('/workflow/wfBusiAttach/downloadById') !== -1) {
|
package/lib/ecmappaio.umd.js
CHANGED
|
@@ -18618,7 +18618,8 @@ module.exports = {
|
|
|
18618
18618
|
writReviewComments: 'Please fill in review comments',
|
|
18619
18619
|
noWritReview: 'Your reading record does not exist; you cannot fill in review comments.',
|
|
18620
18620
|
success: 'Processed successfully',
|
|
18621
|
-
failed: 'Processing failed'
|
|
18621
|
+
failed: 'Processing failed',
|
|
18622
|
+
notSupportMobile: 'This file does not support processing on mobile devices.'
|
|
18622
18623
|
}
|
|
18623
18624
|
}
|
|
18624
18625
|
};
|
|
@@ -18855,7 +18856,8 @@ module.exports = {
|
|
|
18855
18856
|
noWritReview: '您的阅文记录不存在,不能填写批阅意见',
|
|
18856
18857
|
submitToNet: '您是否确认提交下一环节?',
|
|
18857
18858
|
success: '处理成功',
|
|
18858
|
-
failed: '处理失败'
|
|
18859
|
+
failed: '处理失败',
|
|
18860
|
+
notSupportMobile: '此文件不支持在手机端办理。'
|
|
18859
18861
|
}
|
|
18860
18862
|
}
|
|
18861
18863
|
};
|
|
@@ -18891,7 +18893,7 @@ var spark_md5_default = /*#__PURE__*/__webpack_require__.n(spark_md5);
|
|
|
18891
18893
|
|
|
18892
18894
|
|
|
18893
18895
|
// ========== 配置 ==========
|
|
18894
|
-
var DEFAULT_CHUNK_SIZE =
|
|
18896
|
+
var DEFAULT_CHUNK_SIZE = 3; // 默认分片大小(MB)
|
|
18895
18897
|
var MAX_RETRY = 3; // 单分片最大重试次数
|
|
18896
18898
|
var RETRY_DELAYS = [1000, 2000, 4000]; // 指数退避延迟(ms)
|
|
18897
18899
|
var STORAGE_PREFIX = 'chunk_upload_'; // localStorage key 前缀
|
|
@@ -19465,6 +19467,15 @@ var install = function install(Vue) {
|
|
|
19465
19467
|
}
|
|
19466
19468
|
});
|
|
19467
19469
|
}
|
|
19470
|
+
if (window.vType === 'mapp' && $scope.curTN.h5TodoDisabled === 1) {
|
|
19471
|
+
$scope.$notify({
|
|
19472
|
+
title: '提示',
|
|
19473
|
+
message: $scope.$tx('ecmapp.wflowform.notSupportMobile'),
|
|
19474
|
+
offset: 60,
|
|
19475
|
+
duration: 10 * 1000,
|
|
19476
|
+
type: 'warning'
|
|
19477
|
+
});
|
|
19478
|
+
}
|
|
19468
19479
|
|
|
19469
19480
|
// 更新vo.flContent中<img>元素的src
|
|
19470
19481
|
if ($scope.vo.flContent !== undefined && $scope.vo.flContent != null && $scope.vo.flContent.indexOf('/workflow/wfBusiAttach/downloadById') !== -1) {
|