ztxkui 3.3.14 → 3.3.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.
|
@@ -430,9 +430,9 @@ var Sinatures = function (_a) {
|
|
|
430
430
|
validateSealFn: function () {
|
|
431
431
|
var _a;
|
|
432
432
|
// 是否有勾选加盖电子印章
|
|
433
|
-
var hasElectronicSeal = records.some(function (item) { return !!item.isElectronicSeal; });
|
|
433
|
+
var hasElectronicSeal = records === null || records === void 0 ? void 0 : records.some(function (item) { return !!item.isElectronicSeal; });
|
|
434
434
|
// 勾选加盖电子印章时未勾选电子印章
|
|
435
|
-
if (innerElectronicSeal.length === 0 && hasElectronicSeal) {
|
|
435
|
+
if ((innerElectronicSeal === null || innerElectronicSeal === void 0 ? void 0 : innerElectronicSeal.length) === 0 && hasElectronicSeal) {
|
|
436
436
|
message.warning('请勾选加盖电子印章所需要的印章列表[表格右侧]!');
|
|
437
437
|
return false;
|
|
438
438
|
}
|
|
@@ -446,7 +446,7 @@ var Sinatures = function (_a) {
|
|
|
446
446
|
message.warning('请点击确认盖章按钮,确认盖章位置后方可提交!');
|
|
447
447
|
return false;
|
|
448
448
|
}
|
|
449
|
-
if (innerQunjSeal.needQj) {
|
|
449
|
+
if (innerQunjSeal === null || innerQunjSeal === void 0 ? void 0 : innerQunjSeal.needQj) {
|
|
450
450
|
// 合同份数为空
|
|
451
451
|
if (!(innerQunjSeal === null || innerQunjSeal === void 0 ? void 0 : innerQunjSeal.contranctNum) && showContranctNum) {
|
|
452
452
|
message.warning('请填写合同份数!');
|