cnhis-design-vue 3.3.3-release.12 → 3.3.3-release.13

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.
Files changed (89) hide show
  1. package/README.md +87 -87
  2. package/es/components/button-print/index.d.ts +60 -0
  3. package/es/components/button-print/src/ButtonPrint.vue.d.ts +60 -0
  4. package/es/components/button-print/src/ButtonPrint.vue2.js +6 -0
  5. package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +18 -0
  6. package/es/components/button-print/src/components/NewPrintComponent.vue2.js +8 -0
  7. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +18 -0
  8. package/es/components/button-print/src/components/OldPrintComponent.vue2.js +8 -0
  9. package/es/components/button-print/src/utils/print.d.ts +4 -2
  10. package/es/components/button-print/src/utils/print.js +165 -4
  11. package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
  12. package/es/components/field-set/src/FieldColor.vue.d.ts +4 -4
  13. package/es/components/field-set/src/FieldFilter.vue.d.ts +4 -4
  14. package/es/components/field-set/src/FieldSet.vue.d.ts +5 -5
  15. package/es/components/field-set/src/components/table-row.vue.d.ts +4 -4
  16. package/es/components/field-set/src/types/index.d.ts +1 -1
  17. package/es/components/form-render/src/components/renderer/radio_checkbox.js +2 -1
  18. package/es/components/iho-chat/index.d.ts +40 -49
  19. package/es/components/iho-chat/src/Index.vue.d.ts +40 -49
  20. package/es/components/iho-chat/src/components/ChatFooter.vue2.js +6 -2
  21. package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
  22. package/es/components/iho-chat/src/components/ImageLightbox.vue2.js +1 -1
  23. package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +29 -28
  24. package/es/components/iho-chat/src/components/MultipleVideo.vue2.js +240 -93
  25. package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
  26. package/es/components/iho-chat/src/components/Video.vue.d.ts +14 -24
  27. package/es/components/iho-chat/src/components/Video.vue2.js +35 -40
  28. package/es/components/iho-chat/src/hooks/useVideo.d.ts +54 -10
  29. package/es/components/iho-chat/src/hooks/useVideo.js +422 -44
  30. package/es/components/iho-chat/src/utils/index.d.ts +1 -0
  31. package/es/components/iho-chat/src/utils/index.js +7 -1
  32. package/es/components/iho-chat/style/index.css +1 -1
  33. package/es/components/index.css +1 -1
  34. package/es/components/index.d.ts +2 -0
  35. package/es/components/index.js +1 -0
  36. package/es/components/keyboard/index.d.ts +8 -0
  37. package/es/components/keyboard/src/Keyboard.vue.d.ts +8 -0
  38. package/es/components/keyboard/src/Keyboard.vue2.js +33 -9
  39. package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +3 -0
  40. package/es/components/keyboard/src/components/NumberPanel.vue2.js +27 -7
  41. package/es/components/keyboard/src/types.d.ts +17 -0
  42. package/es/components/keyboard/src/types.js +1 -0
  43. package/es/components/scale-view/index.d.ts +13 -0
  44. package/es/components/scale-view/src/ScaleView.vue.d.ts +13 -0
  45. package/es/components/scale-view/src/hooks/scaleview-computed.js +2 -1
  46. package/es/components/scale-view/src/hooks/scaleview-props.d.ts +4 -0
  47. package/es/components/scale-view/src/hooks/scaleview-props.js +4 -0
  48. package/es/components/table-filter/src/components/render-widget/helpers/dateExtraMap.js +32 -4
  49. package/es/components/table-filter/src/tool/baseOptions.js +8 -1
  50. package/es/components/vertify/index.d.ts +1 -0
  51. package/es/components/vertify/index.js +1 -0
  52. package/es/components/vertify/src/components/IdentityVerification.vue.d.ts +89 -0
  53. package/es/components/vertify/src/components/IdentityVerification.vue.js +6 -0
  54. package/es/components/vertify/src/components/IdentityVerification.vue2.js +256 -0
  55. package/es/components/vertify/src/utils/dialog.d.ts +7 -0
  56. package/es/components/vertify/src/utils/dialog.js +73 -0
  57. package/es/components/vertify/src/utils/index.d.ts +11 -0
  58. package/es/components/vertify/src/utils/index.js +24 -0
  59. package/es/components/vod-chunk-upload/index.d.ts +13 -0
  60. package/es/components/vod-chunk-upload/src/chunk-upload-new.vue.d.ts +19 -2
  61. package/es/components/vod-chunk-upload/src/chunk-upload-new.vue2.js +104 -75
  62. package/es/components/vod-chunk-upload/src/hooks/upload-computed.d.ts +1 -0
  63. package/es/components/vod-chunk-upload/src/hooks/upload-computed.js +20 -3
  64. package/es/components/vod-chunk-upload/src/hooks/upload-data.d.ts +4 -0
  65. package/es/components/vod-chunk-upload/src/hooks/upload-data.js +6 -2
  66. package/es/components/vod-chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +13 -0
  67. package/es/components/vod-chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue2.js +6 -1
  68. package/es/components/vod-chunk-upload/style/index.css +1 -1
  69. package/es/env.d.ts +25 -25
  70. package/es/shared/assets/img/defaultCover/10review_successful.png.js +1 -1
  71. package/es/shared/assets/img/defaultCover/11review_fail.png.js +1 -1
  72. package/es/shared/assets/img/defaultCover/12no_setting.png.js +1 -1
  73. package/es/shared/assets/img/defaultCover/13no_menu_setting.png.js +1 -1
  74. package/es/shared/assets/img/defaultCover/14no_call_setting.png.js +1 -1
  75. package/es/shared/assets/img/defaultCover/15no_use_tag.png.js +1 -1
  76. package/es/shared/assets/img/defaultCover/16no_table_data.png.js +1 -1
  77. package/es/shared/assets/img/defaultCover/1location.png.js +1 -1
  78. package/es/shared/assets/img/defaultCover/2notfound.png.js +1 -1
  79. package/es/shared/assets/img/defaultCover/3loading.png.js +1 -1
  80. package/es/shared/assets/img/defaultCover/4no_permission.png.js +1 -1
  81. package/es/shared/assets/img/defaultCover/5no_data.png.js +1 -1
  82. package/es/shared/assets/img/defaultCover/6no_network.png.js +1 -1
  83. package/es/shared/assets/img/defaultCover/7no_doctor.png.js +1 -1
  84. package/es/shared/assets/img/defaultCover/8system_error.png.js +1 -1
  85. package/es/shared/assets/img/defaultCover/9system_upgrade.png.js +1 -1
  86. package/es/shared/components/InputNumberSlash/InputNumberSlash.js +1 -1
  87. package/es/shared/package.json.js +1 -1
  88. package/es/shared/utils/fabricjs/index.js +1 -1
  89. package/package.json +2 -2
package/README.md CHANGED
@@ -1,87 +1,87 @@
1
- # 安装
2
-
3
- ```shell
4
- npm i cnhis-design-vue@[版本号]
5
- # or
6
- yarn add cnhis-design-vue@[版本号] #推荐
7
- ```
8
-
9
- ## 1.全局引入
10
-
11
- ```typescript
12
- // main.ts
13
- import { createApp } from 'vue';
14
- import App from './App.vue';
15
- import 'cnhis-design-vue/es/packages/index.css';
16
- import cui from 'cnhis-design-vue';
17
-
18
- const app = createApp(App);
19
- app.use(cui).mount('#app');
20
- ```
21
-
22
- ## 2. 按需引入
23
-
24
- 组件现在支持了自动按需引入, 但是样式文件需要额外的处理
25
-
26
- ### 2.1 样式处理方式1 (按需引入样式)
27
-
28
- ```shell
29
- # 安装自动导入样式的插件
30
- npm i -d vite-plugin-style-import
31
- ```
32
-
33
- ```typescript
34
- // vite.config.ts
35
- import { defineConfig } from 'vite';
36
- import { createStyleImportPlugin } from 'vite-plugin-style-import';
37
-
38
- export default defineConfig({
39
- plugins: [
40
- // ...otherPlugins
41
- createStyleImportPlugin({
42
- libs: [
43
- {
44
- libraryName: 'cnhis-design-vue',
45
- esModule: true,
46
- ensureStyleFile: true,
47
- resolveStyle: name => {
48
- return `cnhis-design-vue/es/components/${ name.slice(2) }/style/index.css`;
49
- }
50
- }
51
- ]
52
- })
53
- ]
54
- });
55
- ```
56
-
57
- ### 2.2 样式处理方式2 (全局引入样式)
58
-
59
- ```typescript
60
- // main.ts
61
- import 'cnhis-design-vue/es/components/index.css';
62
- ```
63
-
64
- ## 3.FAQ
65
-
66
- ### 3.1 项目打包后样式丢失
67
-
68
- 处理方法, 将 cnhis-design-vue 从 vendor 包中移除 (没有出现此问题则不需要)
69
-
70
- ```typescript
71
- // vite.config.ts
72
- import { defineConfig } from 'vite';
73
-
74
- export default defineConfig({
75
- build: {
76
- rollupOptions: {
77
- // ..otherOptions
78
- output: {
79
- dir: './dist',
80
- manualChunks: {
81
- 'cnhis-vendor': ['cnhis-design-vue']
82
- }
83
- }
84
- }
85
- }
86
- });
87
- ```
1
+ # 安装
2
+
3
+ ```shell
4
+ npm i cnhis-design-vue@[版本号]
5
+ # or
6
+ yarn add cnhis-design-vue@[版本号] #推荐
7
+ ```
8
+
9
+ ## 1.全局引入
10
+
11
+ ```typescript
12
+ // main.ts
13
+ import { createApp } from 'vue';
14
+ import App from './App.vue';
15
+ import 'cnhis-design-vue/es/packages/index.css';
16
+ import cui from 'cnhis-design-vue';
17
+
18
+ const app = createApp(App);
19
+ app.use(cui).mount('#app');
20
+ ```
21
+
22
+ ## 2. 按需引入
23
+
24
+ 组件现在支持了自动按需引入, 但是样式文件需要额外的处理
25
+
26
+ ### 2.1 样式处理方式1 (按需引入样式)
27
+
28
+ ```shell
29
+ # 安装自动导入样式的插件
30
+ npm i -d vite-plugin-style-import
31
+ ```
32
+
33
+ ```typescript
34
+ // vite.config.ts
35
+ import { defineConfig } from 'vite';
36
+ import { createStyleImportPlugin } from 'vite-plugin-style-import';
37
+
38
+ export default defineConfig({
39
+ plugins: [
40
+ // ...otherPlugins
41
+ createStyleImportPlugin({
42
+ libs: [
43
+ {
44
+ libraryName: 'cnhis-design-vue',
45
+ esModule: true,
46
+ ensureStyleFile: true,
47
+ resolveStyle: name => {
48
+ return `cnhis-design-vue/es/components/${ name.slice(2) }/style/index.css`;
49
+ }
50
+ }
51
+ ]
52
+ })
53
+ ]
54
+ });
55
+ ```
56
+
57
+ ### 2.2 样式处理方式2 (全局引入样式)
58
+
59
+ ```typescript
60
+ // main.ts
61
+ import 'cnhis-design-vue/es/components/index.css';
62
+ ```
63
+
64
+ ## 3.FAQ
65
+
66
+ ### 3.1 项目打包后样式丢失
67
+
68
+ 处理方法, 将 cnhis-design-vue 从 vendor 包中移除 (没有出现此问题则不需要)
69
+
70
+ ```typescript
71
+ // vite.config.ts
72
+ import { defineConfig } from 'vite';
73
+
74
+ export default defineConfig({
75
+ build: {
76
+ rollupOptions: {
77
+ // ..otherOptions
78
+ output: {
79
+ dir: './dist',
80
+ manualChunks: {
81
+ 'cnhis-vendor': ['cnhis-design-vue']
82
+ }
83
+ }
84
+ }
85
+ }
86
+ });
87
+ ```
@@ -111,6 +111,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
111
111
  svrUpdateIp: {
112
112
  type: StringConstructor;
113
113
  };
114
+ apptype: {
115
+ type: StringConstructor;
116
+ };
117
+ uuid: {
118
+ type: StringConstructor;
119
+ };
114
120
  hidePreviewBtns: {
115
121
  type: StringConstructor;
116
122
  };
@@ -228,6 +234,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
228
234
  svrUpdateIp: {
229
235
  type: StringConstructor;
230
236
  };
237
+ apptype: {
238
+ type: StringConstructor;
239
+ };
240
+ uuid: {
241
+ type: StringConstructor;
242
+ };
231
243
  hidePreviewBtns: {
232
244
  type: StringConstructor;
233
245
  };
@@ -346,6 +358,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
346
358
  svrUpdateIp: {
347
359
  type: StringConstructor;
348
360
  };
361
+ apptype: {
362
+ type: StringConstructor;
363
+ };
364
+ uuid: {
365
+ type: StringConstructor;
366
+ };
349
367
  hidePreviewBtns: {
350
368
  type: StringConstructor;
351
369
  };
@@ -466,6 +484,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
466
484
  svrUpdateIp: {
467
485
  type: StringConstructor;
468
486
  };
487
+ apptype: {
488
+ type: StringConstructor;
489
+ };
490
+ uuid: {
491
+ type: StringConstructor;
492
+ };
469
493
  hidePreviewBtns: {
470
494
  type: StringConstructor;
471
495
  };
@@ -848,6 +872,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
848
872
  svrUpdateIp: {
849
873
  type: StringConstructor;
850
874
  };
875
+ apptype: {
876
+ type: StringConstructor;
877
+ };
878
+ uuid: {
879
+ type: StringConstructor;
880
+ };
851
881
  hidePreviewBtns: {
852
882
  type: StringConstructor;
853
883
  };
@@ -978,6 +1008,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
978
1008
  svrUpdateIp: {
979
1009
  type: StringConstructor;
980
1010
  };
1011
+ apptype: {
1012
+ type: StringConstructor;
1013
+ };
1014
+ uuid: {
1015
+ type: StringConstructor;
1016
+ };
981
1017
  hidePreviewBtns: {
982
1018
  type: StringConstructor;
983
1019
  };
@@ -1095,6 +1131,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
1095
1131
  svrUpdateIp: {
1096
1132
  type: StringConstructor;
1097
1133
  };
1134
+ apptype: {
1135
+ type: StringConstructor;
1136
+ };
1137
+ uuid: {
1138
+ type: StringConstructor;
1139
+ };
1098
1140
  hidePreviewBtns: {
1099
1141
  type: StringConstructor;
1100
1142
  };
@@ -1444,6 +1486,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
1444
1486
  svrUpdateIp: {
1445
1487
  type: StringConstructor;
1446
1488
  };
1489
+ apptype: {
1490
+ type: StringConstructor;
1491
+ };
1492
+ uuid: {
1493
+ type: StringConstructor;
1494
+ };
1447
1495
  hidePreviewBtns: {
1448
1496
  type: StringConstructor;
1449
1497
  };
@@ -1582,6 +1630,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
1582
1630
  svrUpdateIp: {
1583
1631
  type: StringConstructor;
1584
1632
  };
1633
+ apptype: {
1634
+ type: StringConstructor;
1635
+ };
1636
+ uuid: {
1637
+ type: StringConstructor;
1638
+ };
1585
1639
  hidePreviewBtns: {
1586
1640
  type: StringConstructor;
1587
1641
  };
@@ -1708,6 +1762,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
1708
1762
  svrUpdateIp: {
1709
1763
  type: StringConstructor;
1710
1764
  };
1765
+ apptype: {
1766
+ type: StringConstructor;
1767
+ };
1768
+ uuid: {
1769
+ type: StringConstructor;
1770
+ };
1711
1771
  hidePreviewBtns: {
1712
1772
  type: StringConstructor;
1713
1773
  };
@@ -114,6 +114,12 @@ declare const _default: import("vue").DefineComponent<{
114
114
  svrUpdateIp: {
115
115
  type: StringConstructor;
116
116
  };
117
+ apptype: {
118
+ type: StringConstructor;
119
+ };
120
+ uuid: {
121
+ type: StringConstructor;
122
+ };
117
123
  hidePreviewBtns: {
118
124
  type: StringConstructor;
119
125
  };
@@ -234,6 +240,12 @@ declare const _default: import("vue").DefineComponent<{
234
240
  svrUpdateIp: {
235
241
  type: StringConstructor;
236
242
  };
243
+ apptype: {
244
+ type: StringConstructor;
245
+ };
246
+ uuid: {
247
+ type: StringConstructor;
248
+ };
237
249
  hidePreviewBtns: {
238
250
  type: StringConstructor;
239
251
  };
@@ -352,6 +364,12 @@ declare const _default: import("vue").DefineComponent<{
352
364
  svrUpdateIp: {
353
365
  type: StringConstructor;
354
366
  };
367
+ apptype: {
368
+ type: StringConstructor;
369
+ };
370
+ uuid: {
371
+ type: StringConstructor;
372
+ };
355
373
  hidePreviewBtns: {
356
374
  type: StringConstructor;
357
375
  };
@@ -472,6 +490,12 @@ declare const _default: import("vue").DefineComponent<{
472
490
  svrUpdateIp: {
473
491
  type: StringConstructor;
474
492
  };
493
+ apptype: {
494
+ type: StringConstructor;
495
+ };
496
+ uuid: {
497
+ type: StringConstructor;
498
+ };
475
499
  hidePreviewBtns: {
476
500
  type: StringConstructor;
477
501
  };
@@ -854,6 +878,12 @@ declare const _default: import("vue").DefineComponent<{
854
878
  svrUpdateIp: {
855
879
  type: StringConstructor;
856
880
  };
881
+ apptype: {
882
+ type: StringConstructor;
883
+ };
884
+ uuid: {
885
+ type: StringConstructor;
886
+ };
857
887
  hidePreviewBtns: {
858
888
  type: StringConstructor;
859
889
  };
@@ -984,6 +1014,12 @@ declare const _default: import("vue").DefineComponent<{
984
1014
  svrUpdateIp: {
985
1015
  type: StringConstructor;
986
1016
  };
1017
+ apptype: {
1018
+ type: StringConstructor;
1019
+ };
1020
+ uuid: {
1021
+ type: StringConstructor;
1022
+ };
987
1023
  hidePreviewBtns: {
988
1024
  type: StringConstructor;
989
1025
  };
@@ -1101,6 +1137,12 @@ declare const _default: import("vue").DefineComponent<{
1101
1137
  svrUpdateIp: {
1102
1138
  type: StringConstructor;
1103
1139
  };
1140
+ apptype: {
1141
+ type: StringConstructor;
1142
+ };
1143
+ uuid: {
1144
+ type: StringConstructor;
1145
+ };
1104
1146
  hidePreviewBtns: {
1105
1147
  type: StringConstructor;
1106
1148
  };
@@ -1450,6 +1492,12 @@ declare const _default: import("vue").DefineComponent<{
1450
1492
  svrUpdateIp: {
1451
1493
  type: StringConstructor;
1452
1494
  };
1495
+ apptype: {
1496
+ type: StringConstructor;
1497
+ };
1498
+ uuid: {
1499
+ type: StringConstructor;
1500
+ };
1453
1501
  hidePreviewBtns: {
1454
1502
  type: StringConstructor;
1455
1503
  };
@@ -1591,6 +1639,12 @@ declare const _default: import("vue").DefineComponent<{
1591
1639
  svrUpdateIp: {
1592
1640
  type: StringConstructor;
1593
1641
  };
1642
+ apptype: {
1643
+ type: StringConstructor;
1644
+ };
1645
+ uuid: {
1646
+ type: StringConstructor;
1647
+ };
1594
1648
  hidePreviewBtns: {
1595
1649
  type: StringConstructor;
1596
1650
  };
@@ -1720,6 +1774,12 @@ declare const _default: import("vue").DefineComponent<{
1720
1774
  svrUpdateIp: {
1721
1775
  type: StringConstructor;
1722
1776
  };
1777
+ apptype: {
1778
+ type: StringConstructor;
1779
+ };
1780
+ uuid: {
1781
+ type: StringConstructor;
1782
+ };
1723
1783
  hidePreviewBtns: {
1724
1784
  type: StringConstructor;
1725
1785
  };
@@ -154,6 +154,12 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
154
154
  svrUpdateIp: {
155
155
  type: String
156
156
  },
157
+ apptype: {
158
+ type: String
159
+ },
160
+ uuid: {
161
+ type: String
162
+ },
157
163
  hidePreviewBtns: {
158
164
  type: String
159
165
  }
@@ -111,6 +111,12 @@ declare const _default: import("vue").DefineComponent<{
111
111
  svrUpdateIp: {
112
112
  type: StringConstructor;
113
113
  };
114
+ apptype: {
115
+ type: StringConstructor;
116
+ };
117
+ uuid: {
118
+ type: StringConstructor;
119
+ };
114
120
  hidePreviewBtns: {
115
121
  type: StringConstructor;
116
122
  };
@@ -234,6 +240,12 @@ declare const _default: import("vue").DefineComponent<{
234
240
  svrUpdateIp: {
235
241
  type: StringConstructor;
236
242
  };
243
+ apptype: {
244
+ type: StringConstructor;
245
+ };
246
+ uuid: {
247
+ type: StringConstructor;
248
+ };
237
249
  hidePreviewBtns: {
238
250
  type: StringConstructor;
239
251
  };
@@ -621,6 +633,12 @@ declare const _default: import("vue").DefineComponent<{
621
633
  svrUpdateIp: {
622
634
  type: StringConstructor;
623
635
  };
636
+ apptype: {
637
+ type: StringConstructor;
638
+ };
639
+ uuid: {
640
+ type: StringConstructor;
641
+ };
624
642
  hidePreviewBtns: {
625
643
  type: StringConstructor;
626
644
  };
@@ -242,6 +242,12 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
242
242
  svrUpdateIp: {
243
243
  type: String
244
244
  },
245
+ apptype: {
246
+ type: String
247
+ },
248
+ uuid: {
249
+ type: String
250
+ },
245
251
  hidePreviewBtns: {
246
252
  type: String
247
253
  }
@@ -696,6 +702,8 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
696
702
  signature: props.signature,
697
703
  copies: props.printCopies,
698
704
  svrUpdateIp: props.svrUpdateIp,
705
+ apptype: props.apptype,
706
+ uuid: props.uuid,
699
707
  formatItem: curFormatIdObj
700
708
  };
701
709
  if (props.strategy === "MULTI") {
@@ -110,6 +110,12 @@ declare const _default: import("vue").DefineComponent<{
110
110
  svrUpdateIp: {
111
111
  type: StringConstructor;
112
112
  };
113
+ apptype: {
114
+ type: StringConstructor;
115
+ };
116
+ uuid: {
117
+ type: StringConstructor;
118
+ };
113
119
  hidePreviewBtns: {
114
120
  type: StringConstructor;
115
121
  };
@@ -230,6 +236,12 @@ declare const _default: import("vue").DefineComponent<{
230
236
  svrUpdateIp: {
231
237
  type: StringConstructor;
232
238
  };
239
+ apptype: {
240
+ type: StringConstructor;
241
+ };
242
+ uuid: {
243
+ type: StringConstructor;
244
+ };
233
245
  hidePreviewBtns: {
234
246
  type: StringConstructor;
235
247
  };
@@ -582,6 +594,12 @@ declare const _default: import("vue").DefineComponent<{
582
594
  svrUpdateIp: {
583
595
  type: StringConstructor;
584
596
  };
597
+ apptype: {
598
+ type: StringConstructor;
599
+ };
600
+ uuid: {
601
+ type: StringConstructor;
602
+ };
585
603
  hidePreviewBtns: {
586
604
  type: StringConstructor;
587
605
  };
@@ -156,6 +156,12 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
156
156
  svrUpdateIp: {
157
157
  type: String
158
158
  },
159
+ apptype: {
160
+ type: String
161
+ },
162
+ uuid: {
163
+ type: String
164
+ },
159
165
  hidePreviewBtns: {
160
166
  type: String
161
167
  }
@@ -358,6 +364,8 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
358
364
  signature: props.signature,
359
365
  copies: props.printCopies,
360
366
  svrUpdateIp: props.svrUpdateIp,
367
+ apptype: props.apptype,
368
+ uuid: props.uuid,
361
369
  formatItem: curFormatIdObj
362
370
  };
363
371
  if (props.strategy === "MULTI") {
@@ -20,10 +20,12 @@ export declare class Print {
20
20
  private _successCallbackFn;
21
21
  private _errorCallbackFn;
22
22
  private _cancelCallbackFn;
23
+ private _notifyPrintQueueMap;
23
24
  constructor();
24
25
  private readonly messageHandlerQueue;
25
26
  private messageHandler;
26
27
  private _initDomesticSystem;
28
+ private renderQueueProgressNotifyContent;
27
29
  getPicAndUpload(obj: any): Promise<void>;
28
30
  private postMessage;
29
31
  messageCollect(id: string, data: AnyObject): Promise<unknown>;
@@ -55,7 +57,7 @@ export declare class Print {
55
57
  pageCount: any;
56
58
  formatId: string;
57
59
  };
58
- _handleEventDirect({ templateId, formatId, number, svrUpdateIp, hideButtons, params, paramsArr, cmdid, print, signature, copies, printdlgshow, nobillnode, btnprint, messageTimeout }: AnyObject): Promise<any>;
60
+ _handleEventDirect({ templateId, formatId, number, svrUpdateIp, apptype, printname, uuid, priority, hideButtons, params, paramsArr, cmdid, print, signature, copies, printdlgshow, nobillnode, btnprint, messageTimeout }: AnyObject): Promise<any>;
59
61
  _handleEventEditFormat({ templateId, formatId, number, params, token, messageTimeout }: AnyObject): Promise<any>;
60
62
  _queryProxyOrigin(): Promise<void>;
61
63
  _queryPrintFile(formatId: string, params?: string): Promise<any>;
@@ -68,7 +70,7 @@ export declare class Print {
68
70
  _base64ToBlob(fileBase64: string, fileType: string): Blob;
69
71
  preview({ iReportExecuteMode, hideButtons, templateId, number, formatId: originFormatId, formatItem, params, paramsArr, authorizationKey, signature, btnprint, messageTimeout }: AnyObject, successCallbackFn?: AnyFn, errorCallbackFn?: AnyFn): Promise<any>;
70
72
  printSync(data: AnyObject[], successCallbackFn: AnyFn, errorCallbackFn: AnyFn): Promise<void>;
71
- printDirect({ iReportExecuteMode, templateId, number, formatId: originFormatId, formatItem, params, paramsArr, authorizationKey, print, signature, printdlgshow, nobillnode, copies, svrUpdateIp, isDownloadFile, messageTimeout }: AnyObject, successCallbackFn: AnyFn, errorCallbackFn: AnyFn, cancelCallbackFn?: AnyFn, mode?: string): Promise<false | undefined>;
73
+ printDirect({ iReportExecuteMode, templateId, number, formatId: originFormatId, formatItem, params, paramsArr, authorizationKey, print, signature, printdlgshow, nobillnode, copies, svrUpdateIp, apptype, uuid, printname, priority, isShowQueueProgressNotify, isDownloadFile, messageTimeout }: AnyObject, successCallbackFn: AnyFn, errorCallbackFn: AnyFn, cancelCallbackFn?: AnyFn, printQueueCallbackFn?: AnyFn, mode?: string): Promise<false | undefined>;
72
74
  printToHiPrint({ templateId, formatId, params, authorizationKey }: any, successCallbackFn: AnyFn, errorCallbackFn: AnyFn, cancelCallbackFn?: AnyFn): Promise<any>;
73
75
  private _downloadPDF;
74
76
  /**