cnhis-design-vue 3.3.2-release.0 → 3.3.2-release.3

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 (255) hide show
  1. package/README.md +87 -87
  2. package/es/components/audio-sdk/index.d.ts +173 -146
  3. package/es/components/audio-sdk/src/Index.vue.d.ts +174 -147
  4. package/es/components/audio-sdk/src/Index.vue2.js +131 -53
  5. package/es/components/audio-sdk/src/audioSDK.d.ts +29 -26
  6. package/es/components/audio-sdk/src/audioSDK.js +123 -42
  7. package/es/components/audio-sdk/src/components/readyCountdown.vue.d.ts +31 -0
  8. package/es/components/audio-sdk/src/components/readyCountdown.vue.js +6 -0
  9. package/es/components/audio-sdk/src/components/readyCountdown.vue2.js +46 -0
  10. package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +138 -10
  11. package/es/components/audio-sdk/src/components/recording.vue.d.ts +139 -11
  12. package/es/components/audio-sdk/src/components/recording.vue2.js +318 -74
  13. package/es/components/audio-sdk/src/hooks/useChartAudioContext.d.ts +24 -0
  14. package/es/components/audio-sdk/src/hooks/useChartAudioContext.js +176 -0
  15. package/es/components/audio-sdk/src/svgs/Close.vue.js +26 -0
  16. package/es/components/audio-sdk/src/svgs/Continue.vue.js +20 -0
  17. package/es/components/audio-sdk/src/svgs/Enlarge.vue.js +20 -0
  18. package/es/components/audio-sdk/src/svgs/Pause.vue.js +20 -0
  19. package/es/components/audio-sdk/src/svgs/WaveView.vue.js +20 -0
  20. package/es/components/audio-sdk/src/svgs/Zoom.vue.js +27 -0
  21. package/es/components/audio-sdk/src/types/index.d.ts +42 -0
  22. package/es/components/audio-sdk/src/types/index.js +10 -0
  23. package/es/components/audio-sdk/src/utils/recordingModal.d.ts +9 -3
  24. package/es/components/audio-sdk/src/utils/recordingModal.js +57 -32
  25. package/es/components/audio-sdk/style/index.css +1 -1
  26. package/es/components/base-search/src/index.vue2.js +30 -18
  27. package/es/components/big-table/src/BigTable.vue2.js +191 -133
  28. package/es/components/big-table/src/components/NoData.vue2.js +16 -4
  29. package/es/components/big-table/src/components/edit-form/edit-date.js +12 -6
  30. package/es/components/big-table/src/components/edit-form/edit-input.js +8 -2
  31. package/es/components/big-table/src/components/edit-form/edit-select.js +21 -17
  32. package/es/components/big-table/src/components/edit-form/edit-time.js +11 -4
  33. package/es/components/big-table/src/components/input-button.vue2.js +8 -4
  34. package/es/components/big-table/src/hooks/useNestTable.js +18 -4
  35. package/es/components/big-table/src/hooks/useTableParse.js +16 -3
  36. package/es/components/body-select/src/index.vue2.js +24 -4
  37. package/es/components/button-print/index.d.ts +12 -4
  38. package/es/components/button-print/src/ButtonPrint.vue.d.ts +12 -4
  39. package/es/components/button-print/src/ButtonPrint.vue2.js +52 -11
  40. package/es/components/button-print/src/components/EditFormat.vue2.js +16 -8
  41. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +4 -2
  42. package/es/components/button-print/src/components/IdentityVerification.vue2.js +104 -49
  43. package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +7 -2
  44. package/es/components/button-print/src/components/NewPrintComponent.vue2.js +244 -95
  45. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +5 -2
  46. package/es/components/button-print/src/components/OldPrintComponent.vue2.js +92 -32
  47. package/es/components/button-print/src/components/Preview.vue.d.ts +5 -2
  48. package/es/components/button-print/src/components/Preview.vue2.js +14 -4
  49. package/es/components/button-print/src/utils/dialog.js +26 -8
  50. package/es/components/button-print/src/utils/print.d.ts +5 -5
  51. package/es/components/button-print/src/utils/print.js +108 -21
  52. package/es/components/card-reader-sdk/src/components/readCardDialog.vue2.js +8 -2
  53. package/es/components/card-reader-sdk/src/utils/readHealthCard.js +16 -4
  54. package/es/components/card-reader-sdk-cn/src/henan/index.js +38 -11
  55. package/es/components/card-render/src/components/index.d.ts +23 -23
  56. package/es/components/classification/src/components/search-filter/index.vue2.js +24 -10
  57. package/es/components/classification/src/components/set-classification/index.vue2.js +24 -7
  58. package/es/components/classification/src/components/table-modal/index.vue.d.ts +3 -0
  59. package/es/components/classification/src/components/table-modal/index.vue2.js +324 -165
  60. package/es/components/classification/src/index.vue2.js +261 -69
  61. package/es/components/default-page/src/constants/index.js +144 -19
  62. package/es/components/default-page/src/index.vue2.js +8 -2
  63. package/es/components/expand-field/src/components/FormBatchOptionsModal.vue2.js +75 -51
  64. package/es/components/expand-field/src/components/FormItemPerson.vue2.js +46 -38
  65. package/es/components/expand-field/src/components/PersonModal.vue2.js +62 -50
  66. package/es/components/expand-field/src/components/form.vue2.js +783 -412
  67. package/es/components/expand-field/src/index.vue2.js +88 -22
  68. package/es/components/expand-field/src/utils/constant.js +88 -12
  69. package/es/components/fabric-chart/src/components/PopupMenu.js +32 -15
  70. package/es/components/fabric-chart/src/constants/index.js +72 -10
  71. package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +18 -4
  72. package/es/components/fabric-chart/src/hooks/newBirthProcess/useNewBirthProcess.js +8 -2
  73. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useCenter.js +32 -5
  74. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useTop.js +8 -2
  75. package/es/components/fabric-chart/src/hooks/temperature/useCenter.js +63 -41
  76. package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +1 -1
  77. package/es/components/fabric-chart/src/hooks/temperature/useTop.js +5 -1
  78. package/es/components/fabric-chart/src/hooks/useCommon.js +24 -4
  79. package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +4 -1
  80. package/es/components/fabric-chart/src/hooks/useDraw.js +19 -0
  81. package/es/components/fabric-chart/src/utils/index.d.ts +1 -1
  82. package/es/components/fabric-chart/src/utils/index.js +2 -2
  83. package/es/components/field-editor/src/fields.js +232 -30
  84. package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
  85. package/es/components/field-set/src/FieldColor.vue2.js +88 -21
  86. package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
  87. package/es/components/field-set/src/FieldFilter.vue2.js +32 -16
  88. package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
  89. package/es/components/field-set/src/FieldSet.vue2.js +210 -57
  90. package/es/components/field-set/src/Index.vue2.js +40 -6
  91. package/es/components/field-set/src/TableStyle.vue2.js +48 -13
  92. package/es/components/field-set/src/components/condition.vue2.js +26 -10
  93. package/es/components/field-set/src/components/edit-dialog.vue2.js +148 -68
  94. package/es/components/field-set/src/components/edit-filter.vue2.js +24 -4
  95. package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
  96. package/es/components/field-set/src/components/table-row.vue2.js +123 -42
  97. package/es/components/field-set/src/constants/filter.js +328 -42
  98. package/es/components/field-set/src/constants/index.js +504 -64
  99. package/es/components/field-set/src/utils/index.js +1 -1
  100. package/es/components/form-config/src/components/FormConfigEventSetting.vue2.js +91 -46
  101. package/es/components/form-config/src/constants/index.js +80 -11
  102. package/es/components/form-config/src/hooks/useLocale.js +240 -31
  103. package/es/components/form-render/src/components/renderer/combination/hooks/useCombination.js +8 -4
  104. package/es/components/form-render/src/components/renderer/combination/jsonCombination.js +8 -4
  105. package/es/components/form-render/src/components/renderer/combination/tableCombination.js +8 -2
  106. package/es/components/form-render/src/components/renderer/input.js +3 -2
  107. package/es/components/form-render/src/components/renderer/radio_checkbox.js +8 -4
  108. package/es/components/form-render/src/components/renderer/remoteSearch.js +8 -2
  109. package/es/components/form-render/src/components/renderer/switch.js +24 -4
  110. package/es/components/form-render/src/components/renderer/textarea.js +5 -4
  111. package/es/components/form-render/src/utils/schema.js +26 -6
  112. package/es/components/iho-chat/src/Index.vue2.js +42 -38
  113. package/es/components/iho-chat/src/components/ChatAdd.vue2.js +108 -33
  114. package/es/components/iho-chat/src/components/ChatFile.vue2.js +132 -90
  115. package/es/components/iho-chat/src/components/ChatFooter.vue2.js +110 -48
  116. package/es/components/iho-chat/src/components/ChatHeader.vue2.js +40 -20
  117. package/es/components/iho-chat/src/components/ChatMain.vue2.js +55 -23
  118. package/es/components/iho-chat/src/components/ChatRecord.vue2.js +77 -45
  119. package/es/components/iho-chat/src/components/ChatSearch.vue2.js +256 -208
  120. package/es/components/iho-chat/src/components/ChatSet.vue2.js +306 -208
  121. package/es/components/iho-chat/src/components/ContextMenu.js +50 -9
  122. package/es/components/iho-chat/src/components/MessageEvent.vue2.js +16 -4
  123. package/es/components/iho-chat/src/components/MessageTemplate.vue2.js +8 -2
  124. package/es/components/iho-chat/src/components/MultipleVideo.vue2.js +104 -18
  125. package/es/components/iho-chat/src/components/PersonProfile.vue2.js +67 -12
  126. package/es/components/iho-chat/src/components/SelectLabel.vue2.js +47 -43
  127. package/es/components/iho-chat/src/components/SiderList.vue2.js +68 -38
  128. package/es/components/iho-chat/src/components/Video.vue2.js +38 -11
  129. package/es/components/iho-chat/src/hooks/useVideo.js +15 -4
  130. package/es/components/iho-chat/src/utils/index.js +79 -14
  131. package/es/components/iho-table/src/hooks/useColumnConfigAdaptor.js +8 -2
  132. package/es/components/iho-table/src/plugins/dynamicFilterRenderPlugin/dynamicFilter.vue2.js +40 -15
  133. package/es/components/iho-table/src/plugins/filterRemoteSearchPlugin/remoteFilter.vue2.js +40 -15
  134. package/es/components/iho-table/src/plugins/filterRenderPlugin/filter.vue.d.ts +1 -1
  135. package/es/components/iho-table/src/plugins/filterRenderPlugin/filter.vue2.js +50 -20
  136. package/es/components/iho-table/src/plugins/filterTextPlugin/filter.vue2.js +16 -8
  137. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/numberRendererPlugin.js +10 -3
  138. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.js +42 -15
  139. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +1 -1
  140. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.js +17 -3
  141. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.vue2.js +18 -12
  142. package/es/components/index.css +1 -1
  143. package/es/components/info-header/src/components/patientInfo/index.vue2.js +144 -25
  144. package/es/components/keyboard/src/Keyboard.vue2.js +20 -8
  145. package/es/components/keyboard/src/components/NumberPanel.vue2.js +51 -37
  146. package/es/components/map/src/Map.vue2.js +8 -4
  147. package/es/components/picture-clipper/src/PictureClipper.vue2.js +16 -8
  148. package/es/components/quick-search/src/index.vue2.js +176 -131
  149. package/es/components/recommend-search/src/components/BaseSearch.js +14 -8
  150. package/es/components/recommend-search/src/components/RecommendInput.vue2.js +28 -8
  151. package/es/components/recommend-search/src/components/RecommendSelect.vue2.js +18 -5
  152. package/es/components/scale-view/src/ScaleView.vue2.js +17 -9
  153. package/es/components/scale-view/src/components/NoData.vue2.js +16 -4
  154. package/es/components/scale-view/src/components/formitem/r-cascader.js +8 -2
  155. package/es/components/scale-view/src/components/formitem/r-checkbox.js +24 -6
  156. package/es/components/scale-view/src/components/formitem/r-input.js +8 -2
  157. package/es/components/scale-view/src/components/formitem/r-map.js +8 -2
  158. package/es/components/scale-view/src/components/formitem/r-radio.js +24 -6
  159. package/es/components/scale-view/src/components/formitem/r-select.js +8 -2
  160. package/es/components/scale-view/src/components/formitem/r-sign.js +32 -11
  161. package/es/components/scale-view/src/components/formitem/standard-modal.js +16 -3
  162. package/es/components/scale-view/src/hooks/scaleview-computed.js +24 -5
  163. package/es/components/scale-view/src/hooks/scaleview-methods.js +16 -4
  164. package/es/components/scale-view/src/hooks/scaleview-submit.js +16 -3
  165. package/es/components/scale-view/src/hooks/scaleview-validate.js +40 -9
  166. package/es/components/search-cascader/src/SearchCascader.vue2.js +20 -14
  167. package/es/components/select-label/src/LabelFormContent.vue2.js +53 -21
  168. package/es/components/select-label/src/SelectLabel.vue2.js +81 -51
  169. package/es/components/select-label/src/components/label-classify.vue2.js +28 -11
  170. package/es/components/select-label/src/ihoLabel/IhoLabelFormContent.vue2.js +18 -5
  171. package/es/components/select-label/src/ihoLabel/IhoSelectLabel.vue2.js +34 -8
  172. package/es/components/select-label/src/ihoLabel/iho-label-classify.vue2.js +18 -5
  173. package/es/components/select-person/src/SelectPerson.vue2.js +214 -141
  174. package/es/components/select-person/src/SelectPersonType.vue2.js +127 -102
  175. package/es/components/select-person/src/components/SearchOrgAndStaff.vue2.js +9 -2
  176. package/es/components/select-person/src/index.vue2.js +20 -7
  177. package/es/components/slider-tree/src/index.vue2.js +16 -3
  178. package/es/components/table-export-field/index.d.ts +1 -0
  179. package/es/components/table-export-field/src/components/ExportModal.vue.d.ts +1 -0
  180. package/es/components/table-export-field/src/components/ExportModal.vue2.js +187 -113
  181. package/es/components/table-export-field/src/components/SaveProjectModal.vue2.js +147 -88
  182. package/es/components/table-export-field/src/index.vue.d.ts +1 -0
  183. package/es/components/table-export-field/src/index.vue2.js +28 -12
  184. package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue2.js +32 -5
  185. package/es/components/table-filter/src/components/bi-filter/helpers/options.js +264 -34
  186. package/es/components/table-filter/src/components/bi-filter/index.vue2.js +214 -135
  187. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue2.js +16 -3
  188. package/es/components/table-filter/src/components/classify-filter/components/Date.vue2.js +9 -2
  189. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +39 -6
  190. package/es/components/table-filter/src/components/classify-filter/components/InputFilter.vue2.js +18 -5
  191. package/es/components/table-filter/src/components/classify-filter/components/InputNumberGroup.vue2.js +29 -18
  192. package/es/components/table-filter/src/components/classify-filter/helpers/options.js +16 -3
  193. package/es/components/table-filter/src/components/classify-filter/hooks/useDisplayCategory.js +8 -2
  194. package/es/components/table-filter/src/components/classify-filter/index.vue2.js +195 -130
  195. package/es/components/table-filter/src/components/render-widget/components/DateInner.vue2.js +26 -7
  196. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue2.js +12 -6
  197. package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue2.js +34 -8
  198. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue2.js +21 -8
  199. package/es/components/table-filter/src/components/render-widget/components/InputCustom.vue2.js +8 -4
  200. package/es/components/table-filter/src/components/render-widget/components/InputNumberGroup.vue2.js +19 -6
  201. package/es/components/table-filter/src/components/render-widget/components/LabelInner.vue2.js +16 -3
  202. package/es/components/table-filter/src/components/render-widget/components/SelectDynamicOption/index.vue2.js +24 -10
  203. package/es/components/table-filter/src/components/render-widget/helpers/dateExtraMap.js +1648 -207
  204. package/es/components/table-filter/src/components/render-widget/helpers/selectExtraMap.js +8 -2
  205. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.js +16 -3
  206. package/es/components/table-filter/src/tool/baseOptions.js +144 -19
  207. package/es/components/tooth-bitmap/src/ToothBitmap.vue2.js +32 -16
  208. package/es/components/vod-chunk-upload/src/hooks/upload-computed.js +22 -2
  209. package/es/components/vod-chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue2.js +8 -4
  210. package/es/components/vod-chunk-upload/src/vod-upload-modal.js +16 -8
  211. package/es/env.d.ts +25 -25
  212. package/es/shared/assets/img/defaultCover/10review_successful.png.js +1 -1
  213. package/es/shared/assets/img/defaultCover/11review_fail.png.js +1 -1
  214. package/es/shared/assets/img/defaultCover/12no_setting.png.js +1 -1
  215. package/es/shared/assets/img/defaultCover/13no_menu_setting.png.js +1 -1
  216. package/es/shared/assets/img/defaultCover/14no_call_setting.png.js +1 -1
  217. package/es/shared/assets/img/defaultCover/15no_use_tag.png.js +1 -1
  218. package/es/shared/assets/img/defaultCover/16no_table_data.png.js +1 -1
  219. package/es/shared/assets/img/defaultCover/1location.png.js +1 -1
  220. package/es/shared/assets/img/defaultCover/2notfound.png.js +1 -1
  221. package/es/shared/assets/img/defaultCover/3loading.png.js +1 -1
  222. package/es/shared/assets/img/defaultCover/4no_permission.png.js +1 -1
  223. package/es/shared/assets/img/defaultCover/5no_data.png.js +1 -1
  224. package/es/shared/assets/img/defaultCover/6no_network.png.js +1 -1
  225. package/es/shared/assets/img/defaultCover/7no_doctor.png.js +1 -1
  226. package/es/shared/assets/img/defaultCover/8system_error.png.js +1 -1
  227. package/es/shared/assets/img/defaultCover/9system_upgrade.png.js +1 -1
  228. package/es/shared/assets/img/failure.png.js +1 -1
  229. package/es/shared/assets/img/no-permission.png.js +1 -1
  230. package/es/shared/assets/img/nodata.png.js +1 -1
  231. package/es/shared/assets/img/notfound.png.js +1 -1
  232. package/es/shared/assets/img/qr.png.js +1 -1
  233. package/es/shared/assets/img/success.png.js +1 -1
  234. package/es/shared/assets/img/table_style_2.png.js +1 -1
  235. package/es/shared/assets/img/video.png.js +1 -1
  236. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  237. package/es/shared/assets/img/xb_big.png.js +1 -1
  238. package/es/shared/assets/img/xb_small.png.js +1 -1
  239. package/es/shared/hooks/selectHooks/useSelectAllowModify.js +2 -2
  240. package/es/shared/package.json.js +1 -1
  241. package/package.json +2 -2
  242. package/es/components/audio-sdk/src/components/recording-modal.vue.js +0 -6
  243. package/es/components/audio-sdk/src/components/recording-modal.vue2.js +0 -40
  244. package/es/components/audio-sdk/src/utils/recorder/fft.d.ts +0 -4
  245. package/es/components/audio-sdk/src/utils/recorder/mp3-engine.d.ts +0 -4
  246. package/es/components/audio-sdk/src/utils/recorder/mp3.d.ts +0 -4
  247. package/es/components/audio-sdk/src/utils/recorder/recorder.d.ts +0 -4
  248. package/es/components/audio-sdk/src/utils/recorder/wave.d.ts +0 -4
  249. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  250. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  251. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  252. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  253. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
  254. package/es/shared/utils/fabricjs/index.d.ts +0 -6823
  255. package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -1,93 +1,246 @@
1
1
  import { WidgetTypeEnums } from '../../../types/enums.js';
2
2
 
3
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A, _B, _C, _D, _E, _F, _G;
4
3
  const dateOptions = [
5
4
  {
6
- label: ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.338")) || "\u4E3A\u7A7A",
5
+ label: function() {
6
+ var _a, _b, _c;
7
+ try {
8
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.338")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.338")) || "\u4E3A\u7A7A";
9
+ } catch (e) {
10
+ return "\u4E3A\u7A7A";
11
+ }
12
+ }(),
7
13
  value: "NULL"
8
14
  },
9
15
  {
10
- label: ((_b = window.getLanguageByCode) == null ? void 0 : _b.call(window, "10010.1.339")) || "\u4E0D\u4E3A\u7A7A",
16
+ label: function() {
17
+ var _a, _b, _c;
18
+ try {
19
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.339")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.339")) || "\u4E0D\u4E3A\u7A7A";
20
+ } catch (e) {
21
+ return "\u4E0D\u4E3A\u7A7A";
22
+ }
23
+ }(),
11
24
  value: "NOT_NULL"
12
25
  },
13
26
  {
14
- label: ((_c = window.getLanguageByCode) == null ? void 0 : _c.call(window, "10010.1.317")) || "\u7B49\u4E8E",
27
+ label: function() {
28
+ var _a, _b, _c;
29
+ try {
30
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.317")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.317")) || "\u7B49\u4E8E";
31
+ } catch (e) {
32
+ return "\u7B49\u4E8E";
33
+ }
34
+ }(),
15
35
  value: "IN"
16
36
  },
17
37
  {
18
- label: ((_d = window.getLanguageByCode) == null ? void 0 : _d.call(window, "10010.1.134")) || "\u4ECA\u5929",
38
+ label: function() {
39
+ var _a, _b, _c;
40
+ try {
41
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.134")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.134")) || "\u4ECA\u5929";
42
+ } catch (e) {
43
+ return "\u4ECA\u5929";
44
+ }
45
+ }(),
19
46
  value: "TODAY"
20
47
  },
21
48
  {
22
- label: ((_e = window.getLanguageByCode) == null ? void 0 : _e.call(window, "10010.1.300")) || "\u660E\u5929",
49
+ label: function() {
50
+ var _a, _b, _c;
51
+ try {
52
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.300")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.300")) || "\u660E\u5929";
53
+ } catch (e) {
54
+ return "\u660E\u5929";
55
+ }
56
+ }(),
23
57
  value: "TOMORROW"
24
58
  },
25
59
  {
26
- label: ((_f = window.getLanguageByCode) == null ? void 0 : _f.call(window, "10010.1.132")) || "\u6628\u5929",
60
+ label: function() {
61
+ var _a, _b, _c;
62
+ try {
63
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.132")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.132")) || "\u6628\u5929";
64
+ } catch (e) {
65
+ return "\u6628\u5929";
66
+ }
67
+ }(),
27
68
  value: "YESTERDAY"
28
69
  },
29
70
  {
30
- label: ((_g = window.getLanguageByCode) == null ? void 0 : _g.call(window, "10010.1.47")) || "\u672C\u5468",
71
+ label: function() {
72
+ var _a, _b, _c;
73
+ try {
74
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.47")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.47")) || "\u672C\u5468";
75
+ } catch (e) {
76
+ return "\u672C\u5468";
77
+ }
78
+ }(),
31
79
  value: "THIS_WEEK"
32
80
  },
33
81
  {
34
- label: ((_h = window.getLanguageByCode) == null ? void 0 : _h.call(window, "10010.1.323")) || "\u4E0B\u5468",
82
+ label: function() {
83
+ var _a, _b, _c;
84
+ try {
85
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.323")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.323")) || "\u4E0B\u5468";
86
+ } catch (e) {
87
+ return "\u4E0B\u5468";
88
+ }
89
+ }(),
35
90
  value: "NEXT_WEEK"
36
91
  },
37
92
  {
38
- label: ((_i = window.getLanguageByCode) == null ? void 0 : _i.call(window, "10010.1.324")) || "\u4E0A\u5468",
93
+ label: function() {
94
+ var _a, _b, _c;
95
+ try {
96
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.324")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.324")) || "\u4E0A\u5468";
97
+ } catch (e) {
98
+ return "\u4E0A\u5468";
99
+ }
100
+ }(),
39
101
  value: "UP_WEEK"
40
102
  },
41
103
  {
42
- label: ((_j = window.getLanguageByCode) == null ? void 0 : _j.call(window, "10010.1.404")) || "\u672C\u6708",
104
+ label: function() {
105
+ var _a, _b, _c;
106
+ try {
107
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.404")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.404")) || "\u672C\u6708";
108
+ } catch (e) {
109
+ return "\u672C\u6708";
110
+ }
111
+ }(),
43
112
  value: "THIS_MONTH"
44
113
  },
45
114
  {
46
- label: ((_k = window.getLanguageByCode) == null ? void 0 : _k.call(window, "10010.1.325")) || "\u4E0B\u6708",
115
+ label: function() {
116
+ var _a, _b, _c;
117
+ try {
118
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.325")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.325")) || "\u4E0B\u6708";
119
+ } catch (e) {
120
+ return "\u4E0B\u6708";
121
+ }
122
+ }(),
47
123
  value: "NEXT_MONTH"
48
124
  },
49
125
  {
50
- label: ((_l = window.getLanguageByCode) == null ? void 0 : _l.call(window, "10010.1.326")) || "\u4E0A\u6708",
126
+ label: function() {
127
+ var _a, _b, _c;
128
+ try {
129
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.326")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.326")) || "\u4E0A\u6708";
130
+ } catch (e) {
131
+ return "\u4E0A\u6708";
132
+ }
133
+ }(),
51
134
  value: "UP_MONTH"
52
135
  },
53
136
  {
54
- label: ((_m = window.getLanguageByCode) == null ? void 0 : _m.call(window, "10010.1.327")) || "\u672C\u5B63\u5EA6",
137
+ label: function() {
138
+ var _a, _b, _c;
139
+ try {
140
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.327")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.327")) || "\u672C\u5B63\u5EA6";
141
+ } catch (e) {
142
+ return "\u672C\u5B63\u5EA6";
143
+ }
144
+ }(),
55
145
  value: "THIS_SEASON"
56
146
  },
57
147
  {
58
- label: ((_n = window.getLanguageByCode) == null ? void 0 : _n.call(window, "10010.1.328")) || "\u4E0B\u5B63\u5EA6",
148
+ label: function() {
149
+ var _a, _b, _c;
150
+ try {
151
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.328")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.328")) || "\u4E0B\u5B63\u5EA6";
152
+ } catch (e) {
153
+ return "\u4E0B\u5B63\u5EA6";
154
+ }
155
+ }(),
59
156
  value: "NEXT_SEASON"
60
157
  },
61
158
  {
62
- label: ((_o = window.getLanguageByCode) == null ? void 0 : _o.call(window, "10010.1.329")) || "\u4E0A\u5B63\u5EA6",
159
+ label: function() {
160
+ var _a, _b, _c;
161
+ try {
162
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.329")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.329")) || "\u4E0A\u5B63\u5EA6";
163
+ } catch (e) {
164
+ return "\u4E0A\u5B63\u5EA6";
165
+ }
166
+ }(),
63
167
  value: "UP_SEASON"
64
168
  },
65
169
  {
66
- label: ((_p = window.getLanguageByCode) == null ? void 0 : _p.call(window, "10010.1.330")) || "\u672C\u5E74",
170
+ label: function() {
171
+ var _a, _b, _c;
172
+ try {
173
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.330")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.330")) || "\u672C\u5E74";
174
+ } catch (e) {
175
+ return "\u672C\u5E74";
176
+ }
177
+ }(),
67
178
  value: "THIS_YEAR"
68
179
  },
69
180
  {
70
- label: ((_q = window.getLanguageByCode) == null ? void 0 : _q.call(window, "10010.1.331")) || "\u4E0B\u5E74",
181
+ label: function() {
182
+ var _a, _b, _c;
183
+ try {
184
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.331")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.331")) || "\u4E0B\u5E74";
185
+ } catch (e) {
186
+ return "\u4E0B\u5E74";
187
+ }
188
+ }(),
71
189
  value: "NEXT_YEAR"
72
190
  },
73
191
  {
74
- label: ((_r = window.getLanguageByCode) == null ? void 0 : _r.call(window, "10010.1.358")) || "\u4E0A\u5E74",
192
+ label: function() {
193
+ var _a, _b, _c;
194
+ try {
195
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.358")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.358")) || "\u4E0A\u5E74";
196
+ } catch (e) {
197
+ return "\u4E0A\u5E74";
198
+ }
199
+ }(),
75
200
  value: "UP_YEAR"
76
201
  },
77
202
  {
78
- label: ((_s = window.getLanguageByCode) == null ? void 0 : _s.call(window, "10010.1.319")) || "\u5927\u4E8E",
203
+ label: function() {
204
+ var _a, _b, _c;
205
+ try {
206
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.319")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.319")) || "\u5927\u4E8E";
207
+ } catch (e) {
208
+ return "\u5927\u4E8E";
209
+ }
210
+ }(),
79
211
  value: "BIG"
80
212
  },
81
213
  {
82
- label: ((_t = window.getLanguageByCode) == null ? void 0 : _t.call(window, "10010.1.320")) || "\u5C0F\u4E8E",
214
+ label: function() {
215
+ var _a, _b, _c;
216
+ try {
217
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.320")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.320")) || "\u5C0F\u4E8E";
218
+ } catch (e) {
219
+ return "\u5C0F\u4E8E";
220
+ }
221
+ }(),
83
222
  value: "LESS"
84
223
  },
85
224
  {
86
- label: ((_u = window.getLanguageByCode) == null ? void 0 : _u.call(window, "10010.1.321")) || "\u5927\u4E8E\u7B49\u4E8E",
225
+ label: function() {
226
+ var _a, _b, _c;
227
+ try {
228
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.321")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.321")) || "\u5927\u4E8E\u7B49\u4E8E";
229
+ } catch (e) {
230
+ return "\u5927\u4E8E\u7B49\u4E8E";
231
+ }
232
+ }(),
87
233
  value: "BIGEQ"
88
234
  },
89
235
  {
90
- label: ((_v = window.getLanguageByCode) == null ? void 0 : _v.call(window, "10010.1.322")) || "\u5C0F\u4E8E\u7B49\u4E8E",
236
+ label: function() {
237
+ var _a, _b, _c;
238
+ try {
239
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.322")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.322")) || "\u5C0F\u4E8E\u7B49\u4E8E";
240
+ } catch (e) {
241
+ return "\u5C0F\u4E8E\u7B49\u4E8E";
242
+ }
243
+ }(),
91
244
  value: "LESSEQ"
92
245
  }
93
246
  ];
@@ -104,27 +257,69 @@ const filterConditionTypeOptions = [
104
257
  type: "TEXT",
105
258
  options: [
106
259
  {
107
- label: ((_w = window.getLanguageByCode) == null ? void 0 : _w.call(window, "10010.1.338")) || "\u4E3A\u7A7A",
260
+ label: function() {
261
+ var _a, _b, _c;
262
+ try {
263
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.338")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.338")) || "\u4E3A\u7A7A";
264
+ } catch (e) {
265
+ return "\u4E3A\u7A7A";
266
+ }
267
+ }(),
108
268
  value: "NULL"
109
269
  },
110
270
  {
111
- label: ((_x = window.getLanguageByCode) == null ? void 0 : _x.call(window, "10010.1.339")) || "\u4E0D\u4E3A\u7A7A",
271
+ label: function() {
272
+ var _a, _b, _c;
273
+ try {
274
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.339")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.339")) || "\u4E0D\u4E3A\u7A7A";
275
+ } catch (e) {
276
+ return "\u4E0D\u4E3A\u7A7A";
277
+ }
278
+ }(),
112
279
  value: "NOT_NULL"
113
280
  },
114
281
  {
115
- label: ((_y = window.getLanguageByCode) == null ? void 0 : _y.call(window, "10010.1.340")) || "\u5305\u542B",
282
+ label: function() {
283
+ var _a, _b, _c;
284
+ try {
285
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.340")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.340")) || "\u5305\u542B";
286
+ } catch (e) {
287
+ return "\u5305\u542B";
288
+ }
289
+ }(),
116
290
  value: "CL"
117
291
  },
118
292
  {
119
- label: ((_z = window.getLanguageByCode) == null ? void 0 : _z.call(window, "10010.1.341")) || "\u4E0D\u5305\u542B",
293
+ label: function() {
294
+ var _a, _b, _c;
295
+ try {
296
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.341")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.341")) || "\u4E0D\u5305\u542B";
297
+ } catch (e) {
298
+ return "\u4E0D\u5305\u542B";
299
+ }
300
+ }(),
120
301
  value: "NC"
121
302
  },
122
303
  {
123
- label: ((_A = window.getLanguageByCode) == null ? void 0 : _A.call(window, "10010.1.317")) || "\u7B49\u4E8E",
304
+ label: function() {
305
+ var _a, _b, _c;
306
+ try {
307
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.317")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.317")) || "\u7B49\u4E8E";
308
+ } catch (e) {
309
+ return "\u7B49\u4E8E";
310
+ }
311
+ }(),
124
312
  value: "EQ"
125
313
  },
126
314
  {
127
- label: ((_B = window.getLanguageByCode) == null ? void 0 : _B.call(window, "10010.1.318")) || "\u4E0D\u7B49\u4E8E",
315
+ label: function() {
316
+ var _a, _b, _c;
317
+ try {
318
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.318")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.318")) || "\u4E0D\u7B49\u4E8E";
319
+ } catch (e) {
320
+ return "\u4E0D\u7B49\u4E8E";
321
+ }
322
+ }(),
128
323
  value: "NEQ"
129
324
  }
130
325
  ]
@@ -133,23 +328,58 @@ const filterConditionTypeOptions = [
133
328
  type: "NUMBER",
134
329
  options: [
135
330
  {
136
- label: ((_C = window.getLanguageByCode) == null ? void 0 : _C.call(window, "10010.1.338")) || "\u4E3A\u7A7A",
331
+ label: function() {
332
+ var _a, _b, _c;
333
+ try {
334
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.338")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.338")) || "\u4E3A\u7A7A";
335
+ } catch (e) {
336
+ return "\u4E3A\u7A7A";
337
+ }
338
+ }(),
137
339
  value: "NULL"
138
340
  },
139
341
  {
140
- label: ((_D = window.getLanguageByCode) == null ? void 0 : _D.call(window, "10010.1.339")) || "\u4E0D\u4E3A\u7A7A",
342
+ label: function() {
343
+ var _a, _b, _c;
344
+ try {
345
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.339")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.339")) || "\u4E0D\u4E3A\u7A7A";
346
+ } catch (e) {
347
+ return "\u4E0D\u4E3A\u7A7A";
348
+ }
349
+ }(),
141
350
  value: "NOT_NULL"
142
351
  },
143
352
  {
144
- label: ((_E = window.getLanguageByCode) == null ? void 0 : _E.call(window, "10010.1.317")) || "\u7B49\u4E8E",
353
+ label: function() {
354
+ var _a, _b, _c;
355
+ try {
356
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.317")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.317")) || "\u7B49\u4E8E";
357
+ } catch (e) {
358
+ return "\u7B49\u4E8E";
359
+ }
360
+ }(),
145
361
  value: "EQ"
146
362
  },
147
363
  {
148
- label: ((_F = window.getLanguageByCode) == null ? void 0 : _F.call(window, "10010.1.319")) || "\u5927\u4E8E",
364
+ label: function() {
365
+ var _a, _b, _c;
366
+ try {
367
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.319")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.319")) || "\u5927\u4E8E";
368
+ } catch (e) {
369
+ return "\u5927\u4E8E";
370
+ }
371
+ }(),
149
372
  value: "BIG"
150
373
  },
151
374
  {
152
- label: ((_G = window.getLanguageByCode) == null ? void 0 : _G.call(window, "10010.1.320")) || "\u5C0F\u4E8E",
375
+ label: function() {
376
+ var _a, _b, _c;
377
+ try {
378
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.320")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.320")) || "\u5C0F\u4E8E";
379
+ } catch (e) {
380
+ return "\u5C0F\u4E8E";
381
+ }
382
+ }(),
153
383
  value: "LESS"
154
384
  }
155
385
  ]