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
@@ -59,30 +59,85 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
59
59
  }
60
60
  const show = ref(false);
61
61
  const fieldList = computed(() => {
62
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p;
63
62
  if (!props.patientEditable)
64
63
  return [];
65
64
  return [{
66
65
  val_key: "name",
67
66
  is_null: "0",
68
67
  is_empty: "0",
69
- alias: ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.116")) || "\u59D3\u540D",
68
+ alias: function() {
69
+ var _a, _b, _c;
70
+ try {
71
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.116")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.116")) || "\u59D3\u540D";
72
+ } catch (e) {
73
+ return "\u59D3\u540D";
74
+ }
75
+ }(),
70
76
  html_type: "INPUT",
71
77
  ...props.patientInfo.nameProps
72
78
  }, {
73
79
  val_key: "sex",
74
- alias: ((_b = window.getLanguageByCode) == null ? void 0 : _b.call(window, "10010.1.122")) || "\u6027\u522B",
80
+ alias: function() {
81
+ var _a, _b, _c;
82
+ try {
83
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.122")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.122")) || "\u6027\u522B";
84
+ } catch (e) {
85
+ return "\u6027\u522B";
86
+ }
87
+ }(),
75
88
  html_type: "SELECT",
76
89
  is_null: "0",
77
90
  option: [{
78
- text: ((_c = window.getLanguageByCode) == null ? void 0 : _c.call(window, "10010.1.205")) || "\u672A\u77E5",
79
- value: ((_d = window.getLanguageByCode) == null ? void 0 : _d.call(window, "10010.1.205")) || "\u672A\u77E5"
91
+ text: function() {
92
+ var _a, _b, _c;
93
+ try {
94
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.205")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.205")) || "\u672A\u77E5";
95
+ } catch (e) {
96
+ return "\u672A\u77E5";
97
+ }
98
+ }(),
99
+ value: function() {
100
+ var _a, _b, _c;
101
+ try {
102
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.205")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.205")) || "\u672A\u77E5";
103
+ } catch (e) {
104
+ return "\u672A\u77E5";
105
+ }
106
+ }()
80
107
  }, {
81
- text: ((_e = window.getLanguageByCode) == null ? void 0 : _e.call(window, "10010.1.203")) || "\u7537",
82
- value: ((_f = window.getLanguageByCode) == null ? void 0 : _f.call(window, "10010.1.203")) || "\u7537"
108
+ text: function() {
109
+ var _a, _b, _c;
110
+ try {
111
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.203")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.203")) || "\u7537";
112
+ } catch (e) {
113
+ return "\u7537";
114
+ }
115
+ }(),
116
+ value: function() {
117
+ var _a, _b, _c;
118
+ try {
119
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.203")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.203")) || "\u7537";
120
+ } catch (e) {
121
+ return "\u7537";
122
+ }
123
+ }()
83
124
  }, {
84
- text: ((_g = window.getLanguageByCode) == null ? void 0 : _g.call(window, "10010.1.204")) || "\u5973",
85
- value: ((_h = window.getLanguageByCode) == null ? void 0 : _h.call(window, "10010.1.204")) || "\u5973"
125
+ text: function() {
126
+ var _a, _b, _c;
127
+ try {
128
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.204")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.204")) || "\u5973";
129
+ } catch (e) {
130
+ return "\u5973";
131
+ }
132
+ }(),
133
+ value: function() {
134
+ var _a, _b, _c;
135
+ try {
136
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.204")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.204")) || "\u5973";
137
+ } catch (e) {
138
+ return "\u5973";
139
+ }
140
+ }()
86
141
  }],
87
142
  ...props.patientInfo.sexProps
88
143
  }, {
@@ -108,23 +163,79 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
108
163
  }
109
164
  },
110
165
  option: [{
111
- value: ((_i = window.getLanguageByCode) == null ? void 0 : _i.call(window, "10010.1.144")) || "\u5929",
112
- text: ((_j = window.getLanguageByCode) == null ? void 0 : _j.call(window, "10010.1.144")) || "\u5929"
166
+ value: function() {
167
+ var _a, _b, _c;
168
+ try {
169
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.144")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.144")) || "\u5929";
170
+ } catch (e) {
171
+ return "\u5929";
172
+ }
173
+ }(),
174
+ text: function() {
175
+ var _a, _b, _c;
176
+ try {
177
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.144")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.144")) || "\u5929";
178
+ } catch (e) {
179
+ return "\u5929";
180
+ }
181
+ }()
113
182
  }, {
114
- value: ((_k = window.getLanguageByCode) == null ? void 0 : _k.call(window, "10010.1.347")) || "\u6708",
115
- text: ((_l = window.getLanguageByCode) == null ? void 0 : _l.call(window, "10010.1.347")) || "\u6708"
183
+ value: function() {
184
+ var _a, _b, _c;
185
+ try {
186
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.347")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.347")) || "\u6708";
187
+ } catch (e) {
188
+ return "\u6708";
189
+ }
190
+ }(),
191
+ text: function() {
192
+ var _a, _b, _c;
193
+ try {
194
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.347")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.347")) || "\u6708";
195
+ } catch (e) {
196
+ return "\u6708";
197
+ }
198
+ }()
116
199
  }, {
117
200
  value: "\u5C81",
118
201
  text: "\u5C81"
119
202
  }, {
120
- value: ((_m = window.getLanguageByCode) == null ? void 0 : _m.call(window, "10010.1.350")) || "\u5C0F\u65F6",
121
- text: ((_n = window.getLanguageByCode) == null ? void 0 : _n.call(window, "10010.1.350")) || "\u5C0F\u65F6"
203
+ value: function() {
204
+ var _a, _b, _c;
205
+ try {
206
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.350")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.350")) || "\u5C0F\u65F6";
207
+ } catch (e) {
208
+ return "\u5C0F\u65F6";
209
+ }
210
+ }(),
211
+ text: function() {
212
+ var _a, _b, _c;
213
+ try {
214
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.350")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.350")) || "\u5C0F\u65F6";
215
+ } catch (e) {
216
+ return "\u5C0F\u65F6";
217
+ }
218
+ }()
122
219
  }, {
123
220
  value: "\u5206",
124
221
  text: "\u5206"
125
222
  }, {
126
- value: ((_o = window.getLanguageByCode) == null ? void 0 : _o.call(window, "10010.1.346")) || "\u5468",
127
- text: ((_p = window.getLanguageByCode) == null ? void 0 : _p.call(window, "10010.1.346")) || "\u5468"
223
+ value: function() {
224
+ var _a, _b, _c;
225
+ try {
226
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.346")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.346")) || "\u5468";
227
+ } catch (e) {
228
+ return "\u5468";
229
+ }
230
+ }(),
231
+ text: function() {
232
+ var _a, _b, _c;
233
+ try {
234
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.346")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.346")) || "\u5468";
235
+ } catch (e) {
236
+ return "\u5468";
237
+ }
238
+ }()
128
239
  }],
129
240
  ...props.patientInfo.ageUnitProps
130
241
  }
@@ -199,20 +310,28 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
199
310
  size: "small",
200
311
  onClick: _cache[1] || (_cache[1] = ($event) => show.value = false)
201
312
  }, {
202
- default: withCtx(() => {
203
- var _a;
204
- return [createTextVNode(((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.28")) || "\u53D6\u6D88")];
205
- }),
313
+ default: withCtx(() => [createTextVNode(function() {
314
+ var _a, _b, _c;
315
+ try {
316
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.28")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.28")) || "\u53D6\u6D88";
317
+ } catch (e) {
318
+ return "\u53D6\u6D88";
319
+ }
320
+ }())]),
206
321
  _: 1
207
322
  }), createVNode(unref(NButton), {
208
323
  size: "small",
209
324
  type: "info",
210
325
  onClick: confirm
211
326
  }, {
212
- default: withCtx(() => {
213
- var _a;
214
- return [createTextVNode(((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.428")) || "\u786E\u8BA4")];
215
- }),
327
+ default: withCtx(() => [createTextVNode(function() {
328
+ var _a, _b, _c;
329
+ try {
330
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.428")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.428")) || "\u786E\u8BA4";
331
+ } catch (e) {
332
+ return "\u786E\u8BA4";
333
+ }
334
+ }())]),
216
335
  _: 1
217
336
  })]),
218
337
  _: 1
@@ -13,8 +13,14 @@ import '../../../shared/hooks/selectHooks/useSearchContent.js';
13
13
  import '../../../shared/hooks/useScrollLoading.js';
14
14
  import { defaultCssVars } from './constants/index.js';
15
15
 
16
- var _a;
17
- const _hoisted_1 = /* @__PURE__ */ createElementVNode("span", null, ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.142")) || "\u952E\u76D8", -1);
16
+ const _hoisted_1 = /* @__PURE__ */ createElementVNode("span", null, function() {
17
+ var _a, _b, _c;
18
+ try {
19
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.142")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.142")) || "\u952E\u76D8";
20
+ } catch (e) {
21
+ return "\u952E\u76D8";
22
+ }
23
+ }(), -1);
18
24
  const _hoisted_2 = {
19
25
  class: "keys"
20
26
  };
@@ -104,8 +110,8 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
104
110
  preventDefault: true,
105
111
  handle: keyboardDragRef,
106
112
  onMove: (position, event) => {
107
- var _a2, _b, _c, _d;
108
- position.x += (_b = (_a2 = props.moveOffset) == null ? void 0 : _a2.x) != null ? _b : 0;
113
+ var _a, _b, _c, _d;
114
+ position.x += (_b = (_a = props.moveOffset) == null ? void 0 : _a.x) != null ? _b : 0;
109
115
  position.y += (_d = (_c = props.moveOffset) == null ? void 0 : _c.y) != null ? _d : 0;
110
116
  }
111
117
  });
@@ -120,8 +126,8 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
120
126
  }
121
127
  }
122
128
  function onChange(value) {
123
- var _a2;
124
- (_a2 = popoverRef.value) == null ? void 0 : _a2.setShow(false);
129
+ var _a;
130
+ (_a = popoverRef.value) == null ? void 0 : _a.setShow(false);
125
131
  currentValue.value = value;
126
132
  emit("change", value);
127
133
  }
@@ -183,7 +189,6 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
183
189
  }, null, 8, ["component"])]),
184
190
  _: 1
185
191
  }, 8, ["style"]), createElementVNode("div", _hoisted_2, [(openBlock(true), createElementBlock(Fragment, null, renderList(englishKeys.value, (key, index) => {
186
- var _a2;
187
192
  return openBlock(), createElementBlock("span", {
188
193
  key,
189
194
  class: normalizeClass(["key" + index]),
@@ -194,7 +199,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
194
199
  }, null, 8, ["component"])) : createCommentVNode("v-if", true), key === "Undo" ? (openBlock(), createBlock(unref(NIcon), {
195
200
  key: 1,
196
201
  component: unref(ArrowUndoSharp)
197
- }, null, 8, ["component"])) : createCommentVNode("v-if", true), createTextVNode(" " + toDisplayString(!ENGLISHOTHERKEY.includes(key) || key === "Enter" ? key : key === "" ? ((_a2 = window.getLanguageByCode) == null ? void 0 : _a2.call(window, "10010.1.143")) || "\u7A7A\u683C" : ""), 1)], 10, _hoisted_3);
202
+ }, null, 8, ["component"])) : createCommentVNode("v-if", true), createTextVNode(" " + toDisplayString(!ENGLISHOTHERKEY.includes(key) || key === "Enter" ? key : key === "" ? function() {
203
+ var _a, _b, _c;
204
+ try {
205
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.143")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.143")) || "\u7A7A\u683C";
206
+ } catch (e) {
207
+ return "\u7A7A\u683C";
208
+ }
209
+ }() : ""), 1)], 10, _hoisted_3);
198
210
  }), 128))])], 6));
199
211
  };
200
212
  }
@@ -250,18 +250,22 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
250
250
  class: "margin-offset",
251
251
  "wrap-item": false
252
252
  }, {
253
- default: withCtx(() => {
254
- var _a;
255
- return [createElementVNode("span", {
256
- class: "opt",
257
- onClick: _cache[2] || (_cache[2] = ($event) => keydown("Undo"))
258
- }, [createVNode(unref(NIcon), {
259
- component: unref(ArrowUndoSharp)
260
- }, null, 8, ["component"])]), createElementVNode("span", {
261
- class: "opt",
262
- onClick: _cache[3] || (_cache[3] = ($event) => keydown("Enter"))
263
- }, ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.27")) || "\u786E\u5B9A")];
264
- }),
253
+ default: withCtx(() => [createElementVNode("span", {
254
+ class: "opt",
255
+ onClick: _cache[2] || (_cache[2] = ($event) => keydown("Undo"))
256
+ }, [createVNode(unref(NIcon), {
257
+ component: unref(ArrowUndoSharp)
258
+ }, null, 8, ["component"])]), createElementVNode("span", {
259
+ class: "opt",
260
+ onClick: _cache[3] || (_cache[3] = ($event) => keydown("Enter"))
261
+ }, function() {
262
+ var _a, _b, _c;
263
+ try {
264
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.27")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.27")) || "\u786E\u5B9A";
265
+ } catch (e) {
266
+ return "\u786E\u5B9A";
267
+ }
268
+ }())]),
265
269
  _: 1
266
270
  })])], 2), unref(isDay) ? (openBlock(), createBlock(unref(NSpace), {
267
271
  key: 0,
@@ -271,12 +275,18 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
271
275
  vertical: ""
272
276
  }, {
273
277
  default: withCtx(() => [(openBlock(true), createElementBlock(Fragment, null, renderList(days.value, (day) => {
274
- var _a;
275
278
  return openBlock(), createElementBlock("span", {
276
279
  class: "btn",
277
280
  key: day,
278
281
  onClick: ($event) => keydown(day)
279
- }, toDisplayString(day) + (((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.144")) || "\u5929"), 9, _hoisted_3);
282
+ }, toDisplayString(day) + function() {
283
+ var _a, _b, _c;
284
+ try {
285
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.144")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.144")) || "\u5929";
286
+ } catch (e) {
287
+ return "\u5929";
288
+ }
289
+ }(), 9, _hoisted_3);
280
290
  }), 128))]),
281
291
  _: 1
282
292
  })) : createCommentVNode("v-if", true), unref(isDose) ? (openBlock(), createBlock(unref(NSpace), {
@@ -295,29 +305,33 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
295
305
  vertical: "",
296
306
  "wrap-item": false
297
307
  }, {
298
- default: withCtx(() => {
299
- var _a;
300
- return [createElementVNode("div", _hoisted_6, [createVNode(InputNumber, {
301
- integer: "",
302
- modelValue: integerValue.value,
303
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => integerValue.value = $event)
304
- }, null, 8, ["modelValue"]), createElementVNode("div", _hoisted_7, [createVNode(InputNumber, {
305
- integer: "",
306
- modelValue: numeratorValue.value,
307
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => numeratorValue.value = $event),
308
- status: numeratorValueStatus.value,
309
- "onUpdate:status": _cache[6] || (_cache[6] = ($event) => numeratorValueStatus.value = $event)
310
- }, null, 8, ["modelValue", "status"]), _hoisted_8, createVNode(InputNumber, {
311
- integer: "",
312
- modelValue: denominatorValue.value,
313
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => denominatorValue.value = $event),
314
- status: denominatorValueStatus.value,
315
- "onUpdate:status": _cache[8] || (_cache[8] = ($event) => denominatorValueStatus.value = $event)
316
- }, null, 8, ["modelValue", "status"])])]), createElementVNode("span", {
317
- class: "btn",
318
- onClick: calculateFraction
319
- }, ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.145")) || "\u5206\u5B50\u5F0F\u5242\u91CF")];
320
- }),
308
+ default: withCtx(() => [createElementVNode("div", _hoisted_6, [createVNode(InputNumber, {
309
+ integer: "",
310
+ modelValue: integerValue.value,
311
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => integerValue.value = $event)
312
+ }, null, 8, ["modelValue"]), createElementVNode("div", _hoisted_7, [createVNode(InputNumber, {
313
+ integer: "",
314
+ modelValue: numeratorValue.value,
315
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => numeratorValue.value = $event),
316
+ status: numeratorValueStatus.value,
317
+ "onUpdate:status": _cache[6] || (_cache[6] = ($event) => numeratorValueStatus.value = $event)
318
+ }, null, 8, ["modelValue", "status"]), _hoisted_8, createVNode(InputNumber, {
319
+ integer: "",
320
+ modelValue: denominatorValue.value,
321
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => denominatorValue.value = $event),
322
+ status: denominatorValueStatus.value,
323
+ "onUpdate:status": _cache[8] || (_cache[8] = ($event) => denominatorValueStatus.value = $event)
324
+ }, null, 8, ["modelValue", "status"])])]), createElementVNode("span", {
325
+ class: "btn",
326
+ onClick: calculateFraction
327
+ }, function() {
328
+ var _a, _b, _c;
329
+ try {
330
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.145")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.145")) || "\u5206\u5B50\u5F0F\u5242\u91CF";
331
+ } catch (e) {
332
+ return "\u5206\u5B50\u5F0F\u5242\u91CF";
333
+ }
334
+ }())]),
321
335
  _: 1
322
336
  })]),
323
337
  _: 1
@@ -340,10 +340,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
340
340
  size: "small",
341
341
  onClick: _cache[1] || (_cache[1] = ($event) => selectLocation(state.addressList[0]))
342
342
  }, {
343
- default: withCtx(() => {
344
- var _a;
345
- return [createTextVNode(((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.27")) || "\u786E\u5B9A")];
346
- }),
343
+ default: withCtx(() => [createTextVNode(function() {
344
+ var _a, _b, _c;
345
+ try {
346
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.27")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.27")) || "\u786E\u5B9A";
347
+ } catch (e) {
348
+ return "\u786E\u5B9A";
349
+ }
350
+ }())]),
347
351
  _: 1
348
352
  })]), (openBlock(true), createElementBlock(Fragment, null, renderList(state.addressList, (item, index) => {
349
353
  return openBlock(), createElementBlock("li", {
@@ -210,19 +210,27 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
210
210
  type: "primary",
211
211
  onClick: preview
212
212
  }, {
213
- default: withCtx(() => {
214
- var _a;
215
- return [createTextVNode(((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.490")) || "\u9884\u89C8")];
216
- }),
213
+ default: withCtx(() => [createTextVNode(function() {
214
+ var _a, _b, _c;
215
+ try {
216
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.490")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.490")) || "\u9884\u89C8";
217
+ } catch (e) {
218
+ return "\u9884\u89C8";
219
+ }
220
+ }())]),
217
221
  _: 1
218
222
  }), createVNode(unref(NButton), {
219
223
  type: "primary",
220
224
  onClick: save
221
225
  }, {
222
- default: withCtx(() => {
223
- var _a;
224
- return [createTextVNode(((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.244")) || "\u4FDD\u5B58")];
225
- }),
226
+ default: withCtx(() => [createTextVNode(function() {
227
+ var _a, _b, _c;
228
+ try {
229
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.244")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.244")) || "\u4FDD\u5B58";
230
+ } catch (e) {
231
+ return "\u4FDD\u5B58";
232
+ }
233
+ }())]),
226
234
  _: 1
227
235
  })])])]);
228
236
  };