ztxkui 3.9.8 → 3.9.9
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.
|
@@ -232,6 +232,11 @@ var Sinatures = function (_a) {
|
|
|
232
232
|
fileList.filter(function (item) { return item.isElectronicSeal; }).length > 0) {
|
|
233
233
|
setCheckSealVisible(true);
|
|
234
234
|
}
|
|
235
|
+
// 判断入参fileList中是否有仅需要群杰
|
|
236
|
+
if (Array.isArray(fileList) &&
|
|
237
|
+
fileList.some(function (item) { return item.attachId === '123456789'; })) {
|
|
238
|
+
setIsOnlyQj(true);
|
|
239
|
+
}
|
|
235
240
|
}, [fileList]);
|
|
236
241
|
useEffect(function () {
|
|
237
242
|
if (needQys) {
|