vap1 0.0.1
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.
- package/basetype.d.ts +62 -0
- package/basetype.js +2 -0
- package/components/Box/Box.d.ts +118 -0
- package/components/Box/Box.js +150 -0
- package/components/Box/SelectBar.d.ts +90 -0
- package/components/Box/SelectBar.js +93 -0
- package/components/Box/_register.d.ts +49 -0
- package/components/Box/_register.js +29 -0
- package/components/Box/index.d.ts +9 -0
- package/components/Box/index.js +6 -0
- package/components/Lists/SList.d.ts +58 -0
- package/components/Lists/SList.js +167 -0
- package/components/SearchBar/ActionButtons.d.ts +49 -0
- package/components/SearchBar/ActionButtons.js +96 -0
- package/components/SearchBar/ByField.d.ts +3 -0
- package/components/SearchBar/ByField.js +193 -0
- package/components/SearchBar/ByKeyword.d.ts +3 -0
- package/components/SearchBar/ByKeyword.js +34 -0
- package/components/SearchBar/SearchField.d.ts +15 -0
- package/components/SearchBar/SearchField.js +25 -0
- package/components/SearchBar/SearchTags.d.ts +2 -0
- package/components/SearchBar/SearchTags.js +18 -0
- package/components/SearchBar/_FieldType.d.ts +8 -0
- package/components/SearchBar/_FieldType.js +45 -0
- package/components/SearchBar/_register.d.ts +65 -0
- package/components/SearchBar/_register.js +29 -0
- package/components/SearchBar/index.d.ts +134 -0
- package/components/SearchBar/index.js +33 -0
- package/components/Tables/ApiTable.d.ts +18 -0
- package/components/Tables/ApiTable.js +48 -0
- package/components/Tables/ApiTableModal.d.ts +22 -0
- package/components/Tables/ApiTableModal.js +73 -0
- package/components/Tables/Components/ActionBar.d.ts +56 -0
- package/components/Tables/Components/ActionBar.js +100 -0
- package/components/Tables/Components/Actions.d.ts +47 -0
- package/components/Tables/Components/Actions.js +91 -0
- package/components/Tables/Components/Summary.d.ts +11 -0
- package/components/Tables/Components/Summary.js +11 -0
- package/components/Tables/Components/index.d.ts +17 -0
- package/components/Tables/Components/index.js +19 -0
- package/components/Tables/STable.d.ts +5 -0
- package/components/Tables/STable.js +37 -0
- package/components/Tables/TopTable.d.ts +24 -0
- package/components/Tables/TopTable.js +157 -0
- package/components/Tables/TopTableModal.d.ts +5 -0
- package/components/Tables/TopTableModal.js +20 -0
- package/components/Tables/Util.d.ts +3 -0
- package/components/Tables/Util.js +41 -0
- package/components/Tables/VTable.d.ts +11 -0
- package/components/Tables/VTable.js +237 -0
- package/components/Tables/index.d.ts +81 -0
- package/components/Tables/index.js +20 -0
- package/components/TreeSelect/BaseTreeSelect.d.ts +33 -0
- package/components/TreeSelect/BaseTreeSelect.js +190 -0
- package/components/TreeSelect/DTreeSelect.d.ts +24 -0
- package/components/TreeSelect/DTreeSelect.js +66 -0
- package/components/TreeSelect/FTreeSelect.d.ts +11 -0
- package/components/TreeSelect/FTreeSelect.js +39 -0
- package/components/TreeSelect/STreeSelect.d.ts +14 -0
- package/components/TreeSelect/STreeSelect.js +52 -0
- package/components/TreeSelect/index.d.ts +94 -0
- package/components/TreeSelect/index.js +9 -0
- package/components/Trees/ActionTree.d.ts +54 -0
- package/components/Trees/ActionTree.js +657 -0
- package/components/Trees/BaseTree.d.ts +31 -0
- package/components/Trees/BaseTree.js +185 -0
- package/components/Trees/DTree.d.ts +48 -0
- package/components/Trees/DTree.js +142 -0
- package/components/Trees/FTree.d.ts +33 -0
- package/components/Trees/FTree.js +79 -0
- package/components/Trees/STree.d.ts +21 -0
- package/components/Trees/STree.js +92 -0
- package/components/Trees/index.d.ts +134 -0
- package/components/Trees/index.js +9 -0
- package/components/UForm/FormWrapper.d.ts +22 -0
- package/components/UForm/FormWrapper.js +270 -0
- package/components/UForm/UDescriptions.d.ts +5 -0
- package/components/UForm/UDescriptions.js +134 -0
- package/components/UForm/UForm.d.ts +33 -0
- package/components/UForm/UForm.js +484 -0
- package/components/UForm/UFormModal.d.ts +3 -0
- package/components/UForm/UFormModal.js +149 -0
- package/components/UForm/UInfo.d.ts +10 -0
- package/components/UForm/UInfo.js +75 -0
- package/components/UForm/UInfoModal.d.ts +3 -0
- package/components/UForm/UInfoModal.js +50 -0
- package/components/UForm/UModal.d.ts +3 -0
- package/components/UForm/UModal.js +24 -0
- package/components/UForm/_FieldType.d.ts +8 -0
- package/components/UForm/_FieldType.js +100 -0
- package/components/UForm/_FormUtils.d.ts +5 -0
- package/components/UForm/_FormUtils.js +75 -0
- package/components/UForm/_input.d.ts +59 -0
- package/components/UForm/_input.js +147 -0
- package/components/UForm/_register.d.ts +87 -0
- package/components/UForm/_register.js +44 -0
- package/components/UForm/index.d.ts +387 -0
- package/components/UForm/index.js +15 -0
- package/components/Upload/UploadFile.d.ts +3 -0
- package/components/Upload/UploadFile.js +40 -0
- package/components/Upload/UploadImage.d.ts +24 -0
- package/components/Upload/UploadImage.js +93 -0
- package/components/Upload/UploadModal.d.ts +50 -0
- package/components/Upload/UploadModal.js +140 -0
- package/components/Upload/index.d.ts +77 -0
- package/components/Upload/index.js +9 -0
- package/components/Upload/useUpload.d.ts +15 -0
- package/components/Upload/useUpload.js +93 -0
- package/components/_RegisterUtil.d.ts +1 -0
- package/components/_RegisterUtil.js +25 -0
- package/components/_adapt/Alert.d.ts +11 -0
- package/components/_adapt/Alert.js +43 -0
- package/components/_adapt/Button.d.ts +20 -0
- package/components/_adapt/Button.js +26 -0
- package/components/_adapt/Col.d.ts +53 -0
- package/components/_adapt/Col.js +90 -0
- package/components/_adapt/Collapse.d.ts +30 -0
- package/components/_adapt/Collapse.js +33 -0
- package/components/_adapt/Drawer.d.ts +12 -0
- package/components/_adapt/Drawer.js +11 -0
- package/components/_adapt/Dropdown.d.ts +15 -0
- package/components/_adapt/Dropdown.js +38 -0
- package/components/_adapt/Icon.d.ts +14 -0
- package/components/_adapt/Icon.js +34 -0
- package/components/_adapt/Image.d.ts +4 -0
- package/components/_adapt/Image.js +11 -0
- package/components/_adapt/Menu.d.ts +32 -0
- package/components/_adapt/Menu.js +25 -0
- package/components/_adapt/Modal.d.ts +23 -0
- package/components/_adapt/Modal.js +69 -0
- package/components/_adapt/Popconfirm.d.ts +5 -0
- package/components/_adapt/Popconfirm.js +34 -0
- package/components/_adapt/Popover.d.ts +5 -0
- package/components/_adapt/Popover.js +34 -0
- package/components/_adapt/Progress.d.ts +14 -0
- package/components/_adapt/Progress.js +56 -0
- package/components/_adapt/Row.d.ts +10 -0
- package/components/_adapt/Row.js +23 -0
- package/components/_adapt/Select.d.ts +14 -0
- package/components/_adapt/Select.js +47 -0
- package/components/_adapt/Tag.d.ts +7 -0
- package/components/_adapt/Tag.js +12 -0
- package/components/_adapt/Tooltip.d.ts +5 -0
- package/components/_adapt/Tooltip.js +11 -0
- package/components/_adapt/todo/ColorPicker.d.ts +3 -0
- package/components/_adapt/todo/ColorPicker.js +42 -0
- package/components/_adapt/todo/FloatButton.d.ts +2 -0
- package/components/_adapt/todo/FloatButton.js +6 -0
- package/components/_adapt/todo/Image.d.ts +2 -0
- package/components/_adapt/todo/Image.js +6 -0
- package/components/_adapt/todo/Segmented.d.ts +2 -0
- package/components/_adapt/todo/Segmented.js +6 -0
- package/components/_adapt/todo/Space.d.ts +2 -0
- package/components/_adapt/todo/Space.js +6 -0
- package/components/_adapt/utils.d.ts +12 -0
- package/components/_adapt/utils.js +93 -0
- package/components/_common/AutoComplete.d.ts +32 -0
- package/components/_common/AutoComplete.js +87 -0
- package/components/_common/CountUp.d.ts +38 -0
- package/components/_common/CountUp.js +60 -0
- package/components/_common/DateRange.d.ts +52 -0
- package/components/_common/DateRange.js +108 -0
- package/components/_common/HighLight.d.ts +15 -0
- package/components/_common/HighLight.js +37 -0
- package/components/_common/I18N.d.ts +7 -0
- package/components/_common/I18N.js +6 -0
- package/components/_common/Loading.d.ts +9 -0
- package/components/_common/Loading.js +52 -0
- package/components/_common/MonthRange.d.ts +46 -0
- package/components/_common/MonthRange.js +130 -0
- package/components/_common/PromiseLabel.d.ts +11 -0
- package/components/_common/PromiseLabel.js +34 -0
- package/components/_common/Role.d.ts +5 -0
- package/components/_common/Role.js +11 -0
- package/components/_common/Upagination.d.ts +21 -0
- package/components/_common/Upagination.js +106 -0
- package/components/_setup/Const.d.ts +205 -0
- package/components/_setup/Const.js +112 -0
- package/components/_setup/I18N/enUS.d.ts +1 -0
- package/components/_setup/I18N/enUS.js +106 -0
- package/components/_setup/I18N/index.d.ts +3 -0
- package/components/_setup/I18N/index.js +5 -0
- package/components/_setup/I18N/zhCN.d.ts +3 -0
- package/components/_setup/I18N/zhCN.js +109 -0
- package/components/_setup/I18N/zhHK.d.ts +1 -0
- package/components/_setup/I18N/zhHK.js +107 -0
- package/components/_setup/ICON/IconTypes.d.ts +1 -0
- package/components/_setup/ICON/IconTypes.js +10 -0
- package/components/_setup/SearchField/SearchFieldAdvance.d.ts +1 -0
- package/components/_setup/SearchField/SearchFieldAdvance.js +57 -0
- package/components/_setup/SearchField/SearchFieldDate.d.ts +1 -0
- package/components/_setup/SearchField/SearchFieldDate.js +186 -0
- package/components/_setup/SearchField/SearchFieldInput.d.ts +3 -0
- package/components/_setup/SearchField/SearchFieldInput.js +20 -0
- package/components/_setup/SearchField/SearchFieldSelect.d.ts +1 -0
- package/components/_setup/SearchField/SearchFieldSelect.js +106 -0
- package/components/_setup/SearchField/SearchFieldTree.d.ts +1 -0
- package/components/_setup/SearchField/SearchFieldTree.js +191 -0
- package/components/_setup/SelectBar/SelectList.d.ts +1 -0
- package/components/_setup/SelectBar/SelectList.js +21 -0
- package/components/_setup/SelectBar/SelectTree.d.ts +1 -0
- package/components/_setup/SelectBar/SelectTree.js +11 -0
- package/components/_setup/UForm/UFormAdvanceInput.d.ts +1 -0
- package/components/_setup/UForm/UFormAdvanceInput.js +300 -0
- package/components/_setup/UForm/UFormAdvanceSelect.d.ts +0 -0
- package/components/_setup/UForm/UFormAdvanceSelect.js +26 -0
- package/components/_setup/UForm/UFormCrontab.d.ts +1 -0
- package/components/_setup/UForm/UFormCrontab.js +199 -0
- package/components/_setup/UForm/UFormDate.d.ts +1 -0
- package/components/_setup/UForm/UFormDate.js +313 -0
- package/components/_setup/UForm/UFormInput.d.ts +1 -0
- package/components/_setup/UForm/UFormInput.js +159 -0
- package/components/_setup/UForm/UFormJSON.d.ts +1 -0
- package/components/_setup/UForm/UFormJSON.js +219 -0
- package/components/_setup/UForm/UFormOrg.d.ts +1 -0
- package/components/_setup/UForm/UFormOrg.js +121 -0
- package/components/_setup/UForm/UFormRole.d.ts +1 -0
- package/components/_setup/UForm/UFormRole.js +47 -0
- package/components/_setup/UForm/UFormSearch.d.ts +0 -0
- package/components/_setup/UForm/UFormSearch.js +35 -0
- package/components/_setup/UForm/UFormSelect.d.ts +1 -0
- package/components/_setup/UForm/UFormSelect.js +179 -0
- package/components/_setup/UForm/UFormTree.d.ts +0 -0
- package/components/_setup/UForm/UFormTree.js +134 -0
- package/components/_setup/UForm/UFormUpload.d.ts +1 -0
- package/components/_setup/UForm/UFormUpload.js +173 -0
- package/components/_setup/UForm/_utils.d.ts +11 -0
- package/components/_setup/UForm/_utils.js +41 -0
- package/components/_setup/index.d.ts +21 -0
- package/components/_setup/index.js +25 -0
- package/components/index.d.ts +7 -0
- package/components/index.js +16 -0
- package/deps/JsonView.d.ts +6 -0
- package/deps/JsonView.js +57 -0
- package/deps/SpringBoot.d.ts +4 -0
- package/deps/SpringBoot.js +18 -0
- package/deps/SpringCloud.d.ts +14 -0
- package/deps/SpringCloud.js +29 -0
- package/deps/_editor/advance/_Audio.d.ts +0 -0
- package/deps/_editor/advance/_Audio.js +1 -0
- package/deps/_editor/advance/_Image.d.ts +2 -0
- package/deps/_editor/advance/_Image.js +89 -0
- package/deps/_editor/advance/_Table.d.ts +0 -0
- package/deps/_editor/advance/_Table.js +1 -0
- package/deps/_editor/advance/_Video.d.ts +0 -0
- package/deps/_editor/advance/_Video.js +1 -0
- package/deps/_editor/base/Element.d.ts +5 -0
- package/deps/_editor/base/Element.js +43 -0
- package/deps/_editor/base/Leaf.d.ts +3 -0
- package/deps/_editor/base/Leaf.js +36 -0
- package/deps/_editor/base/Support.d.ts +2 -0
- package/deps/_editor/base/Support.js +78 -0
- package/deps/_editor/base/types.d.ts +156 -0
- package/deps/_editor/base/types.js +10 -0
- package/deps/_editor/i18n.d.ts +1 -0
- package/deps/_editor/i18n.js +31 -0
- package/deps/_editor/tools/Button.d.ts +6 -0
- package/deps/_editor/tools/Button.js +86 -0
- package/deps/_editor/tools/ToolBar.d.ts +8 -0
- package/deps/_editor/tools/ToolBar.js +10 -0
- package/deps/_editor/tools/_BlockButton.d.ts +4 -0
- package/deps/_editor/tools/_BlockButton.js +77 -0
- package/deps/_editor/tools/_InsertButton.d.ts +6 -0
- package/deps/_editor/tools/_InsertButton.js +65 -0
- package/deps/_editor/tools/_MarkButton.d.ts +6 -0
- package/deps/_editor/tools/_MarkButton.js +45 -0
- package/deps/_editor/tools/_TxtButton.d.ts +7 -0
- package/deps/_editor/tools/_TxtButton.js +187 -0
- package/deps/_editor/utils/ParseHtml.d.ts +0 -0
- package/deps/_editor/utils/ParseHtml.js +220 -0
- package/deps/api-audit.d.ts +1 -0
- package/deps/api-audit.js +6 -0
- package/deps/api-data.d.ts +0 -0
- package/deps/api-data.js +1 -0
- package/deps/apis/useSource.d.ts +0 -0
- package/deps/apis/useSource.js +152 -0
- package/deps/echarts.d.ts +26 -0
- package/deps/echarts.js +71 -0
- package/deps/editor.d.ts +34 -0
- package/deps/editor.js +111 -0
- package/deps/registerEditor.d.ts +1 -0
- package/deps/registerEditor.js +15 -0
- package/hooks/_list.d.ts +87 -0
- package/hooks/_list.js +13 -0
- package/hooks/index.d.ts +14 -0
- package/hooks/index.js +49 -0
- package/hooks/useAjax.d.ts +14 -0
- package/hooks/useAjax.js +43 -0
- package/hooks/useAjaxAction.d.ts +13 -0
- package/hooks/useAjaxAction.js +42 -0
- package/hooks/useAjaxQuery.d.ts +40 -0
- package/hooks/useAjaxQuery.js +81 -0
- package/hooks/useApi.d.ts +69 -0
- package/hooks/useApi.js +352 -0
- package/hooks/useApiGlobal.d.ts +0 -0
- package/hooks/useApiGlobal.js +5 -0
- package/hooks/useApp.d.ts +243 -0
- package/hooks/useApp.js +17 -0
- package/hooks/useArray.d.ts +21 -0
- package/hooks/useArray.js +182 -0
- package/hooks/useCounter.d.ts +0 -0
- package/hooks/useCounter.js +82 -0
- package/hooks/useDefault.d.ts +6 -0
- package/hooks/useDefault.js +16 -0
- package/hooks/useDoLoad.d.ts +17 -0
- package/hooks/useDoLoad.js +44 -0
- package/hooks/useEffectFunction.d.ts +8 -0
- package/hooks/useEffectFunction.js +16 -0
- package/hooks/useEffectOnce.d.ts +5 -0
- package/hooks/useEffectOnce.js +23 -0
- package/hooks/useError.d.ts +5 -0
- package/hooks/useError.js +21 -0
- package/hooks/useFirstMountState.d.ts +6 -0
- package/hooks/useFirstMountState.js +18 -0
- package/hooks/useGenkey.d.ts +2 -0
- package/hooks/useGenkey.js +16 -0
- package/hooks/useGetSet.d.ts +11 -0
- package/hooks/useGetSet.js +27 -0
- package/hooks/useGlobal.d.ts +19 -0
- package/hooks/useGlobal.js +62 -0
- package/hooks/useGlobal_back.d.ts +1 -0
- package/hooks/useGlobal_back.js +11 -0
- package/hooks/useHover.d.ts +8 -0
- package/hooks/useHover.js +49 -0
- package/hooks/useMemoPromise.d.ts +6 -0
- package/hooks/useMemoPromise.js +42 -0
- package/hooks/useModals.d.ts +40 -0
- package/hooks/useModals.js +98 -0
- package/hooks/useMountedState.d.ts +5 -0
- package/hooks/useMountedState.js +20 -0
- package/hooks/useOpenState.d.ts +28 -0
- package/hooks/useOpenState.js +23 -0
- package/hooks/usePromise.d.ts +7 -0
- package/hooks/usePromise.js +22 -0
- package/hooks/useQueue.d.ts +12 -0
- package/hooks/useQueue.js +34 -0
- package/hooks/useSetState.d.ts +9 -0
- package/hooks/useSetState.js +26 -0
- package/hooks/useStateList.d.ts +13 -0
- package/hooks/useStateList.js +59 -0
- package/hooks/useToggle.d.ts +6 -0
- package/hooks/useToggle.js +12 -0
- package/hooks/useUnmountPromise.d.ts +6 -0
- package/hooks/useUnmountPromise.js +36 -0
- package/hooks/useUpdate.d.ts +7 -0
- package/hooks/useUpdate.js +15 -0
- package/hooks/useUpdateEffect.d.ts +6 -0
- package/hooks/useUpdateEffect.js +18 -0
- package/index.d.ts +139 -0
- package/index.js +161 -0
- package/login/Base65.d.ts +8 -0
- package/login/Base65.js +65 -0
- package/login/Password.d.ts +61 -0
- package/login/Password.js +124 -0
- package/login/SM4.d.ts +20 -0
- package/login/SM4.js +193 -0
- package/login/cems/index.d.ts +10 -0
- package/login/cems/index.js +17 -0
- package/login/jit/index.d.ts +32 -0
- package/login/jit/index.js +180 -0
- package/login/jit/pnxclient.d.ts +54 -0
- package/login/jit/pnxclient.js +575 -0
- package/login/sso/index.d.ts +0 -0
- package/login/sso/index.js +0 -0
- package/login/vap/index.d.ts +1 -0
- package/login/vap/index.js +6 -0
- package/login/xrtx/index.d.ts +2 -0
- package/login/xrtx/index.js +33 -0
- package/package.json +1 -0
- package/screen/Comment.d.ts +31 -0
- package/screen/Comment.js +29 -0
- package/screen/EchartContent.d.ts +0 -0
- package/screen/EchartContent.js +63 -0
- package/screen/Page.d.ts +13 -0
- package/screen/Page.js +74 -0
- package/screen/index.d.ts +3 -0
- package/screen/index.js +9 -0
- package/screen/render.d.ts +5 -0
- package/screen/render.js +10 -0
- package/utils/Ajax.d.ts +85 -0
- package/utils/Ajax.js +147 -0
- package/utils/ArrayUtil.d.ts +22 -0
- package/utils/ArrayUtil.js +51 -0
- package/utils/CacheUtil.d.ts +20 -0
- package/utils/CacheUtil.js +86 -0
- package/utils/Const.d.ts +14 -0
- package/utils/Const.js +37 -0
- package/utils/CustomApp.d.ts +242 -0
- package/utils/CustomApp.js +18 -0
- package/utils/EventUtil.d.ts +22 -0
- package/utils/EventUtil.js +63 -0
- package/utils/Format.d.ts +28 -0
- package/utils/Format.js +206 -0
- package/utils/Global.d.ts +276 -0
- package/utils/Global.js +125 -0
- package/utils/Logger.d.ts +5 -0
- package/utils/Logger.js +32 -0
- package/utils/PageUtil.d.ts +24 -0
- package/utils/PageUtil.js +87 -0
- package/utils/Renders/ApiGetRender.d.ts +23 -0
- package/utils/Renders/ApiGetRender.js +192 -0
- package/utils/Renders/ApiPostRender.d.ts +17 -0
- package/utils/Renders/ApiPostRender.js +161 -0
- package/utils/Renders/DateRender.d.ts +8 -0
- package/utils/Renders/DateRender.js +35 -0
- package/utils/Renders/DictRender.d.ts +23 -0
- package/utils/Renders/DictRender.js +258 -0
- package/utils/Renders/FileRender.d.ts +3 -0
- package/utils/Renders/FileRender.js +46 -0
- package/utils/Renders/ListRender.d.ts +23 -0
- package/utils/Renders/ListRender.js +111 -0
- package/utils/Renders/NumberRender.d.ts +19 -0
- package/utils/Renders/NumberRender.js +65 -0
- package/utils/Renders/StatusRender.d.ts +12 -0
- package/utils/Renders/StatusRender.js +68 -0
- package/utils/Renders/StringRender.d.ts +14 -0
- package/utils/Renders/StringRender.js +194 -0
- package/utils/Renders/_define.d.ts +26 -0
- package/utils/Renders/_define.js +64 -0
- package/utils/Renders/index.d.ts +9 -0
- package/utils/Renders/index.js +42 -0
- package/utils/StringUtil.d.ts +124 -0
- package/utils/StringUtil.js +352 -0
- package/utils/TreeUtil.d.ts +42 -0
- package/utils/TreeUtil.js +69 -0
- package/utils/VAP.d.ts +16 -0
- package/utils/VAP.js +78 -0
- package/utils/XHR.d.ts +9 -0
- package/utils/XHR.js +53 -0
- package/utils/_AjaxUtil.d.ts +11 -0
- package/utils/_AjaxUtil.js +45 -0
- package/utils/_Support.d.ts +22 -0
- package/utils/_Support.js +106 -0
- package/utils/i18n.d.ts +60 -0
- package/utils/i18n.js +184 -0
- package/utils/index.d.ts +19 -0
- package/utils/index.js +54 -0
- package/utils/screenful.d.ts +15 -0
- package/utils/screenful.js +64 -0
- package/widget/index.d.ts +39 -0
- package/widget/index.js +21 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.V = exports.TXT = exports.NAMESPACE = void 0;
|
|
7
|
+
const lodash_1 = __importDefault(require("lodash"));
|
|
8
|
+
exports.NAMESPACE = '_V_INNER';
|
|
9
|
+
exports.TXT = {
|
|
10
|
+
INPUT_TEXT: 'INPUT_TEXT',
|
|
11
|
+
INPUT_SELECT: 'INPUT_SELECT',
|
|
12
|
+
INPUT_MORE: 'INPUT_MORE',
|
|
13
|
+
INPUT_CHECK_ALL: 'INPUT_CHECK_ALL',
|
|
14
|
+
INPUT_SET_CRONTAB: 'INPUT_SET_CRONTAB',
|
|
15
|
+
INPUT_SEARCH_KEYWORD: 'INPUT_SEARCH_KEYWORD',
|
|
16
|
+
INPUT_SEARCH_ADVANCE: 'INPUT_SEARCH_ADVANCE',
|
|
17
|
+
INPUT_ORG_SLECT: 'INPUT_ORG_SLECT',
|
|
18
|
+
BTN_SEARCH: 'BTN_SEARCH',
|
|
19
|
+
BTN_RESET: 'BTN_RESET',
|
|
20
|
+
BTN_MORE: 'BTN_MORE',
|
|
21
|
+
BTN_LESS: 'BTN_LESS',
|
|
22
|
+
BTN_IMPORT: 'BTN_IMPORT',
|
|
23
|
+
BTN_EXPORT: 'BTN_EXPORT',
|
|
24
|
+
BTN_UPLOAD: 'BTN_UPLOAD',
|
|
25
|
+
BTN_DOWNLOAD: 'BTN_DOWNLOAD',
|
|
26
|
+
BTN_INFO: 'BTN_INFO',
|
|
27
|
+
ERR_REQUIRED: 'ERR_REQUIRED',
|
|
28
|
+
ERR_FORMAT: 'ERR_FORMAT',
|
|
29
|
+
ERR_ILLEGAL_CHAR: 'ERR_ILLEGAL_CHAR',
|
|
30
|
+
ERR_NOT_IP: 'ERR_NOT_IP',
|
|
31
|
+
ERR_NOT_IP4: 'ERR_NOT_IP4',
|
|
32
|
+
ERR_NOT_IP6: 'ERR_NOT_IP6',
|
|
33
|
+
ERR_NOT_URL: 'ERR_NOT_URL',
|
|
34
|
+
ERR_NOT_PORT: 'ERR_NOT_PORT',
|
|
35
|
+
ERR_NOT_EMAIL: 'ERR_NOT_EMAIL',
|
|
36
|
+
ERR_NOT_IDCARD: 'ERR_NOT_IDCARD',
|
|
37
|
+
ERR_NOT_PHONE: 'ERR_NOT_PHONE',
|
|
38
|
+
ERR_NOT_MOBILE: 'ERR_NOT_MOBILE',
|
|
39
|
+
ERR_NOT_MAC: 'ERR_NOT_MAC',
|
|
40
|
+
ERR_UPLOAD_TOO_LARGE: 'ERR_UPLOAD_TOO_LARGE',
|
|
41
|
+
ACT_INFO_TITLE: 'ACT_INFO_TITLE',
|
|
42
|
+
ACT_INFO_TITLE_NAMED: 'ACT_INFO_TITLE_NAMED',
|
|
43
|
+
ACT_ADD: 'ACT_ADD',
|
|
44
|
+
ACT_ADD_TITLE: 'ACT_ADD_TITLE',
|
|
45
|
+
ACT_ADD_TITLE_NAMED: 'ACT_ADD_TITLE_NAMED',
|
|
46
|
+
ACT_ADD_SUCCESS: 'ACT_ADD_SUCCESS',
|
|
47
|
+
ACT_ADD_FAIL: 'ACT_ADD_FAIL',
|
|
48
|
+
ACT_ADD_SUCCESS_NAMED: 'ACT_ADD_SUCCESS_NAMED',
|
|
49
|
+
ACT_ADD_FAIL_NAMED: 'ACT_ADD_FAIL_NAMED',
|
|
50
|
+
ACT_UPDATE: 'ACT_UPDATE',
|
|
51
|
+
ACT_UPDATE_TITLE: 'ACT_UPDATE_TITLE',
|
|
52
|
+
ACT_UPDATE_TITLE_NAMED: 'ACT_UPDATE_TITLE_NAMED',
|
|
53
|
+
ACT_UPDATE_SUCCESS: 'ACT_UPDATE_SUCCESS',
|
|
54
|
+
ACT_UPDATE_FAIL: 'ACT_UPDATE_FAIL',
|
|
55
|
+
ACT_UPDATE_SUCCESS_NAMED: 'ACT_UPDATE_SUCCESS_NAMED',
|
|
56
|
+
ACT_UPDATE_FAIL_NAMED: 'ACT_UPDATE_FAIL_NAMED',
|
|
57
|
+
ACT_DELETE: 'ACT_DELETE',
|
|
58
|
+
ACT_DELETE_BATCH: 'ACT_DELETE_BATCH',
|
|
59
|
+
ACT_DELETE_CONFIRM: 'ACT_DELETE_CONFIRM',
|
|
60
|
+
ACT_DELETE_SUCCESS: 'ACT_DELETE_SUCCESS',
|
|
61
|
+
ACT_DELETE_FAIL: 'ACT_DELETE_FAIL',
|
|
62
|
+
ACT_DELETE_SUCCESS_NAMED: 'ACT_DELETE_SUCCESS_NAMED',
|
|
63
|
+
ACT_DELETE_FAIL_NAMED: 'ACT_DELETE_FAIL_NAMED',
|
|
64
|
+
ACT_DELETE_SUCCESS_COUNT: 'ACT_DELETE_SUCCESS_COUNT',
|
|
65
|
+
ACT_DELETE_FAIL_COUNT: 'ACT_DELETE_FAIL_COUNT',
|
|
66
|
+
DATE_START: 'DATE_START',
|
|
67
|
+
DATE_END: 'DATE_END',
|
|
68
|
+
DATETIME_START: 'DATETIME_START',
|
|
69
|
+
DATETIME_END: 'DATETIME_END',
|
|
70
|
+
DATE_START_FROM: 'DATE_START_FROM',
|
|
71
|
+
DATE_END_TO: 'DATE_END_TO',
|
|
72
|
+
DATE_START_TO_END: 'DATE_START_TO_END',
|
|
73
|
+
DATE_MONTH_START: 'DATE_MONTH_START',
|
|
74
|
+
DATE_MONTH_END: 'DATE_MONTH_END',
|
|
75
|
+
TXT_ALL: 'TXT_ALL',
|
|
76
|
+
TXT_IDX: 'TXT_IDX',
|
|
77
|
+
TXT_RANK: 'TXT_RANK',
|
|
78
|
+
TXT_OPERATION: 'TXT_OPERATION',
|
|
79
|
+
TXT_FIND_NULL: 'TXT_FIND_NULL',
|
|
80
|
+
TXT_EXPAND: 'TXT_EXPAND',
|
|
81
|
+
TXT_COLLAPSE: 'TXT_COLLAPSE',
|
|
82
|
+
TREE_NODE: 'TREE_NODE',
|
|
83
|
+
TREE_INSERT_TOP: 'TREE_INSERT_TOP',
|
|
84
|
+
TREE_INSERT_BOTTOM: 'TREE_INSERT_BOTTOM',
|
|
85
|
+
TREE_INSERT_BEFORE: 'TREE_INSERT_BEFORE',
|
|
86
|
+
TREE_INSERT_AFTER: 'TREE_INSERT_AFTER',
|
|
87
|
+
TREE_INSERT_INNER: 'TREE_INSERT_INNER',
|
|
88
|
+
TREE_SORT_SUCCESS: 'TREE_SORT_SUCCESS',
|
|
89
|
+
TREE_SORT_FAIL: 'TREE_SORT_FAIL',
|
|
90
|
+
LANG_ZH_CN: 'LANG_ZH_CN',
|
|
91
|
+
LANG_EN_US: 'LANG_EN_US',
|
|
92
|
+
LANG_ZH_HK: 'LANG_ZH_HK',
|
|
93
|
+
SWITCH_YES: 'SWITCH_YES',
|
|
94
|
+
SWITCH_NO: 'SWITCH_NO',
|
|
95
|
+
SWITCH_OPEN: 'SWITCH_OPEN',
|
|
96
|
+
SWITCH_CLOSE: 'SWITCH_CLOSE',
|
|
97
|
+
SWITCH_ENABLE: 'SWITCH_ENABLE',
|
|
98
|
+
SWITCH_DISABLE: 'SWITCH_DISABLE',
|
|
99
|
+
SWITCH_SHOW: 'SWITCH_SHOW',
|
|
100
|
+
SWITCH_HIDE: 'SWITCH_HIDE',
|
|
101
|
+
UPLOAD_FILE: 'UPLOAD_FILE',
|
|
102
|
+
UPLOAD_PIC: 'UPLOAD_PIC',
|
|
103
|
+
UPLOAD_SUCCESS: 'UPLOAD_SUCCESS',
|
|
104
|
+
UPLOAD_SUCCESS_IMPORT: 'UPLOAD_SUCCESS_IMPORT',
|
|
105
|
+
UPLOAD_ERROR: 'UPLOAD_ERROR',
|
|
106
|
+
UPLOAD_ERROR_FILE: 'UPLOAD_ERROR_FILE',
|
|
107
|
+
UPLOAD_ERROR_IMPORT: 'UPLOAD_ERROR_IMPORT',
|
|
108
|
+
UPLOAD_MODAL_TITLE: 'UPLOAD_MODAL_TITLE',
|
|
109
|
+
UPLOAD_MODAL_TIP: 'UPLOAD_MODAL_TIP',
|
|
110
|
+
};
|
|
111
|
+
exports.V = {};
|
|
112
|
+
lodash_1.default.keys(exports.TXT).map(key => exports.V[key] = exports.NAMESPACE + '.' + exports.TXT[key]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const zhCN_1 = require("./zhCN");
|
|
4
|
+
const i18n_1 = require("../../../utils/i18n");
|
|
5
|
+
(0, zhCN_1.register)(i18n_1.Language.EN_US, {
|
|
6
|
+
INPUT_TEXT: 'Please Input ',
|
|
7
|
+
INPUT_SELECT: 'Please Select ',
|
|
8
|
+
INPUT_MORE: 'More',
|
|
9
|
+
INPUT_CHECK_ALL: 'Check All',
|
|
10
|
+
INPUT_SET_CRONTAB: 'Set Crontab',
|
|
11
|
+
INPUT_SEARCH_KEYWORD: 'Please Input Keywords',
|
|
12
|
+
INPUT_SEARCH_ADVANCE: 'Advancce Search',
|
|
13
|
+
INPUT_ORG_SLECT: 'Please Select Organization',
|
|
14
|
+
BTN_SEARCH: 'Search',
|
|
15
|
+
BTN_RESET: 'Reset',
|
|
16
|
+
BTN_MORE: 'Show More',
|
|
17
|
+
BTN_LESS: 'Show Less',
|
|
18
|
+
BTN_IMPORT: 'Import',
|
|
19
|
+
BTN_EXPORT: 'Export',
|
|
20
|
+
BTN_UPLOAD: 'Upload',
|
|
21
|
+
BTN_DOWNLOAD: 'Download',
|
|
22
|
+
BTN_INFO: 'Info',
|
|
23
|
+
ERR_REQUIRED: '{0} is required.',
|
|
24
|
+
ERR_FORMAT: 'Incorect Format : {0} ',
|
|
25
|
+
ERR_ILLEGAL_CHAR: 'Illegal Character',
|
|
26
|
+
ERR_NOT_IP: 'IP address is not correct',
|
|
27
|
+
ERR_NOT_IP4: 'IPv4 address is not correct',
|
|
28
|
+
ERR_NOT_IP6: 'IPv6 address is not correct',
|
|
29
|
+
ERR_NOT_URL: 'URL address is not correct',
|
|
30
|
+
ERR_NOT_PORT: 'Port should in range 1 - 65535',
|
|
31
|
+
ERR_NOT_EMAIL: 'EMail address is not correct',
|
|
32
|
+
ERR_NOT_IDCARD: 'IDCard is not correct',
|
|
33
|
+
ERR_NOT_PHONE: 'Phone No. is not correct',
|
|
34
|
+
ERR_NOT_MOBILE: 'Mobile No. is not correct',
|
|
35
|
+
ERR_NOT_MAC: 'MAC address is not correct',
|
|
36
|
+
ERR_UPLOAD_TOO_LARGE: 'Upload File must not more than {0}',
|
|
37
|
+
ACT_INFO_TITLE: 'View Info',
|
|
38
|
+
ACT_INFO_TITLE_NAMED: 'View Info : {0}',
|
|
39
|
+
TXT_ALL: 'All',
|
|
40
|
+
TXT_IDX: 'Index',
|
|
41
|
+
TXT_RANK: 'Rank',
|
|
42
|
+
TXT_OPERATION: 'Operation',
|
|
43
|
+
TXT_FIND_NULL: 'Can not find item with {0}',
|
|
44
|
+
TXT_EXPAND: 'Expand',
|
|
45
|
+
TXT_COLLAPSE: 'Collapse',
|
|
46
|
+
ACT_ADD: 'Add',
|
|
47
|
+
ACT_ADD_TITLE: 'Add Item',
|
|
48
|
+
ACT_ADD_TITLE_NAMED: 'Add {0}',
|
|
49
|
+
ACT_ADD_SUCCESS: 'Success Added',
|
|
50
|
+
ACT_ADD_FAIL: 'Add Error',
|
|
51
|
+
ACT_ADD_SUCCESS_NAMED: '{0} is Added.',
|
|
52
|
+
ACT_ADD_FAIL_NAMED: 'Add Fail : {0}',
|
|
53
|
+
ACT_UPDATE: 'Edit',
|
|
54
|
+
ACT_UPDATE_TITLE: 'Edit Info',
|
|
55
|
+
ACT_UPDATE_TITLE_NAMED: 'Edit {0}',
|
|
56
|
+
ACT_UPDATE_SUCCESS: 'Success Updated',
|
|
57
|
+
ACT_UPDATE_FAIL: 'Update Error',
|
|
58
|
+
ACT_UPDATE_SUCCESS_NAMED: '{0} is Updated.',
|
|
59
|
+
ACT_UPDATE_FAIL_NAMED: 'Update Error : {0}',
|
|
60
|
+
ACT_DELETE: 'Delete',
|
|
61
|
+
ACT_DELETE_BATCH: 'Delete selected sections?',
|
|
62
|
+
ACT_DELETE_CONFIRM: 'Are you sure delete {0} ?',
|
|
63
|
+
ACT_DELETE_SUCCESS: 'Item is deleted',
|
|
64
|
+
ACT_DELETE_FAIL: 'Delete Error',
|
|
65
|
+
ACT_DELETE_SUCCESS_NAMED: 'Delete {0} Success',
|
|
66
|
+
ACT_DELETE_FAIL_NAMED: 'Delete {0} Fail',
|
|
67
|
+
ACT_DELETE_SUCCESS_COUNT: 'Success delete {0} records',
|
|
68
|
+
ACT_DELETE_FAIL_COUNT: '{0} Records Delete Failed ',
|
|
69
|
+
DATE_START: 'Start Date',
|
|
70
|
+
DATE_END: 'End Date',
|
|
71
|
+
DATETIME_START: 'Start Time',
|
|
72
|
+
DATETIME_END: 'End Time',
|
|
73
|
+
DATE_START_FROM: 'Form {0}',
|
|
74
|
+
DATE_END_TO: 'To {0}',
|
|
75
|
+
DATE_START_TO_END: '{0} - {1}',
|
|
76
|
+
DATE_MONTH_START: 'Start Month',
|
|
77
|
+
DATE_MONTH_END: 'End Month',
|
|
78
|
+
TREE_NODE: 'Node',
|
|
79
|
+
TREE_INSERT_TOP: 'Insert {0} at TOP',
|
|
80
|
+
TREE_INSERT_BOTTOM: 'Insert {0} at BUTTOM',
|
|
81
|
+
TREE_INSERT_BEFORE: 'Insert Above',
|
|
82
|
+
TREE_INSERT_AFTER: 'Insert Folow',
|
|
83
|
+
TREE_INSERT_INNER: 'Insert Inner',
|
|
84
|
+
TREE_SORT_SUCCESS: 'Sort Success',
|
|
85
|
+
TREE_SORT_FAIL: 'Sort Field',
|
|
86
|
+
LANG_ZH_CN: 'Simplified',
|
|
87
|
+
LANG_EN_US: 'English',
|
|
88
|
+
LANG_ZH_HK: 'Traditional',
|
|
89
|
+
SWITCH_YES: 'Yes',
|
|
90
|
+
SWITCH_NO: 'No',
|
|
91
|
+
SWITCH_OPEN: 'Open',
|
|
92
|
+
SWITCH_CLOSE: 'Close',
|
|
93
|
+
SWITCH_ENABLE: 'Enable',
|
|
94
|
+
SWITCH_DISABLE: 'Disabled',
|
|
95
|
+
SWITCH_SHOW: 'Show',
|
|
96
|
+
SWITCH_HIDE: 'Hide',
|
|
97
|
+
UPLOAD_FILE: 'Upload File',
|
|
98
|
+
UPLOAD_PIC: 'Upload Img',
|
|
99
|
+
UPLOAD_SUCCESS: 'Upload Success',
|
|
100
|
+
UPLOAD_SUCCESS_IMPORT: 'Data Import Success',
|
|
101
|
+
UPLOAD_ERROR: 'Upload Failed',
|
|
102
|
+
UPLOAD_ERROR_FILE: 'File : {0} Uplaod Filed',
|
|
103
|
+
UPLOAD_ERROR_IMPORT: 'Data Import Filed',
|
|
104
|
+
UPLOAD_MODAL_TITLE: 'Import Data',
|
|
105
|
+
UPLOAD_MODAL_TIP: 'Notice 导入的Excel数据字段须与Excel模版保持一致,否则无法导入数据。 点击确认时将仅导入正常数据',
|
|
106
|
+
});
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.register = void 0;
|
|
4
|
+
const i18n_1 = require("../../../utils/i18n");
|
|
5
|
+
const Const_1 = require("../Const");
|
|
6
|
+
const register = (lang, resource) => (0, i18n_1.register)(lang, Const_1.NAMESPACE, resource);
|
|
7
|
+
exports.register = register;
|
|
8
|
+
(0, exports.register)(i18n_1.Language.ZH_CN, {
|
|
9
|
+
INPUT_TEXT: '请输入',
|
|
10
|
+
INPUT_SELECT: '请选择',
|
|
11
|
+
INPUT_MORE: '更多',
|
|
12
|
+
INPUT_CHECK_ALL: '全部',
|
|
13
|
+
INPUT_SET_CRONTAB: '设置周期',
|
|
14
|
+
INPUT_SEARCH_KEYWORD: '请输入关键字',
|
|
15
|
+
INPUT_SEARCH_ADVANCE: '高级搜索',
|
|
16
|
+
INPUT_ORG_SLECT: '请选择机构',
|
|
17
|
+
BTN_SEARCH: '搜索',
|
|
18
|
+
BTN_RESET: '重置',
|
|
19
|
+
BTN_MORE: '更多',
|
|
20
|
+
BTN_LESS: '更少',
|
|
21
|
+
BTN_IMPORT: '导入',
|
|
22
|
+
BTN_EXPORT: '导出',
|
|
23
|
+
BTN_UPLOAD: '上传',
|
|
24
|
+
BTN_DOWNLOAD: '下载',
|
|
25
|
+
BTN_INFO: '查看',
|
|
26
|
+
ERR_REQUIRED: '{0} 为必填项',
|
|
27
|
+
ERR_FORMAT: '{0} 格式有误',
|
|
28
|
+
ERR_ILLEGAL_CHAR: '请勿输入非法字符',
|
|
29
|
+
ERR_NOT_IP: '不是一个有效的IP地址',
|
|
30
|
+
ERR_NOT_IP4: '不是一个有效的IP4地址',
|
|
31
|
+
ERR_NOT_IP6: '不是一个有效的IP6地址',
|
|
32
|
+
ERR_NOT_URL: 'URL格式有误',
|
|
33
|
+
ERR_NOT_PORT: '端口号应该在 1~65535 之间',
|
|
34
|
+
ERR_NOT_EMAIL: 'EMail 格式有误',
|
|
35
|
+
ERR_NOT_IDCARD: '身份证号码格式有误',
|
|
36
|
+
ERR_NOT_PHONE: '电话号码格式有误',
|
|
37
|
+
ERR_NOT_MOBILE: '手机号码格式有误',
|
|
38
|
+
ERR_NOT_MAC: 'MAC地址格式有误',
|
|
39
|
+
ERR_UPLOAD_TOO_LARGE: '上传文件不能超过 {0}',
|
|
40
|
+
ACT_INFO_TITLE: '详情',
|
|
41
|
+
ACT_INFO_TITLE_NAMED: '{0} 详情',
|
|
42
|
+
ACT_ADD: '添加',
|
|
43
|
+
ACT_ADD_TITLE: '添加',
|
|
44
|
+
ACT_ADD_TITLE_NAMED: '添加 {0}',
|
|
45
|
+
ACT_ADD_SUCCESS: '已成功添加',
|
|
46
|
+
ACT_ADD_FAIL: '添加失败',
|
|
47
|
+
ACT_ADD_SUCCESS_NAMED: '{0} 添加成功',
|
|
48
|
+
ACT_ADD_FAIL_NAMED: '{0} 添加失败',
|
|
49
|
+
ACT_UPDATE: '编辑',
|
|
50
|
+
ACT_UPDATE_TITLE: '修改信息',
|
|
51
|
+
ACT_UPDATE_TITLE_NAMED: '修改 {0} 信息',
|
|
52
|
+
ACT_UPDATE_SUCCESS: '已成功修改',
|
|
53
|
+
ACT_UPDATE_FAIL: '修改失败',
|
|
54
|
+
ACT_UPDATE_SUCCESS_NAMED: '{0} 修改成功',
|
|
55
|
+
ACT_UPDATE_FAIL_NAMED: '{0} 修改失败',
|
|
56
|
+
ACT_DELETE: '删除',
|
|
57
|
+
ACT_DELETE_BATCH: '确认要删除选中的条目吗?',
|
|
58
|
+
ACT_DELETE_CONFIRM: '确认要删除 {0} 吗?',
|
|
59
|
+
ACT_DELETE_SUCCESS: '删除成功',
|
|
60
|
+
ACT_DELETE_FAIL: '删除失败',
|
|
61
|
+
ACT_DELETE_SUCCESS_NAMED: '{0} 已被删除',
|
|
62
|
+
ACT_DELETE_FAIL_NAMED: '删除 {0} 失败',
|
|
63
|
+
ACT_DELETE_SUCCESS_COUNT: '已成功删除 {0} 条记录',
|
|
64
|
+
ACT_DELETE_FAIL_COUNT: '{0}条记录删除失败 ',
|
|
65
|
+
DATE_START: '开始日期',
|
|
66
|
+
DATE_END: '结束日期',
|
|
67
|
+
DATETIME_START: '开始时间',
|
|
68
|
+
DATETIME_END: '结束时间',
|
|
69
|
+
DATE_START_FROM: '{0} 之前',
|
|
70
|
+
DATE_END_TO: '{0} 之后',
|
|
71
|
+
DATE_START_TO_END: '{0} 至 {1}',
|
|
72
|
+
DATE_MONTH_START: '开始月份',
|
|
73
|
+
DATE_MONTH_END: '结束月份',
|
|
74
|
+
TXT_ALL: '全部',
|
|
75
|
+
TXT_IDX: '序号',
|
|
76
|
+
TXT_RANK: '排行',
|
|
77
|
+
TXT_OPERATION: '操作',
|
|
78
|
+
TXT_FIND_NULL: '没有找到关于 {0} 的记录',
|
|
79
|
+
TXT_EXPAND: '展开',
|
|
80
|
+
TXT_COLLAPSE: '收起',
|
|
81
|
+
TREE_NODE: '节点',
|
|
82
|
+
TREE_INSERT_TOP: '在开始处添加 {0}',
|
|
83
|
+
TREE_INSERT_BOTTOM: '在结束处添加 {0}',
|
|
84
|
+
TREE_INSERT_BEFORE: '添加在上方',
|
|
85
|
+
TREE_INSERT_AFTER: '添加在下面',
|
|
86
|
+
TREE_INSERT_INNER: '添加子结点',
|
|
87
|
+
TREE_SORT_SUCCESS: '排序成功',
|
|
88
|
+
TREE_SORT_FAIL: '排序失败',
|
|
89
|
+
LANG_ZH_CN: '简体',
|
|
90
|
+
LANG_EN_US: '英文',
|
|
91
|
+
LANG_ZH_HK: '繁体',
|
|
92
|
+
SWITCH_YES: '是',
|
|
93
|
+
SWITCH_NO: '否',
|
|
94
|
+
SWITCH_OPEN: '开启',
|
|
95
|
+
SWITCH_CLOSE: '关闭',
|
|
96
|
+
SWITCH_ENABLE: '启用',
|
|
97
|
+
SWITCH_DISABLE: '禁用',
|
|
98
|
+
SWITCH_SHOW: '显示',
|
|
99
|
+
SWITCH_HIDE: '隐藏',
|
|
100
|
+
UPLOAD_FILE: '上传文件',
|
|
101
|
+
UPLOAD_PIC: '上传图片',
|
|
102
|
+
UPLOAD_SUCCESS: '上传成功',
|
|
103
|
+
UPLOAD_SUCCESS_IMPORT: '数据导入成功',
|
|
104
|
+
UPLOAD_ERROR: '上传失败',
|
|
105
|
+
UPLOAD_ERROR_FILE: '文件 {0} 上传失败',
|
|
106
|
+
UPLOAD_ERROR_IMPORT: '数据导入失败',
|
|
107
|
+
UPLOAD_MODAL_TITLE: '导入数据',
|
|
108
|
+
UPLOAD_MODAL_TIP: '请注意:导入的Excel数据字段须与Excel模版保持一致,否则无法导入数据。 点击确认时将仅导入正常数据',
|
|
109
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const zhCN_1 = require("./zhCN");
|
|
4
|
+
const i18n_1 = require("../../../utils/i18n");
|
|
5
|
+
// http://www.ku51.net/
|
|
6
|
+
(0, zhCN_1.register)(i18n_1.Language.ZH_HK, {
|
|
7
|
+
INPUT_TEXT: '請輸入',
|
|
8
|
+
INPUT_SELECT: '請選擇',
|
|
9
|
+
INPUT_MORE: '更多',
|
|
10
|
+
INPUT_CHECK_ALL: '全部',
|
|
11
|
+
INPUT_SET_CRONTAB: '設定周期',
|
|
12
|
+
INPUT_SEARCH_KEYWORD: '請輸入關鍵字',
|
|
13
|
+
INPUT_SEARCH_ADVANCE: '高級搜索',
|
|
14
|
+
INPUT_ORG_SLECT: '請選擇機構',
|
|
15
|
+
BTN_SEARCH: '搜索',
|
|
16
|
+
BTN_RESET: '重置',
|
|
17
|
+
BTN_MORE: '更多',
|
|
18
|
+
BTN_LESS: '更少',
|
|
19
|
+
BTN_IMPORT: '導入',
|
|
20
|
+
BTN_EXPORT: '導出',
|
|
21
|
+
BTN_UPLOAD: '上載',
|
|
22
|
+
BTN_DOWNLOAD: '下載',
|
|
23
|
+
BTN_INFO: '檢視',
|
|
24
|
+
ERR_REQUIRED: '{0} 為必填項',
|
|
25
|
+
ERR_FORMAT: '{0} 格式有誤',
|
|
26
|
+
ERR_ILLEGAL_CHAR: '請勿輸入非法字符',
|
|
27
|
+
ERR_NOT_IP: '不是一個有效的IP地址',
|
|
28
|
+
ERR_NOT_IP4: '不是一個有效的IP4地址',
|
|
29
|
+
ERR_NOT_IP6: '不是一個有效的IP6地址',
|
|
30
|
+
ERR_NOT_URL: 'URL格式有誤',
|
|
31
|
+
ERR_NOT_PORT: '端口号应该在 1~65535 之间',
|
|
32
|
+
ERR_NOT_EMAIL: 'eMail 格式有誤',
|
|
33
|
+
ERR_NOT_IDCARD: '身份證號碼格式有誤',
|
|
34
|
+
ERR_NOT_PHONE: '電話號碼格式有誤',
|
|
35
|
+
ERR_NOT_MOBILE: '手機號碼格式有誤',
|
|
36
|
+
ERR_NOT_MAC: 'MAC地址格式有誤',
|
|
37
|
+
ACT_INFO_TITLE: '檢視詳情',
|
|
38
|
+
ACT_INFO_TITLE_NAMED: '檢視詳情 :{0}',
|
|
39
|
+
ERR_UPLOAD_TOO_LARGE: '上传文件不能超过 {0}',
|
|
40
|
+
ACT_ADD: '添加',
|
|
41
|
+
ACT_ADD_TITLE: '添加',
|
|
42
|
+
ACT_ADD_TITLE_NAMED: '添加 {0}',
|
|
43
|
+
ACT_ADD_SUCCESS: '已成功添加',
|
|
44
|
+
ACT_ADD_FAIL: '添加失败',
|
|
45
|
+
ACT_ADD_SUCCESS_NAMED: '成功添加 : {0}',
|
|
46
|
+
ACT_ADD_FAIL_NAMED: '添加失败 : {0}',
|
|
47
|
+
ACT_UPDATE: '編輯',
|
|
48
|
+
ACT_UPDATE_TITLE: '編輯信息',
|
|
49
|
+
ACT_UPDATE_TITLE_NAMED: '編輯 {0} 信息',
|
|
50
|
+
ACT_UPDATE_SUCCESS: '已成功編輯',
|
|
51
|
+
ACT_UPDATE_FAIL: '編輯失败',
|
|
52
|
+
ACT_UPDATE_SUCCESS_NAMED: '成功編輯 : {0}',
|
|
53
|
+
ACT_UPDATE_FAIL_NAMED: '編輯失败 : {0}',
|
|
54
|
+
ACT_DELETE: '刪除',
|
|
55
|
+
ACT_DELETE_BATCH: '確認要刪除選中的條目嗎?',
|
|
56
|
+
ACT_DELETE_CONFIRM: '確認要刪除 {0} 嗎?',
|
|
57
|
+
ACT_DELETE_SUCCESS: '刪除成功',
|
|
58
|
+
ACT_DELETE_FAIL: '刪除失败',
|
|
59
|
+
ACT_DELETE_SUCCESS_NAMED: '{0} 已被刪除',
|
|
60
|
+
ACT_DELETE_FAIL_NAMED: '刪除 {0} 失败',
|
|
61
|
+
ACT_DELETE_SUCCESS_COUNT: '已成功刪除 {0} 條記錄',
|
|
62
|
+
ACT_DELETE_FAIL_COUNT: '{0}條記錄刪除失敗 ',
|
|
63
|
+
DATE_START: '開始日期',
|
|
64
|
+
DATE_END: '結束日期',
|
|
65
|
+
DATETIME_START: '開始時間',
|
|
66
|
+
DATETIME_END: '結束時間',
|
|
67
|
+
DATE_START_FROM: '{0} 之前',
|
|
68
|
+
DATE_END_TO: '{0} 之後',
|
|
69
|
+
DATE_START_TO_END: '{0} 至 {1}',
|
|
70
|
+
DATE_MONTH_START: '開始月份',
|
|
71
|
+
DATE_MONTH_END: '結束月份',
|
|
72
|
+
TXT_ALL: '全部',
|
|
73
|
+
TXT_IDX: '序號',
|
|
74
|
+
TXT_RANK: '排行',
|
|
75
|
+
TXT_OPERATION: '操作',
|
|
76
|
+
TXT_FIND_NULL: '沒有找到關於 {0} 的記錄',
|
|
77
|
+
TXT_EXPAND: '展開',
|
|
78
|
+
TXT_COLLAPSE: '收起',
|
|
79
|
+
TREE_NODE: '節點',
|
|
80
|
+
TREE_INSERT_TOP: '在開始處添加 {0}',
|
|
81
|
+
TREE_INSERT_BOTTOM: '在結束處添加 {0}',
|
|
82
|
+
TREE_INSERT_BEFORE: '添加在上方',
|
|
83
|
+
TREE_INSERT_AFTER: '添加在下面',
|
|
84
|
+
TREE_INSERT_INNER: '添加子結點',
|
|
85
|
+
TREE_SORT_SUCCESS: '排序成功',
|
|
86
|
+
TREE_SORT_FAIL: '排序失败',
|
|
87
|
+
LANG_ZH_CN: '简体',
|
|
88
|
+
LANG_EN_US: '英文',
|
|
89
|
+
LANG_ZH_HK: '繁体',
|
|
90
|
+
SWITCH_YES: '是',
|
|
91
|
+
SWITCH_NO: '否',
|
|
92
|
+
SWITCH_OPEN: '開啟',
|
|
93
|
+
SWITCH_CLOSE: '關閉',
|
|
94
|
+
SWITCH_ENABLE: '啟用',
|
|
95
|
+
SWITCH_DISABLE: '禁用',
|
|
96
|
+
SWITCH_SHOW: '顯示',
|
|
97
|
+
SWITCH_HIDE: '隱藏',
|
|
98
|
+
UPLOAD_FILE: '上載文件',
|
|
99
|
+
UPLOAD_PIC: '上載圖片',
|
|
100
|
+
UPLOAD_SUCCESS: '上載成功',
|
|
101
|
+
UPLOAD_SUCCESS_IMPORT: '數據導入成功',
|
|
102
|
+
UPLOAD_ERROR: '上載失敗',
|
|
103
|
+
UPLOAD_ERROR_FILE: '文件 {0} 上載失敗',
|
|
104
|
+
UPLOAD_ERROR_IMPORT: '數據導入失敗',
|
|
105
|
+
UPLOAD_MODAL_TITLE: '導入數據',
|
|
106
|
+
UPLOAD_MODAL_TIP: '請註意:導入的Excel數據字段須與Excel模版保持一致,否則無法導入數據。 點選確認時將僅導入正常數據',
|
|
107
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const utils_1 = require("../../../utils");
|
|
4
|
+
var c2u = [["menu-promission", "e600"], ["audit-task-status-finish", "e601"], ["audit-task-status-doing", "e602"], ["audit-task-status-waiting", "e603"], ["audit-task-status-error", "e604"], ["audit-kpi-novir", "e605"], ["audit-risk-red", "e606"], ["audit-risk-danger", "e607"], ["audit-risk-game", "e608"], ["audit-risk-wg", "e609"], ["audit-risk-hot", "e60a"], ["audit-risk-concet", "e60b"], ["audit-kpi-installed", "e60c"], ["audit-kpi-outrage", "e60d"], ["audit-kpi-trust", "e60e"], ["audit-kpi-unusual", "e60f"], ["audit-kpi-outline", "e610"], ["symbol-date", "e611"], ["symbol-string", "e612"], ["symbol-number", "e613"], ["chart-duijitiaoxingtu", "e614"], ["chart-shuzi", "e615"], ["chart-10juxingshutu", "e616"], ["chart-ciyuntu", "e617"], ["chart-biaoge", "e618"], ["chart-striptype", "e619"], ["chart-zhuzhuangtu", "e61a"], ["chart-duijizhuzhuangtu", "e61b"], ["chart-loudoutu", "e61c"], ["chart-pie-graph", "e61d"], ["chart-wenben", "e61e"], ["chart-mianjitu", "e61f"], ["chart-duibitiaoxingtu", "e620"], ["chart-leidatu", "e621"], ["chart-zhexiantu", "e622"], ["chart-kongjianshutu", "e623"], ["chart-sangjitu", "e624"], ["chart-chinamap", "e625"], ["chart-sandiantu", "e626"], ["chart-yibiaopan", "e627"], ["chart-relitu", "e628"], ["symbol-check-off", "e629"], ["symbol-check-on", "e62a"], ["symbol-arrow-right", "e62b"], ["symbol-user", "e62c"], ["symbol-arrow-left", "e62d"], ["symbol-device", "e62e"], ["symbol-app", "e62f"], ["symbol-process", "e630"], ["audit-app", "e631"], ["audit-device", "e632"], ["audit-threaten", "e633"], ["audit-virus", "e634"], ["audit-netflow", "e635"], ["audit-attack", "e636"], ["device-personal", "e638"], ["device-server", "e639"], ["device-stream", "e63a"], ["device-network", "e63b"], ["device-safe", "e63c"], ["device-other", "e63d"], ["device-storage", "e63e"], ["menu-fullscreen", "e640"], ["menu-theme", "e641"], ["menu-ruby", "e642"], ["menu-fullscreen2", "e643"], ["alarm-explore", "e637"], ["alarm-monitor", "e63f"], ["alarm-statistics", "e644"], ["alarm-logs", "e645"], ["alarm-reports", "e646"], ["alarm-safe-trend", "e647"], ["alarm-leak-scan", "e648"], ["alarm-analysis", "e649"], ["alarm-expert", "e64a"], ["alarm-app-desk", "e64b"], ["alarm-attacked", "e64c"], ["alarm-apps", "e64d"], ["alarm-tag", "e64e"], ["alarm-safety", "e64f"], ["alarm-manager", "e650"], ["alarm-net-traffic", "e651"], ["alarm-setting", "e652"], ["menu-tag-manager", "e684"], ["menu-monitor-center", "e685"], ["menu-app-situation", "e686"], ["menu-report-center", "e687"], ["menu-summary-situation", "e688"], ["menu-terminal-evidence", "e689"], ["menu-workbench", "e68a"], ["menu-leak-situation", "e68b"], ["menu-work-order", "e68c"], ["menu-asset-manager", "e68d"], ["menu-asset-situation", "e68e"], ["menu-expert", "e68f"], ["menu-alarm-center", "e690"], ["menu-search-img", "e691"], ["menu-data-search", "e692"], ["menu-data-dashboard", "e693"], ["menu-attack-situation", "e694"], ["symbol-search", "e695"], ["symbol-bigscreen", "e696"], ["symbol-alarm", "e697"], ["symbol-fullscreen", "e698"], ["symbol-message", "e699"], ["symbol-apps", "e69a"], ["symbol-theme", "e69b"], ["chart-dashboard-add", "e69c"], ["menu-toggle-hide", "e69d"], ["menu-toggle-expand", "e69e"], ["symbol-avatar", "e69f"], ["radius-upleft", "e7c7"], ["Console-SQL", "e9c7"], ["radius-upright", "e7c8"], ["icon-test", "e9c8"], ["radius-setting", "e7c9"], ["aim", "e9c9"], ["user-add", "e7ca"], ["compress", "e9ca"], ["usergroup-delete", "e7cb"], ["expend", "e9cb"], ["user-delete", "e7cc"], ["folder-view", "e9cc"], ["usergroup-add", "e7cd"], ["file-gif", "e9cd"], ["user", "e7ce"], ["group", "e9ce"], ["team", "e7cf"], ["send", "e9cf"], ["area-chart", "e7d0"], ["Report", "e9d0"], ["line-chart", "e7d1"], ["View", "e9d1"], ["bar-chart", "e7d2"], ["shortcut", "e9d2"], ["dot-chart", "e7d3"], ["ungroup", "e9d3"], ["container", "e7d4"], ["database", "e7d5"], ["sever", "e7d6"], ["mobile", "e7d7"], ["tablet", "e7d8"], ["red-envelope", "e7d9"], ["book", "e7da"], ["file-done", "e7db"], ["reconciliation", "e7dc"], ["exception", "e7dd"], ["file-sync", "e7de"], ["file-search", "e7df"], ["solution", "e7e0"], ["file-protect", "e7e1"], ["file-add", "e7e2"], ["file-excel", "e7e3"], ["file-exclamation", "e7e4"], ["file-pdf", "e7e5"], ["file-image", "e7e6"], ["file-markdown", "e7e7"], ["file-unknown", "e7e8"], ["file-ppt", "e7e9"], ["file-word", "e7ea"], ["file", "e7eb"], ["file-zip", "e7ec"], ["file-text", "e7ed"], ["copy", "e7ee"], ["snippets", "e7ef"], ["audit", "e7f0"], ["diff", "e7f1"], ["switcher", "e7f2"], ["security-scan", "e7f3"], ["property-safety", "e7f4"], ["safety-certificate", "e7f5"], ["insurance", "e7f6"], ["alert", "e7f7"], ["delete", "e7f8"], ["hourglass", "e7f9"], ["bulb", "e7fa"], ["experiment", "e7fb"], ["bell", "e7fc"], ["trophy", "e7fd"], ["rest", "e7fe"], ["usb", "e7ff"], ["skin", "e800"], ["home", "e801"], ["bank", "e802"], ["filter", "e803"], ["funnel-plot", "e804"], ["like", "e805"], ["dislike", "e806"], ["unlock", "e807"], ["lock", "e808"], ["customer-service", "e809"], ["flag", "e80a"], ["money-collect", "e80b"], ["medicine-box", "e80c"], ["shop", "e80d"], ["rocket", "e80e"], ["shopping-cart", "e80f"], ["folder", "e810"], ["folder-open", "e811"], ["folder-add", "e812"], ["deploymentunit", "e813"], ["account-book", "e814"], ["contacts", "e815"], ["carry-out", "e816"], ["calendar-check", "e817"], ["calendar", "e818"], ["scan", "e819"], ["select", "e81a"], ["box-plot", "e81b"], ["build", "e81c"], ["sliders", "e81d"], ["laptop", "e81e"], ["barcode", "e81f"], ["camera", "e820"], ["cluster", "e821"], ["gateway", "e822"], ["car", "e823"], ["printer", "e824"], ["read", "e825"], ["cloud-server", "e826"], ["cloud-upload", "e827"], ["cloud", "e828"], ["cloud-download", "e829"], ["alibaba", "e929"], ["cloud-sync", "e82a"], ["antdesign", "e92a"], ["video", "e82b"], ["ant-cloud", "e92b"], ["notification", "e82c"], ["behance", "e92c"], ["sound", "e82d"], ["googleplus", "e92d"], ["radar-chart", "e82e"], ["medium", "e92e"], ["qrcode", "e82f"], ["google", "e92f"], ["fund", "e830"], ["ie", "e930"], ["picture", "e831"], ["amazon", "e931"], ["mail", "e832"], ["slack", "e932"], ["table", "e833"], ["alipay", "e933"], ["idcard", "e834"], ["taobao", "e934"], ["credit-card", "e835"], ["zhihu", "e935"], ["heart", "e836"], ["html5", "e936"], ["block", "e837"], ["linkedin", "e937"], ["error", "e838"], ["yahoo", "e938"], ["star", "e839"], ["facebook", "e939"], ["gold", "e83a"], ["skype", "e93a"], ["heat-map", "e83b"], ["codesandbox", "e93b"], ["wifi", "e83c"], ["chrome", "e93c"], ["attachment", "e83d"], ["codepen", "e93d"], ["edit", "e83e"], ["aliwangwang", "e93e"], ["key", "e83f"], ["apple", "e93f"], ["api", "e840"], ["android", "e940"], ["disconnect", "e841"], ["sketch", "e941"], ["highlight", "e842"], ["gitlab", "e942"], ["monitor", "e843"], ["dribbble", "e943"], ["link", "e844"], ["instagram", "e944"], ["man", "e845"], ["reddit", "e945"], ["percentage", "e846"], ["windows", "e946"], ["pushpin", "e847"], ["yuque", "e947"], ["phone", "e848"], ["Youtube", "e948"], ["shake", "e849"], ["tag", "e84a"], ["dropbox", "e94a"], ["wrench", "e84b"], ["dingtalk", "e94b"], ["tags", "e84c"], ["scissor", "e84d"], ["mr", "e84e"], ["share", "e84f"], ["branches", "e850"], ["qq", "e950"], ["fork", "e851"], ["twitter", "e951"], ["shrink", "e852"], ["arrawsalt", "e853"], ["weibo", "e953"], ["vertical-right", "e854"], ["vertical-left", "e855"], ["right", "e856"], ["left", "e857"], ["up", "e858"], ["down", "e859"], ["fullscreen", "e85a"], ["fullscreen-exit", "e85b"], ["double-left", "e85c"], ["double-right", "e85d"], ["arrow-right", "e85e"], ["arrow-up", "e85f"], ["arrow-left", "e860"], ["arrow-down", "e861"], ["upload", "e862"], ["colum-height", "e863"], ["vertical-align-bottom", "e864"], ["vertical-align-middle", "e865"], ["to-top", "e866"], ["vertical-align-top", "e867"], ["download", "e868"], ["sort-descending", "e869"], ["sort-ascending", "e86a"], ["fall", "e86b"], ["swap", "e86c"], ["stock", "e86d"], ["rise", "e86e"], ["indent", "e86f"], ["outdent", "e870"], ["menu", "e871"], ["unordered-list", "e872"], ["ordered-list", "e873"], ["align-right", "e874"], ["align-center", "e875"], ["align-left", "e876"], ["pic-center", "e877"], ["pic-right", "e878"], ["pic-left", "e879"], ["bold", "e87a"], ["font-colors", "e87b"], ["exclaimination", "e87c"], ["check-circle", "e77d"], ["font-size", "e87d"], ["ci", "e77e"], ["info", "e87e"], ["dollar", "e77f"], ["line-height", "e87f"], ["compass", "e780"], ["strikethrough", "e880"], ["close-circle", "e781"], ["underline", "e881"], ["frown", "e782"], ["number", "e882"], ["info-circle", "e783"], ["italic", "e883"], ["left-circle", "e784"], ["code", "e884"], ["down-circle", "e785"], ["column-width", "e885"], ["euro", "e786"], ["check", "e886"], ["zoom-out", "e986"], ["copyright", "e787"], ["ellipsis", "e887"], ["apartment", "e987"], ["minus-circle", "e788"], ["dash", "e888"], ["audio", "e988"], ["meh", "e789"], ["close", "e889"], ["plus-circle", "e78a"], ["enter", "e88a"], ["robot", "e98a"], ["play-circle", "e78b"], ["line", "e88b"], ["zoom-in", "e98b"], ["question-circle", "e78c"], ["minus", "e88c"], ["pound", "e78d"], ["question", "e88d"], ["right-circle", "e78e"], ["rollback", "e88e"], ["bug", "e98e"], ["smile", "e78f"], ["small-dash", "e88f"], ["audiostatic", "e98f"], ["trademark", "e790"], ["pause", "e890"], ["comment", "e990"], ["time-circle", "e791"], ["bg-colors", "e891"], ["signal", "e991"], ["timeout", "e792"], ["crown", "e892"], ["verified", "e992"], ["global", "e793"], ["drag", "e893"], ["yuan", "e794"], ["desktop", "e894"], ["video-camera", "e994"], ["up-circle", "e795"], ["gift", "e895"], ["switchuser", "e995"], ["warning-circle", "e796"], ["stop", "e896"], ["whatsapp", "e996"], ["sync", "e797"], ["fire", "e897"], ["appstoreadd", "e997"], ["transaction", "e798"], ["thunderbolt", "e898"], ["caret-down", "e998"], ["undo", "e799"], ["backward", "e999"], ["redo", "e79a"], ["caret-up", "e99a"], ["reload", "e79b"], ["caret-right", "e99b"], ["reloadtime", "e79c"], ["caret-left", "e99c"], ["message", "e79d"], ["fast-backward", "e99d"], ["dashboard", "e79e"], ["forward", "e99e"], ["issuesclose", "e79f"], ["fast-forward", "e99f"], ["poweroff", "e7a0"], ["search", "e9a0"], ["logout", "e7a1"], ["retweet", "e9a1"], ["pie-chart", "e7a2"], ["login", "e9a2"], ["setting", "e7a3"], ["step-backward", "e9a3"], ["eye", "e7a4"], ["step-forward", "e9a4"], ["location", "e7a5"], ["swap-right", "e9a5"], ["edit-square", "e7a6"], ["swap-left", "e9a6"], ["export", "e7a7"], ["woman", "e9a7"], ["save", "e7a8"], ["plus", "e9a8"], ["import", "e7a9"], ["appstore", "e7aa"], ["eye-invisible", "e9aa"], ["close-square", "e7ab"], ["clear", "e9ab"], ["down-square", "e7ac"], ["collapse", "e9ac"], ["layout", "e7ad"], ["expand", "e9ad"], ["left-square", "e7ae"], ["deletecolumn", "e9ae"], ["play-square", "e7af"], ["merge-cells", "e9af"], ["control", "e7b0"], ["subnode", "e9b0"], ["codelibrary", "e7b1"], ["rotate-left", "e9b1"], ["profile", "e7b2"], ["rotate-right", "e9b2"], ["minus-square", "e7b3"], ["insertrowbelow", "e9b3"], ["plus-square", "e7b4"], ["insertrowabove", "e9b4"], ["right-square", "e7b5"], ["table1", "e9b5"], ["project", "e7b6"], ["solit-cells", "e9b6"], ["wallet", "e7b7"], ["formatpainter", "e9b7"], ["up-square", "e7b8"], ["insertrowright", "e9b8"], ["calculator", "e7b9"], ["interaction", "e7ba"], ["insertrowleft", "e9ba"], ["check-square", "e7bb"], ["translate", "e9bb"], ["border", "e7bc"], ["deleterow", "e9bc"], ["border-outer", "e7bd"], ["sisternode", "e9bd"], ["border-top", "e7be"], ["field-number", "e9be"], ["border-bottom", "e7bf"], ["field-string", "e9bf"], ["border-left", "e7c0"], ["function", "e9c0"], ["border-right", "e7c1"], ["field-time", "e9c1"], ["border-inner", "e7c2"], ["gif", "e9c2"], ["border-verticle", "e7c3"], ["partition", "e9c3"], ["border-horizontal", "e7c4"], ["index", "e9c4"], ["radius-bottomleft", "e7c5"], ["storedprocedure", "e9c5"], ["radius-bottomright", "e7c6"], ["field-binary", "e9c6"]];
|
|
5
|
+
utils_1.GLOBAL.SET({
|
|
6
|
+
ICONS: {
|
|
7
|
+
CLAZZ: c2u.map(item => item[0]),
|
|
8
|
+
MAP: new Map(c2u),
|
|
9
|
+
}
|
|
10
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const react_1 = __importDefault(require("react"));
|
|
7
|
+
const lodash_1 = __importDefault(require("lodash"));
|
|
8
|
+
const _register_1 = require("../../SearchBar/_register");
|
|
9
|
+
const AutoComplete_1 = require("../../_common/AutoComplete");
|
|
10
|
+
const SearchFieldInput_1 = require("./SearchFieldInput");
|
|
11
|
+
(0, _register_1.registerSearchField)('autocomplete', (props) => {
|
|
12
|
+
const { field, onChange, width, data, } = props;
|
|
13
|
+
if (!lodash_1.default.has(field.config, 'api')) {
|
|
14
|
+
console.error('field type : autocomplete must have a api');
|
|
15
|
+
return react_1.default.createElement(SearchFieldInput_1.TEXT, Object.assign({}, props));
|
|
16
|
+
}
|
|
17
|
+
let param = {
|
|
18
|
+
allowClear: true,
|
|
19
|
+
placeholder: lodash_1.default.has(field.config, 'placeholder') ? field.config.placeholder : null || field.placeholder || `请选择${field.label}`,
|
|
20
|
+
};
|
|
21
|
+
if (field.allowClear === false)
|
|
22
|
+
param.allowClear = false;
|
|
23
|
+
if (lodash_1.default.has(data, field.field))
|
|
24
|
+
param.value = data[field.field];
|
|
25
|
+
if (width)
|
|
26
|
+
param.style = { width: props.width };
|
|
27
|
+
return react_1.default.createElement(AutoComplete_1.IAutoComplete, Object.assign({}, param, field.config, { onChange: onChange }));
|
|
28
|
+
});
|
|
29
|
+
// { field: 'd', label: 'inputsearch', type: 'inputsearch' },
|
|
30
|
+
// registerSearchField('inputsearch', (props: TableSelectFieldProps) => {
|
|
31
|
+
// const { field, onChange, width, data } = props;
|
|
32
|
+
// let cfg = getOptions(field);
|
|
33
|
+
// if (cfg == null) {
|
|
34
|
+
// console.error('field type : inputsearch must have a options field, or config dict')
|
|
35
|
+
// return <TEXT {...props} style={width ? { width } : {}} />
|
|
36
|
+
// }
|
|
37
|
+
// let [options, nameField, valueField] = cfg;
|
|
38
|
+
// let param: any = {
|
|
39
|
+
// allowClear: true,
|
|
40
|
+
// placeholder: _.has(field.config, 'placeholder') ? field.config.placeholder : null || field.placeholder || `请选择${field.label}`,
|
|
41
|
+
// }
|
|
42
|
+
// if (field.allowClear === false) {
|
|
43
|
+
// param.allowClear = false;
|
|
44
|
+
// }
|
|
45
|
+
// if (_.has(data, field.field) && data[field.field]) {
|
|
46
|
+
// param.value = data[field.field];
|
|
47
|
+
// }
|
|
48
|
+
// let dataSource = options.map(item => item[nameField]);
|
|
49
|
+
// dataSource = _.filter(dataSource, item => item && item.indexOf(param.value || '') >= 0);
|
|
50
|
+
// if (dataSource.length > 10) {
|
|
51
|
+
// dataSource.length = 10;
|
|
52
|
+
// }
|
|
53
|
+
// if (_.has(props, 'width')) {
|
|
54
|
+
// param.style = { width: props.width }
|
|
55
|
+
// }
|
|
56
|
+
// return <AutoComplete dataSource={dataSource} {...field.config} {...param} onChange={(value: string[]) => onChange(value)} ></AutoComplete>
|
|
57
|
+
// });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|