ztxkui 3.4.15 → 3.4.18
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.
|
@@ -38,6 +38,10 @@ export interface IProps {
|
|
|
38
38
|
flowId?: string;
|
|
39
39
|
/** 水印图片 */
|
|
40
40
|
imgWaterBg?: string;
|
|
41
|
+
/** 点击打印的回调函数 */
|
|
42
|
+
onPrintCallback?: () => void;
|
|
43
|
+
/** 是否添加点击打印提示 */
|
|
44
|
+
showPrintMessage?: boolean;
|
|
41
45
|
}
|
|
42
46
|
declare const PrintContainer: React.FC<IProps>;
|
|
43
47
|
export default PrintContainer;
|
|
@@ -46,7 +46,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from) {
|
|
|
46
46
|
import React, { useEffect, useRef, useState } from 'react';
|
|
47
47
|
// redux
|
|
48
48
|
// ztxkui公共组件
|
|
49
|
-
import { Button, Spin, message } from '../../index';
|
|
49
|
+
import { Button, Spin, message, Modal } from '../../index';
|
|
50
50
|
// 路由配置
|
|
51
51
|
// store
|
|
52
52
|
// 自定义组件
|
|
@@ -75,7 +75,7 @@ function downloadFontTTF(_a) {
|
|
|
75
75
|
});
|
|
76
76
|
}
|
|
77
77
|
var PrintContainer = function (_a) {
|
|
78
|
-
var children = _a.children, waterText = _a.waterText, onFonsizeChange = _a.onFonsizeChange, hiddenClassName = _a.hiddenClassName, _b = _a.isAddExportPage, isAddExportPage = _b === void 0 ? false : _b, _c = _a.loading, loading = _c === void 0 ? false : _c, _d = _a.pdfName, pdfName = _d === void 0 ? 'pdf文件' : _d, request = _a.request, sealIdList = _a.sealIdList, autoSealIdList = _a.autoSealIdList, keywordList = _a.keywordList, _e = _a.showHandSeal, showHandSeal = _e === void 0 ? true : _e, _f = _a.showAutoSeal, showAutoSeal = _f === void 0 ? true : _f, _g = _a.needWatermark, needWatermark = _g === void 0 ? 0 : _g, fileId = _a.fileId, deptId = _a.deptId, flowId = _a.flowId, imgWaterBg = _a.imgWaterBg;
|
|
78
|
+
var children = _a.children, waterText = _a.waterText, onFonsizeChange = _a.onFonsizeChange, hiddenClassName = _a.hiddenClassName, _b = _a.isAddExportPage, isAddExportPage = _b === void 0 ? false : _b, _c = _a.loading, loading = _c === void 0 ? false : _c, _d = _a.pdfName, pdfName = _d === void 0 ? 'pdf文件' : _d, request = _a.request, sealIdList = _a.sealIdList, autoSealIdList = _a.autoSealIdList, keywordList = _a.keywordList, _e = _a.showHandSeal, showHandSeal = _e === void 0 ? true : _e, _f = _a.showAutoSeal, showAutoSeal = _f === void 0 ? true : _f, _g = _a.needWatermark, needWatermark = _g === void 0 ? 0 : _g, fileId = _a.fileId, deptId = _a.deptId, flowId = _a.flowId, imgWaterBg = _a.imgWaterBg, onPrintCallback = _a.onPrintCallback, showPrintMessage = _a.showPrintMessage;
|
|
79
79
|
var _h = useState(false), showWater = _h[0], setShowWater = _h[1];
|
|
80
80
|
var containerRef = useRef();
|
|
81
81
|
var allDomRef = useRef();
|
|
@@ -231,11 +231,37 @@ var PrintContainer = function (_a) {
|
|
|
231
231
|
};
|
|
232
232
|
// 打印
|
|
233
233
|
var onPrintHandle = function () {
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
234
|
+
if (showPrintMessage) {
|
|
235
|
+
var isOkSure_1 = false;
|
|
236
|
+
Modal.confirm({
|
|
237
|
+
title: '打印提示',
|
|
238
|
+
content: '点击确认按钮后,将作为一次成功的打印,并记录到系统!你确认要打印吗?',
|
|
239
|
+
okText: '确认',
|
|
240
|
+
onOk: function () {
|
|
241
|
+
isOkSure_1 = true;
|
|
242
|
+
onPrintCallback && onPrintCallback();
|
|
243
|
+
},
|
|
244
|
+
afterClose: function () {
|
|
245
|
+
if (isOkSure_1) {
|
|
246
|
+
setTimeout(function () {
|
|
247
|
+
printCurrentDom({
|
|
248
|
+
hiddenClassNames: __spreadArray([
|
|
249
|
+
'.print-container--header'
|
|
250
|
+
], (hiddenClassName || [])),
|
|
251
|
+
});
|
|
252
|
+
});
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
});
|
|
256
|
+
}
|
|
257
|
+
else {
|
|
258
|
+
onPrintCallback && onPrintCallback();
|
|
259
|
+
printCurrentDom({
|
|
260
|
+
hiddenClassNames: __spreadArray([
|
|
261
|
+
'.print-container--header'
|
|
262
|
+
], (hiddenClassName || [])),
|
|
263
|
+
});
|
|
264
|
+
}
|
|
239
265
|
};
|
|
240
266
|
// 生成pdf
|
|
241
267
|
var onPdfHandle = function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
@@ -143,9 +143,13 @@ var UploadTable = function (_a) {
|
|
|
143
143
|
? true
|
|
144
144
|
: false;
|
|
145
145
|
return (React.createElement(React.Fragment, null,
|
|
146
|
-
(typeof operationAuth === 'string'
|
|
146
|
+
((typeof operationAuth === 'string'
|
|
147
147
|
? authDownloadBtn
|
|
148
|
-
: showDownloadBtn)
|
|
148
|
+
: showDownloadBtn) ||
|
|
149
|
+
((typeof operationAuth === 'string'
|
|
150
|
+
? authPreviewBtn
|
|
151
|
+
: showPreviewBtn) &&
|
|
152
|
+
(record === null || record === void 0 ? void 0 : record.fileSize) >= 10 * 1024 * 1024)) && (React.createElement(Button, { type: "link", style: {
|
|
149
153
|
height: 28,
|
|
150
154
|
}, onClick: function () {
|
|
151
155
|
if (isPublic) {
|
|
@@ -231,8 +235,28 @@ var UploadTable = function (_a) {
|
|
|
231
235
|
ellipsis: false,
|
|
232
236
|
fixed: 'right',
|
|
233
237
|
render: function (text, record, index) {
|
|
238
|
+
var operationAuth = record === null || record === void 0 ? void 0 : record.operationAuth;
|
|
239
|
+
// '1' 预览 '2' 下载 '3' 删除
|
|
240
|
+
var authDownloadBtn = typeof operationAuth === 'string' &&
|
|
241
|
+
operationAuth.indexOf('2') !== -1
|
|
242
|
+
? true
|
|
243
|
+
: false;
|
|
244
|
+
var authPreviewBtn = typeof operationAuth === 'string' &&
|
|
245
|
+
operationAuth.indexOf('1') !== -1
|
|
246
|
+
? true
|
|
247
|
+
: false;
|
|
248
|
+
var authDeleteBtn = typeof operationAuth === 'string' &&
|
|
249
|
+
operationAuth.indexOf('3') !== -1
|
|
250
|
+
? true
|
|
251
|
+
: false;
|
|
234
252
|
return (React.createElement(React.Fragment, null,
|
|
235
|
-
|
|
253
|
+
((typeof operationAuth === 'string'
|
|
254
|
+
? authDownloadBtn
|
|
255
|
+
: showDownloadBtn) ||
|
|
256
|
+
((typeof operationAuth === 'string'
|
|
257
|
+
? authPreviewBtn
|
|
258
|
+
: showPreviewBtn) &&
|
|
259
|
+
(record === null || record === void 0 ? void 0 : record.fileSize) >= 10 * 1024 * 1024)) && (React.createElement(Button, { type: "link", style: {
|
|
236
260
|
height: 28,
|
|
237
261
|
}, onClick: function () {
|
|
238
262
|
if (isPublic) {
|
|
@@ -254,7 +278,9 @@ var UploadTable = function (_a) {
|
|
|
254
278
|
});
|
|
255
279
|
}
|
|
256
280
|
} }, "\u4E0B\u8F7D")),
|
|
257
|
-
|
|
281
|
+
(typeof operationAuth === 'string'
|
|
282
|
+
? authPreviewBtn
|
|
283
|
+
: showPreviewBtn) && (React.createElement(Button, { type: "link", style: {
|
|
258
284
|
height: 28,
|
|
259
285
|
}, onClick: function () {
|
|
260
286
|
if ((record === null || record === void 0 ? void 0 : record.fileSize) >= 10 * 1024 * 1024) {
|
|
@@ -269,7 +295,9 @@ var UploadTable = function (_a) {
|
|
|
269
295
|
onPreviewCallbackBefore(record);
|
|
270
296
|
}
|
|
271
297
|
} }, "\u9884\u89C8")),
|
|
272
|
-
|
|
298
|
+
(typeof operationAuth === 'string'
|
|
299
|
+
? authDeleteBtn
|
|
300
|
+
: showDeleteBtn) && (React.createElement(Popconfirm, { title: "\u662F\u5426\u5220\u9664\u8BE5\u6761\u6570\u636E?", cancelText: "\u5426", okText: "\u662F", onConfirm: function () { return onDeleteFile(record, index); } },
|
|
273
301
|
React.createElement(Button, { style: {
|
|
274
302
|
height: 28,
|
|
275
303
|
}, type: "link" }, "\u5220\u9664")))));
|
|
@@ -581,10 +581,11 @@ var Sinatures = function (_a) {
|
|
|
581
581
|
},
|
|
582
582
|
/** 签章组件相关校验 */
|
|
583
583
|
validateSealFn: function () {
|
|
584
|
-
var _a
|
|
584
|
+
var _a;
|
|
585
585
|
// 确认盖章后 勾选的信息有更改
|
|
586
586
|
if (needQys &&
|
|
587
|
-
(
|
|
587
|
+
(prevParam === null || prevParam === void 0 ? void 0 : prevParam.sealIdList) &&
|
|
588
|
+
(prevParam === null || prevParam === void 0 ? void 0 : prevParam.sealIdList.length) !== (innerElectronicSeal === null || innerElectronicSeal === void 0 ? void 0 : innerElectronicSeal.length) &&
|
|
588
589
|
!isSure) {
|
|
589
590
|
Modal.confirm({
|
|
590
591
|
title: '当前所勾选的电子印章信息与上一次盖章时有差异,请确认是否继续?',
|
|
@@ -624,7 +625,7 @@ var Sinatures = function (_a) {
|
|
|
624
625
|
return false;
|
|
625
626
|
}
|
|
626
627
|
// 勾选的群杰印章 没有填用印次数
|
|
627
|
-
if (((
|
|
628
|
+
if (((_a = innerQunjSeal === null || innerQunjSeal === void 0 ? void 0 : innerQunjSeal.details) === null || _a === void 0 ? void 0 : _a.length) > 0) {
|
|
628
629
|
innerQunjSeal.details.forEach(function (item) {
|
|
629
630
|
if (!item.sealCount) {
|
|
630
631
|
message.warning("\u8BF7\u586B\u5199" + item.sealName + " \u7684\u7528\u5370\u6B21\u6570\uFF01");
|