kn-cli 1.0.90 → 1.0.92
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/package.json +1 -1
- package/readme.md +7 -0
- package/src/create.js +22 -2
- package/src/utils/index.js +1 -1
- package/templates/template_admin/cli.config.js +1 -1
- package/templates/template_admin/jsconfig.json +5 -1
- package/templates/template_admin/package.json +1 -1
- package/templates/template_admin/public/index.html +2 -2
- package/templates/template_admin/public/src/components/{Auth → auth}/index.jsx +21 -3
- package/templates/template_admin/public/src/components/{IconFont → iconFont}/index.jsx +10 -0
- package/templates/template_admin/public/src/components/{Layout/Basic → layout/basic}/index.jsx +13 -3
- package/templates/template_admin/public/src/components/layout/centerBody/index.jsx +25 -0
- package/templates/template_admin/public/src/components/{Layout → layout}/index.jsx +15 -6
- package/templates/template_admin/public/src/components/layout/provider/index.jsx +19 -0
- package/templates/{template_app/public/src/components/Link → template_admin/public/src/components/link}/index.jsx +15 -0
- package/templates/template_admin/public/src/components/{Menu → menu}/index.jsx +15 -8
- package/templates/{template_app/public/src/components/Page/PageLoading → template_admin/public/src/components/page/pageLoading}/index.jsx +25 -4
- package/templates/{template_app/public/src/components/Popup → template_admin/public/src/components/popup}/index.jsx +13 -0
- package/templates/template_admin/public/src/components/{Toast → toast}/index.jsx +20 -1
- package/templates/template_admin/public/src/components/{TopMenu → topMenu}/index.jsx +13 -8
- package/templates/template_admin/public/src/dictionary/index.js +8 -3
- package/templates/template_admin/public/src/hooks/index.jsx +1 -0
- package/templates/template_admin/public/src/hooks/useDelay.jsx +5 -0
- package/templates/template_admin/public/src/hooks/useImageLoader.jsx +1 -2
- package/templates/template_admin/public/src/hooks/useLoading.jsx +5 -1
- package/templates/template_admin/public/src/hooks/usePreload.jsx +2 -1
- package/templates/template_admin/public/src/hooks/useScrollTop.jsx +12 -0
- package/templates/template_admin/public/src/hooks/useSearch.jsx +28 -2
- package/templates/template_admin/public/src/hooks/useUpdate.jsx +5 -0
- package/templates/template_admin/public/src/index.jsx +16 -2
- package/templates/template_admin/public/src/pages/material/index.jsx +2 -1
- package/templates/template_admin/public/src/pages/user/index.jsx +7 -2
- package/templates/template_admin/public/src/provider/app.jsx +39 -4
- package/templates/template_admin/public/src/provider/menu.jsx +4 -1
- package/templates/template_admin/public/src/route.jsx +8 -5
- package/templates/template_admin/public/src/services/index.js +38 -4
- package/templates/template_admin/public/src/services/user.js +3 -3
- package/templates/template_admin/public/src/type.js +48 -0
- package/templates/template_admin/public/src/utils/index.js +34 -18
- package/templates/template_app/cli.config.js +1 -1
- package/templates/template_app/jsconfig.json +5 -1
- package/templates/template_app/package.json +1 -1
- package/templates/template_app/public/src/components/{Auth → auth}/index.jsx +20 -2
- package/templates/template_app/public/src/components/{Header → header}/index.jsx +25 -1
- package/templates/{template_oa_jwt/public/src/components/IconFont → template_app/public/src/components/iconFont}/index.jsx +10 -0
- package/templates/template_app/public/src/components/{Layout/App → layout/app}/index.jsx +12 -2
- package/templates/template_app/public/src/components/layout/index.jsx +6 -0
- package/templates/{template_admin/public/src/components/Layout/Provider → template_app/public/src/components/layout/provider}/index.jsx +3 -0
- package/templates/template_app/public/src/components/link/index.jsx +39 -0
- package/templates/template_app/public/src/components/{Marquee → marquee}/index.jsx +11 -2
- package/templates/{template_oa/public/src/components/Page/PageLoading → template_app/public/src/components/page/pageLoading}/index.jsx +23 -3
- package/templates/{template_oa_jwt/public/src/components/Popup → template_app/public/src/components/popup}/index.jsx +13 -0
- package/templates/{template_oa_jwt/public/src/components/Toast → template_app/public/src/components/toast}/index.jsx +21 -1
- package/templates/template_app/public/src/dictionary/index.js +7 -3
- package/templates/template_app/public/src/hooks/index.jsx +1 -0
- package/templates/template_app/public/src/hooks/useDelay.jsx +5 -0
- package/templates/template_app/public/src/hooks/useImageLoader.jsx +1 -2
- package/templates/template_app/public/src/hooks/useLoading.jsx +5 -1
- package/templates/template_app/public/src/hooks/usePreload.jsx +2 -1
- package/templates/template_app/public/src/hooks/useScrollTop.jsx +12 -0
- package/templates/template_app/public/src/index.jsx +22 -5
- package/templates/template_app/public/src/pages/dictionary/index.jsx +9 -1
- package/templates/template_app/public/src/pages/index.jsx +16 -4
- package/templates/template_app/public/src/pages/list/index.jsx +7 -1
- package/templates/template_app/public/src/pages/login/index.jsx +10 -4
- package/templates/template_app/public/src/pages/user/index.jsx +7 -2
- package/templates/template_app/public/src/provider/app.jsx +5 -3
- package/templates/template_app/public/src/route.jsx +5 -2
- package/templates/template_app/public/src/services/index.js +10 -8
- package/templates/template_app/public/src/services/user.js +4 -4
- package/templates/template_app/public/src/type.js +27 -0
- package/templates/template_app/public/src/utils/index.js +6 -0
- package/templates/template_oa/cli.config.js +1 -1
- package/templates/template_oa/jsconfig.json +5 -1
- package/templates/template_oa/package.json +1 -1
- package/templates/template_oa/public/src/components/dialog/index.jsx +237 -0
- package/templates/{template_oa_jwt/public/src/components/Empty → template_oa/public/src/components/empty}/index.jsx +9 -0
- package/templates/{template_oa_jwt/public/src/components/FormRow → template_oa/public/src/components/formRow}/index.jsx +25 -3
- package/templates/{template_oa_jwt/public/src/components/FormTable → template_oa/public/src/components/formTable}/index.jsx +39 -1
- package/templates/template_oa/public/src/components/iconFont/index.jsx +22 -0
- package/templates/template_oa/public/src/components/{IFrame → iframe}/index.jsx +18 -4
- package/templates/template_oa/public/src/components/{Layout/Basic → layout/basic}/index.jsx +7 -1
- package/templates/template_oa/public/src/components/{Layout/CenterBody → layout/centerBody}/index.jsx +2 -0
- package/templates/template_oa/public/src/components/{Layout/FormBlock → layout/formBlock}/index.jsx +3 -1
- package/templates/{template_oa_jwt/public/src/components/Layout → template_oa/public/src/components/layout}/index.jsx +12 -6
- package/templates/{template_oa_jwt/public/src/components/Layout/Provider → template_oa/public/src/components/layout/provider}/index.jsx +4 -0
- package/templates/{template_offcial/public/src/components/Link → template_oa/public/src/components/link}/index.jsx +16 -0
- package/templates/template_oa/public/src/components/{Nav → nav}/index.jsx +8 -2
- package/templates/{template_admin/public/src/components/Page/PageLoading → template_oa/public/src/components/page/pageLoading}/index.jsx +25 -4
- package/templates/{template_admin/public/src/components/Popup → template_oa/public/src/components/popup}/index.jsx +13 -0
- package/templates/{template_oa_jwt/public/src/components/Select/DepSelect → template_oa/public/src/components/select/depSelect}/index.jsx +15 -0
- package/templates/template_oa/public/src/components/{Select/StaffSelect → select/staffSelect}/index.jsx +27 -0
- package/templates/template_oa/public/src/components/title/index.jsx +3 -0
- package/templates/template_oa/public/src/components/{Toast → toast}/index.jsx +21 -1
- package/templates/template_oa/public/src/components/{Upload → upload}/index.jsx +41 -3
- package/templates/template_oa/public/src/hooks/index.jsx +1 -0
- package/templates/template_oa/public/src/hooks/useDelay.jsx +5 -0
- package/templates/template_oa/public/src/hooks/useImageLoader.jsx +1 -2
- package/templates/template_oa/public/src/hooks/useLoading.jsx +5 -1
- package/templates/template_oa/public/src/hooks/usePreload.jsx +2 -1
- package/templates/template_oa/public/src/hooks/useScrollTop.jsx +12 -0
- package/templates/template_oa/public/src/hooks/useSearch.jsx +28 -2
- package/templates/template_oa/public/src/hooks/useUpdate.jsx +5 -0
- package/templates/template_oa/public/src/index.jsx +15 -1
- package/templates/template_oa/public/src/pages/video/index.jsx +17 -13
- package/templates/template_oa/public/src/provider/app.jsx +33 -2
- package/templates/template_oa/public/src/route.jsx +4 -2
- package/templates/template_oa/public/src/services/common.js +11 -0
- package/templates/template_oa/public/src/services/index.js +44 -2
- package/templates/template_oa/public/src/type.js +48 -0
- package/templates/template_oa/public/src/utils/index.js +34 -17
- package/templates/template_oa_jwt/cli.config.js +1 -1
- package/templates/template_oa_jwt/jsconfig.json +5 -1
- package/templates/template_oa_jwt/package.json +1 -1
- package/templates/template_oa_jwt/public/src/components/dialog/index.jsx +237 -0
- package/templates/{template_oa/public/src/components/Empty → template_oa_jwt/public/src/components/empty}/index.jsx +9 -0
- package/templates/{template_oa/public/src/components/FormRow → template_oa_jwt/public/src/components/formRow}/index.jsx +25 -3
- package/templates/{template_oa/public/src/components/FormTable → template_oa_jwt/public/src/components/formTable}/index.jsx +41 -2
- package/templates/template_oa_jwt/public/src/components/formTable/index.less +18 -0
- package/templates/template_oa_jwt/public/src/components/iconFont/index.jsx +22 -0
- package/templates/template_oa_jwt/public/src/components/{IFrame → iframe}/index.jsx +15 -0
- package/templates/template_oa_jwt/public/src/components/{Layout/Basic → layout/basic}/index.jsx +11 -6
- package/templates/template_oa_jwt/public/src/components/{Layout/CenterBody → layout/centerBody}/index.jsx +2 -0
- package/templates/template_oa_jwt/public/src/components/{Layout/FormBlock → layout/formBlock}/index.jsx +3 -1
- package/templates/{template_oa/public/src/components/Layout → template_oa_jwt/public/src/components/layout}/index.jsx +10 -4
- package/templates/{template_oa/public/src/components/Layout/Provider → template_oa_jwt/public/src/components/layout/provider}/index.jsx +4 -0
- package/templates/template_oa_jwt/public/src/components/{Link → link}/index.jsx +16 -0
- package/templates/template_oa_jwt/public/src/components/{Nav → nav}/index.jsx +11 -5
- package/templates/template_oa_jwt/public/src/components/{Page/PageLoading → page/pageLoading}/index.jsx +25 -4
- package/templates/{template_oa/public/src/components/Popup → template_oa_jwt/public/src/components/popup}/index.jsx +13 -0
- package/templates/{template_oa/public/src/components/Select/DepSelect → template_oa_jwt/public/src/components/select/depSelect}/index.jsx +15 -0
- package/templates/template_oa_jwt/public/src/components/{Select/StaffSelect → select/staffSelect}/index.jsx +27 -0
- package/templates/template_oa_jwt/public/src/components/title/index.jsx +3 -0
- package/templates/template_oa_jwt/public/src/components/toast/index.jsx +80 -0
- package/templates/template_oa_jwt/public/src/components/{Upload → upload}/index.jsx +41 -3
- package/templates/template_oa_jwt/public/src/dictionary/index.js +2 -0
- package/templates/template_oa_jwt/public/src/hooks/index.jsx +2 -2
- package/templates/template_oa_jwt/public/src/hooks/useDelay.jsx +5 -0
- package/templates/template_oa_jwt/public/src/hooks/useImageLoader.jsx +1 -2
- package/templates/template_oa_jwt/public/src/hooks/useLoading.jsx +5 -1
- package/templates/template_oa_jwt/public/src/hooks/usePreload.jsx +2 -1
- package/templates/template_oa_jwt/public/src/hooks/useScrollTop.jsx +12 -0
- package/templates/template_oa_jwt/public/src/hooks/useSearch.jsx +28 -2
- package/templates/template_oa_jwt/public/src/hooks/useUpdate.jsx +5 -0
- package/templates/template_oa_jwt/public/src/pages/demo/index.jsx +17 -11
- package/templates/template_oa_jwt/public/src/provider/app.jsx +30 -1
- package/templates/template_oa_jwt/public/src/route.jsx +4 -2
- package/templates/template_oa_jwt/public/src/services/common.js +13 -1
- package/templates/template_oa_jwt/public/src/services/index.js +52 -8
- package/templates/template_oa_jwt/public/src/services/token.js +7 -0
- package/templates/template_oa_jwt/public/src/utils/index.js +62 -22
- package/templates/template_offcial/cli.config.js +1 -1
- package/templates/template_offcial/jsconfig.json +5 -1
- package/templates/template_offcial/package.json +1 -1
- package/templates/template_offcial/public/src/components/{Footer → footer}/index.jsx +15 -1
- package/templates/template_offcial/public/src/components/{Header → header}/index.jsx +14 -0
- package/templates/{template_app/public/src/components/IconFont → template_offcial/public/src/components/iconFont}/index.jsx +10 -0
- package/templates/template_offcial/public/src/components/{Layout → layout}/index.jsx +10 -3
- package/templates/{template_app/public/src/components/Layout/Provider → template_offcial/public/src/components/layout/provider}/index.jsx +7 -0
- package/templates/template_offcial/public/src/components/link/index.jsx +39 -0
- package/templates/template_offcial/public/src/components/page/pageLoading/index.jsx +51 -0
- package/templates/template_offcial/public/src/components/popup/index.jsx +35 -0
- package/templates/{template_app/public/src/components/Toast → template_offcial/public/src/components/toast}/index.jsx +20 -1
- package/templates/template_offcial/public/src/hooks/index.jsx +1 -0
- package/templates/template_offcial/public/src/hooks/useImageLoader.jsx +1 -0
- package/templates/template_offcial/public/src/hooks/useInToView.jsx +3 -0
- package/templates/template_offcial/public/src/hooks/usePreload.jsx +1 -0
- package/templates/template_offcial/public/src/hooks/useScroll.jsx +8 -0
- package/templates/template_offcial/public/src/index.jsx +15 -2
- package/templates/template_offcial/public/src/pages/index.jsx +8 -1
- package/templates/template_offcial/public/src/pages/pc/index.jsx +4 -2
- package/templates/template_offcial/public/src/provider/app.jsx +28 -2
- package/templates/template_offcial/public/src/route.jsx +4 -2
- package/templates/template_offcial/public/src/services/index.js +38 -2
- package/templates/template_offcial/public/src/services/user.js +3 -3
- package/templates/template_offcial/public/src/type.js +47 -0
- package/templates/template_admin/public/src/components/Alert/index.jsx +0 -0
- package/templates/template_admin/public/src/components/Alert/index.less +0 -0
- package/templates/template_admin/public/src/components/Header/index.jsx +0 -57
- package/templates/template_admin/public/src/components/Layout/CenterBody/index.jsx +0 -15
- package/templates/template_admin/public/src/components/Link/index.jsx +0 -24
- package/templates/template_admin/public/src/components/Loading/index.jsx +0 -14
- package/templates/template_admin/public/src/components/Loading/index.less +0 -85
- package/templates/template_admin/public/src/components/mask/index.jsx +0 -47
- package/templates/template_admin/public/src/components/mask/index.less +0 -32
- package/templates/template_admin/public/src/hooks/useLogin.jsx +0 -33
- package/templates/template_app/public/src/components/Header/index.less +0 -57
- package/templates/template_app/public/src/components/Layout/index.jsx +0 -4
- package/templates/template_app/public/src/hooks/useLogin.jsx +0 -33
- package/templates/template_oa/public/src/components/Alert/index.jsx +0 -0
- package/templates/template_oa/public/src/components/Alert/index.less +0 -0
- package/templates/template_oa/public/src/components/Auth/index.jsx +0 -44
- package/templates/template_oa/public/src/components/Dialog/index.jsx +0 -150
- package/templates/template_oa/public/src/components/Footer/index.jsx +0 -17
- package/templates/template_oa/public/src/components/Footer/index.less +0 -28
- package/templates/template_oa/public/src/components/IconFont/index.jsx +0 -10
- package/templates/template_oa/public/src/components/Link/index.jsx +0 -24
- package/templates/template_oa/public/src/components/Loading/index.jsx +0 -14
- package/templates/template_oa/public/src/components/Loading/index.less +0 -85
- package/templates/template_oa_jwt/public/src/components/Alert/index.jsx +0 -0
- package/templates/template_oa_jwt/public/src/components/Alert/index.less +0 -0
- package/templates/template_oa_jwt/public/src/components/Auth/index.jsx +0 -44
- package/templates/template_oa_jwt/public/src/components/Dialog/index.jsx +0 -150
- package/templates/template_oa_jwt/public/src/components/Footer/index.jsx +0 -17
- package/templates/template_oa_jwt/public/src/components/Footer/index.less +0 -28
- package/templates/template_oa_jwt/public/src/components/Loading/index.jsx +0 -16
- package/templates/template_oa_jwt/public/src/components/Loading/index.less +0 -96
- package/templates/template_offcial/public/src/components/Alert/index.jsx +0 -0
- package/templates/template_offcial/public/src/components/Alert/index.less +0 -0
- package/templates/template_offcial/public/src/components/IconFont/index.jsx +0 -10
- package/templates/template_offcial/public/src/components/Layout/Provider/index.jsx +0 -12
- package/templates/template_offcial/public/src/components/Page/PageLoading/index.jsx +0 -30
- package/templates/template_offcial/public/src/components/Popup/index.jsx +0 -22
- package/templates/template_offcial/public/src/components/Toast/index.jsx +0 -60
- /package/templates/template_admin/public/src/components/{IconFont → iconFont}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Layout/Basic → layout/basic}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Layout/CenterBody → layout/centerBody}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Layout → layout}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Link → link}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Menu → menu}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Page/PageLoading → page/pageLoading}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Popup → popup}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{Toast → toast}/index.less +0 -0
- /package/templates/template_admin/public/src/components/{TopMenu → topMenu}/index.less +0 -0
- /package/templates/{template_admin/public/src/components/Header → template_app/public/src/components/header}/index.less +0 -0
- /package/templates/template_app/public/src/components/{IconFont → iconFont}/index.less +0 -0
- /package/templates/template_app/public/src/components/{Layout/App → layout/app}/index.less +0 -0
- /package/templates/template_app/public/src/components/{Link → link}/index.less +0 -0
- /package/templates/template_app/public/src/components/{Marquee → marquee}/index.less +0 -0
- /package/templates/template_app/public/src/components/{Page/PageLoading → page/pageLoading}/index.less +0 -0
- /package/templates/template_app/public/src/components/{Popup → popup}/index.less +0 -0
- /package/templates/template_app/public/src/components/{Toast → toast}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Dialog → dialog}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Empty → empty}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{FormRow → formRow}/index.less +0 -0
- /package/templates/{template_oa_jwt/public/src/components/FormTable → template_oa/public/src/components/formTable}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{IconFont → iconFont}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{IFrame → iframe}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Layout/Basic → layout/basic}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Layout/CenterBody → layout/centerBody}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Layout/FormBlock → layout/formBlock}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Layout → layout}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Link → link}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Nav → nav}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Page/PageLoading → page/pageLoading}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Popup → popup}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Select/StaffSelect → select/staffSelect}/index.less +0 -0
- /package/templates/template_oa/public/src/components/{Toast → toast}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Dialog → dialog}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Empty → empty}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{FormRow → formRow}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{IconFont → iconFont}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{IFrame → iframe}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Layout/Basic → layout/basic}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Layout/CenterBody → layout/centerBody}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Layout/FormBlock → layout/formBlock}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Layout → layout}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Link → link}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Nav → nav}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Page/PageLoading → page/pageLoading}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Popup → popup}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Select/StaffSelect → select/staffSelect}/index.less +0 -0
- /package/templates/template_oa_jwt/public/src/components/{Toast → toast}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{Footer → footer}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{Header → header}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{IconFont → iconFont}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{Layout → layout}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{Link → link}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{Page/PageLoading → page/pageLoading}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{Popup → popup}/index.less +0 -0
- /package/templates/template_offcial/public/src/components/{Toast → toast}/index.less +0 -0
|
@@ -1,8 +1,23 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import React, { useState, useEffect } from 'react';
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import { Select } from 'antd';
|
|
3
5
|
|
|
6
|
+
/**
|
|
7
|
+
* @typedef DepItem
|
|
8
|
+
* @property {string} ORG_ID - 部门ID
|
|
9
|
+
* @property {string} ORG_NAME - 部门名称
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
|
|
4
13
|
/**
|
|
5
14
|
* 所属部门选择器
|
|
15
|
+
* @param {Object} props
|
|
16
|
+
* @param {string|string[]} [props.value] - 当前选中的部门数据
|
|
17
|
+
* @param {DepItem[]} props.list - 所有部门数据
|
|
18
|
+
* @param {(options:string|string[],selected:any|any[])=>void} props.onChange - 选中数据发生变更的回调
|
|
19
|
+
*
|
|
20
|
+
* @returns { JSX.Element }
|
|
6
21
|
*/
|
|
7
22
|
function DepSelect(props) {
|
|
8
23
|
const [value, setValue] = useState(props?.value || '');
|
|
@@ -1,7 +1,34 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import React, { useState, useEffect } from 'react';
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import { Select } from 'antd';
|
|
5
|
+
// @ts-ignore
|
|
3
6
|
import CSS from './index.less';
|
|
4
7
|
CSS;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @typedef StaffItem
|
|
11
|
+
* @property {string} USR_UID - 用户ID
|
|
12
|
+
* @property {string} USR_JOB_ID - 工号
|
|
13
|
+
* @property {string} REAL_NAME - 真实姓名
|
|
14
|
+
* @property {string} USR_CN - 姓名(带重名数字)
|
|
15
|
+
*
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 员工选择器
|
|
21
|
+
* @param {Object} props
|
|
22
|
+
* @param {StaffItem[]} props.userList - 所有员工数据
|
|
23
|
+
* @param {string|string[]} props.value - 当前选中的员工UID
|
|
24
|
+
* @param {string} [props.mode=false] - 单选/多选模式,multiple=多选
|
|
25
|
+
* @param {string} [props.valIsLabel=false] - value值的格式,true=姓名(工号),false=用户UID
|
|
26
|
+
* @param {string|string[]} [props.defaultValue] - 初始选中的员工UID
|
|
27
|
+
* @param {string|string[]} [props.ifnofound] - 当初始选中的员工数据中无法匹配到员工时,对应显示的文案
|
|
28
|
+
* @param {(options:string|string[],selected:any|any[])=>void} [props.onChange] - 选中数据发生变更的回调
|
|
29
|
+
*
|
|
30
|
+
* @returns { JSX.Element }
|
|
31
|
+
*/
|
|
5
32
|
const StaffSelect = (props) => {
|
|
6
33
|
const [userList, setUserList] = useState(props.userList || null);
|
|
7
34
|
const [value, setValue] = useState(props?.defaultValue || []);
|
|
@@ -1,7 +1,14 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import React,{useEffect} from 'react';
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import ReactDOM from 'react-dom';
|
|
5
|
+
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import Popup from '@/components/popup';
|
|
8
|
+
|
|
9
|
+
// @ts-ignore
|
|
3
10
|
import styles from './index.less';
|
|
4
|
-
|
|
11
|
+
|
|
5
12
|
|
|
6
13
|
const toastList=[];
|
|
7
14
|
const runNext=()=>{
|
|
@@ -43,12 +50,25 @@ const Toast=props=>{
|
|
|
43
50
|
)
|
|
44
51
|
}
|
|
45
52
|
|
|
53
|
+
/**
|
|
54
|
+
* @typedef {object} ToastOptions
|
|
55
|
+
* @property {string} message - 吐司文案内容
|
|
56
|
+
* @property {number} [delay=2000] - 持续时间,毫秒
|
|
57
|
+
* @property {string} [position] - 显示位置,center|top|bottom
|
|
58
|
+
* @property {Function} [resolve] - 显示完毕的回调
|
|
59
|
+
*/
|
|
46
60
|
|
|
61
|
+
/**
|
|
62
|
+
* 显示一个吐司信息
|
|
63
|
+
* @param {ToastOptions|string} [props] - 文案内容或一个配置参数
|
|
64
|
+
* @returns { Promise }
|
|
65
|
+
*/
|
|
47
66
|
const ShowToast=props=>{
|
|
48
67
|
if(typeof props === 'string'){
|
|
49
68
|
props = {message:props}
|
|
50
69
|
}
|
|
51
70
|
return new Promise((resolve) => {
|
|
71
|
+
// @ts-ignore
|
|
52
72
|
props.resolve = resolve;
|
|
53
73
|
toastList.push(props);
|
|
54
74
|
if(toastList.length===1){
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import React, { useState,useEffect } from 'react';
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import { Upload, message,Button } from 'antd';
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
import { UploadOutlined } from '@ant-design/icons';
|
|
7
|
+
|
|
3
8
|
import { UPLOAD_FILE,GET_DOWNLOAD_FILE } from "@/services/common.js";
|
|
4
9
|
// import {getUploadToken,setMediaInfo} from '@/services/common.js';
|
|
5
10
|
// import COS from 'cos-js-sdk-v5';
|
|
6
11
|
|
|
7
|
-
import { UploadOutlined } from '@ant-design/icons';
|
|
8
12
|
|
|
9
13
|
|
|
10
14
|
function DELAY(time){
|
|
@@ -67,12 +71,16 @@ function DELAY(time){
|
|
|
67
71
|
// }
|
|
68
72
|
|
|
69
73
|
function CHECK_FILE_TYPE(types, filename) {
|
|
74
|
+
/**
|
|
75
|
+
* @type RegExp|string
|
|
76
|
+
*/
|
|
70
77
|
let reg = '';
|
|
71
78
|
|
|
72
79
|
if (types.constructor === Array) {
|
|
73
80
|
types = types.join('|');
|
|
74
81
|
}
|
|
75
82
|
reg = `[.](${types})$`;
|
|
83
|
+
|
|
76
84
|
reg = new RegExp(reg, 'i');
|
|
77
85
|
return reg.test(filename);
|
|
78
86
|
}
|
|
@@ -87,6 +95,7 @@ const getImageInfo= async (file)=>{
|
|
|
87
95
|
img.onload=()=>{
|
|
88
96
|
resolve({width:img.width,height:img.height});
|
|
89
97
|
}
|
|
98
|
+
// @ts-ignore
|
|
90
99
|
img.src=reader.result;
|
|
91
100
|
}
|
|
92
101
|
})
|
|
@@ -98,9 +107,11 @@ const getVideoInfo= async (file)=>{
|
|
|
98
107
|
reader.onload =()=>{
|
|
99
108
|
let video = document.createElement('video');
|
|
100
109
|
video.addEventListener('canplay',(e)=>{
|
|
110
|
+
// @ts-ignore
|
|
101
111
|
const {videoWidth,videoHeight} = e.target;
|
|
102
112
|
resolve({width:videoWidth,height:videoHeight});
|
|
103
113
|
})
|
|
114
|
+
// @ts-ignore
|
|
104
115
|
video.setAttribute('src',reader.result);
|
|
105
116
|
// document.body.appendChild(img);
|
|
106
117
|
}
|
|
@@ -184,8 +195,35 @@ export const uploadFile=async (props,detail)=>{
|
|
|
184
195
|
}
|
|
185
196
|
|
|
186
197
|
|
|
198
|
+
/**
|
|
199
|
+
* @typedef FileInfo
|
|
200
|
+
* @property {string} server_link - 文件唯一名
|
|
201
|
+
* @property {string} [client_name] - 文件显示名
|
|
202
|
+
* @property {string} [thumbUrl] - 预览图URL
|
|
203
|
+
* @property {any} [info] - 文件唯一ID
|
|
204
|
+
*
|
|
205
|
+
*/
|
|
206
|
+
|
|
207
|
+
|
|
187
208
|
/**
|
|
188
209
|
*
|
|
210
|
+
* 上传文件组件
|
|
211
|
+
* @param {Object} props
|
|
212
|
+
* @param {FileInfo|FileInfo[]} props.value - 当前值
|
|
213
|
+
* @param {FileInfo|FileInfo[]} props.defaultFile - 初始值
|
|
214
|
+
* @param {string} [props.thumbUrl] - 通用预览图
|
|
215
|
+
* @param {number} [props.maxSize] - 单个文件最大值,单位KB
|
|
216
|
+
* @param {(files:FileInfo[])=>void} [props.onChange] - 文件发生变化的回调
|
|
217
|
+
* @param {string} [props.listType] - 上传内容的类型,text=常规文件,上传图片
|
|
218
|
+
* @param {boolean} [props.multiple] - 是否支持多选
|
|
219
|
+
* @param {boolean} [props.disabled] - 是否禁用状态
|
|
220
|
+
* @param {string[]} [props.acceptTypes] - 允许上传的文件类型,如:['png','jpg']
|
|
221
|
+
* @param {()=>void} [props.onPreview] - 点击图片查看的回调
|
|
222
|
+
* @param {boolean} [props.showUploadList] - 同antd upload组件内的showUploadList https://4x.ant.design/components/upload-cn/#API
|
|
223
|
+
* @param {string} [props.className] - 扩展类样式
|
|
224
|
+
*
|
|
225
|
+
*
|
|
226
|
+
* @returns {JSX.Element}
|
|
189
227
|
* {
|
|
190
228
|
* uid:'',//唯一id,负数为默认文件
|
|
191
229
|
* url:'',//下载链接
|
|
@@ -206,14 +244,14 @@ const UploadHelper = (props) => {
|
|
|
206
244
|
let defaultFile=[];
|
|
207
245
|
let ret=[];
|
|
208
246
|
if(props.value){
|
|
209
|
-
if(props.value
|
|
247
|
+
if( Array.isArray(props.value) ){
|
|
210
248
|
defaultFile=[...props.value];
|
|
211
249
|
}else{
|
|
212
250
|
defaultFile.push(props.value);
|
|
213
251
|
}
|
|
214
252
|
}
|
|
215
253
|
else if(props.defaultFile){
|
|
216
|
-
if(props.defaultFile
|
|
254
|
+
if( Array.isArray(props.defaultFile) ){
|
|
217
255
|
defaultFile=[...props.defaultFile];
|
|
218
256
|
}else{
|
|
219
257
|
defaultFile.push(props.defaultFile);
|
|
@@ -1,18 +1,23 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import { useRef,useState,useMemo, useEffect } from 'react';
|
|
2
3
|
|
|
3
4
|
const useDelay=()=>{
|
|
4
5
|
const [loading,setLoading] = useState(false);
|
|
5
6
|
const refSet = useRef();
|
|
7
|
+
// @ts-ignore
|
|
6
8
|
refSet.current = setLoading;
|
|
7
9
|
useEffect(()=>{
|
|
10
|
+
// @ts-ignore
|
|
8
11
|
refSet.current = setLoading;
|
|
9
12
|
},[setLoading]);
|
|
10
13
|
|
|
11
14
|
const actions=useMemo(()=>{
|
|
12
15
|
const wait=(ms)=>{
|
|
16
|
+
// @ts-ignore
|
|
13
17
|
refSet.current(true);
|
|
14
18
|
return new Promise(res=>{
|
|
15
19
|
setTimeout(()=>{
|
|
20
|
+
// @ts-ignore
|
|
16
21
|
refSet.current(false);
|
|
17
22
|
res();
|
|
18
23
|
}, ms);
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import { useRef,useState, useEffect } from 'react';
|
|
2
|
-
|
|
3
|
+
|
|
4
|
+
import {ShowPageLoading} from '@/components/page/pageLoading';
|
|
3
5
|
|
|
4
6
|
const useLoading=(props={})=>{
|
|
5
7
|
const {canTouch=false} = props;
|
|
@@ -20,10 +22,12 @@ const useLoading=(props={})=>{
|
|
|
20
22
|
useEffect(()=>{
|
|
21
23
|
if(count > 0 ){
|
|
22
24
|
if(!refPageLoading.current){
|
|
25
|
+
// @ts-ignore
|
|
23
26
|
refPageLoading.current = ShowPageLoading({canTouch:canTouch});
|
|
24
27
|
}
|
|
25
28
|
}else{
|
|
26
29
|
if(refPageLoading.current){
|
|
30
|
+
// @ts-ignore
|
|
27
31
|
refPageLoading.current();//销毁
|
|
28
32
|
refPageLoading.current=null;
|
|
29
33
|
}
|
|
@@ -1,8 +1,19 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import { useState, useMemo, useEffect } from 'react'
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import { createContainer } from 'unstated-next'
|
|
3
5
|
|
|
6
|
+
/**
|
|
7
|
+
* @typedef {[HTMLElement,Function]} UseStateElement
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
|
|
4
11
|
const useActivity = () => {
|
|
5
12
|
const [scrollTop, setScrollTop] = useState(0);
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @type UseStateElement
|
|
16
|
+
*/
|
|
6
17
|
const [containerNode, setContainerNode] = useState();
|
|
7
18
|
const [clientHeight, setClientHeight] = useState(0);
|
|
8
19
|
const [titleRefs, setTitleRefs] = useState({});
|
|
@@ -12,6 +23,7 @@ const useActivity = () => {
|
|
|
12
23
|
setContainerNode(node);
|
|
13
24
|
setClientHeight(node.clientHeight)
|
|
14
25
|
node.addEventListener('scroll', (e) => {
|
|
26
|
+
// @ts-ignore
|
|
15
27
|
setScrollTop(e.target.scrollTop);
|
|
16
28
|
})
|
|
17
29
|
}, [])
|
|
@@ -1,7 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
// @ts-ignore
|
|
2
|
+
import React,{ useState } from 'react';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @typedef {object} UseSearch
|
|
7
|
+
* @property {(pageInfo:Pagination,sorterInfo:any)=>Promise} onPaginationChange - 监听分页信息发生变更
|
|
8
|
+
* @property {Pagination} pagination - 当前分页信息
|
|
9
|
+
* @property {object} search - 当前分页查询参数
|
|
10
|
+
* @property {()=>Promise} btnSearch - 出发查询
|
|
11
|
+
* @property {(object)=>void} setSearch - 设置查询参数
|
|
12
|
+
* @property {(object)=>Promise<ServicesResponse>} refresh - 设置查询参数
|
|
13
|
+
* @property {()=>void} btnReset - 重置查询参数
|
|
14
|
+
* @property {(sorter:object)=>void} onSorter - 监听排序变更
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
|
|
2
18
|
|
|
3
19
|
/**
|
|
4
20
|
* 管理表格数据的查询搜索及分页
|
|
21
|
+
* @param {object} props
|
|
22
|
+
* @param {object} [props.initSearch={}] - 初始的分页搜索参数
|
|
23
|
+
* @param {(params)=>Promise} [props.service] - 分页接口提交方法
|
|
24
|
+
* @param {(params:any)=>object} [props.beforeSearch] - 参数拦截器
|
|
25
|
+
* @param {(params:any)=>object} [props.beforeService] - 提交接口前的参数拦截器
|
|
26
|
+
* @param {(response:any)=>void} [props.updateData] - 接口返回后的回调
|
|
27
|
+
* @param {Pagination} [props.pagination] - 接口返回后的回调
|
|
28
|
+
*
|
|
29
|
+
* @returns {UseSearch}
|
|
5
30
|
*/
|
|
6
31
|
const useSearch=(props)=>{
|
|
7
32
|
const [search,setSearch] = useState(props.initSearch||{});
|
|
@@ -80,10 +105,11 @@ const useSearch=(props)=>{
|
|
|
80
105
|
}
|
|
81
106
|
}
|
|
82
107
|
const btnReset=()=>{
|
|
108
|
+
// @ts-ignore
|
|
83
109
|
formRef.resetFields();
|
|
84
110
|
}
|
|
85
111
|
|
|
86
|
-
const refresh= async ({searchValue,pageValue,orderValue}={})=>{
|
|
112
|
+
const refresh= async ({searchValue=null,pageValue=null,orderValue=null}={})=>{
|
|
87
113
|
searchValue = searchValue || search;
|
|
88
114
|
pageValue = pageValue || pagination;
|
|
89
115
|
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import React from 'react';
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import ReactDOM from 'react-dom';
|
|
5
|
+
// @ts-ignore
|
|
3
6
|
import {HashRouter} from 'react-router-dom';
|
|
4
7
|
// import {createRoot} from 'react-dom/client';
|
|
5
8
|
// import { createHashRouter,RouterProvider } from 'react-router-dom';
|
|
@@ -7,33 +10,44 @@ import './_antd.less';
|
|
|
7
10
|
import './_reset.less';
|
|
8
11
|
import {RouteList} from './route';
|
|
9
12
|
|
|
10
|
-
|
|
13
|
+
// @ts-ignore
|
|
11
14
|
if(MOCK){
|
|
12
15
|
let mock = require('@/mock');
|
|
13
16
|
mock;
|
|
14
17
|
}
|
|
15
18
|
|
|
19
|
+
// @ts-ignore
|
|
16
20
|
window.appLog=(txt)=>{
|
|
17
21
|
console.log(txt);
|
|
18
22
|
}
|
|
19
23
|
|
|
20
24
|
/* eslint-disable */
|
|
25
|
+
// @ts-ignore
|
|
21
26
|
if(BUILD_ENV!='prod'){
|
|
27
|
+
// @ts-ignore
|
|
22
28
|
let VConsole = require('vconsole');
|
|
29
|
+
// @ts-ignore
|
|
23
30
|
const vConsole = new VConsole();
|
|
24
31
|
setTimeout(() => {
|
|
25
32
|
vConsole.setSwitchPosition(70, 10);
|
|
26
33
|
}, 2000);
|
|
27
34
|
}
|
|
28
35
|
|
|
36
|
+
// @ts-ignore
|
|
29
37
|
if(BUILD_ENV){
|
|
38
|
+
// @ts-ignore
|
|
30
39
|
window.appLog(`代码环境类型:${BUILD_ENV}`);
|
|
31
40
|
}
|
|
41
|
+
// @ts-ignore
|
|
32
42
|
if (VERSION_HASH) {
|
|
43
|
+
// @ts-ignore
|
|
33
44
|
window.appLog(`VERSION_HASH:${VERSION_HASH}`);
|
|
34
45
|
}
|
|
46
|
+
// @ts-ignore
|
|
35
47
|
window.appLog(`log init`);
|
|
48
|
+
// @ts-ignore
|
|
36
49
|
window.appLog(`${location.href}`);
|
|
50
|
+
// @ts-ignore
|
|
37
51
|
window.appLog(`ua:${navigator.userAgent}`);
|
|
38
52
|
/* eslint-enable */
|
|
39
53
|
|
|
@@ -1,25 +1,29 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import React, { useEffect, useState, useRef } from 'react';
|
|
2
|
-
|
|
3
|
+
// @ts-ignore
|
|
4
|
+
import { useNavigate } from 'react-router-dom';
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
import { Table, Input, Button, Form,Checkbox,Radio } from 'antd';
|
|
3
7
|
|
|
4
8
|
import {usePaginationWithForm} from '@/hooks';
|
|
5
9
|
import {GET_LIST} from '@/services/video';
|
|
6
10
|
import {GET_STAFF_LIST,GET_DEP_LIST} from '@/services/common';
|
|
7
|
-
|
|
8
|
-
import { Table, Input, Button, Form,Checkbox,Radio } from 'antd';
|
|
9
|
-
import {FormBlockByTitle} from '@/components/Layout/FormBlock';
|
|
10
|
-
import styles from './index.less';
|
|
11
|
+
import {FormBlockByTitle} from '@/components/layout/formBlock';
|
|
11
12
|
import PageTitle from '@/pages/components/pageTitle';
|
|
12
13
|
import TotalRecord from '@/pages/components/totalRecord';
|
|
13
|
-
import {ShowErrorAlert,ShowAlert,ShowConfirm} from '@/components/
|
|
14
|
-
import ShowToast from '@/components/
|
|
15
|
-
import Empty from '@/components/
|
|
16
|
-
import FormRow from '@/components/
|
|
17
|
-
import FormTable from '@/components/
|
|
18
|
-
import UploadHelper from '@/components/
|
|
19
|
-
import StaffSelect from '@/components/
|
|
20
|
-
import DepSelect from '@/components/
|
|
14
|
+
import {ShowErrorAlert,ShowAlert,ShowConfirm} from '@/components/dialog';
|
|
15
|
+
import ShowToast from '@/components/toast';
|
|
16
|
+
import Empty from '@/components/empty';
|
|
17
|
+
import FormRow from '@/components/formRow';
|
|
18
|
+
import FormTable from '@/components/formTable';
|
|
19
|
+
import UploadHelper from '@/components/upload';
|
|
20
|
+
import StaffSelect from '@/components/select/staffSelect';
|
|
21
|
+
import DepSelect from '@/components/select/depSelect';
|
|
21
22
|
import ProviderApp from '@/provider/app';
|
|
22
23
|
|
|
24
|
+
// @ts-ignore
|
|
25
|
+
import styles from './index.less';
|
|
26
|
+
|
|
23
27
|
const Page = () => {
|
|
24
28
|
const providerApp = ProviderApp.useContainer();
|
|
25
29
|
const navigate= useNavigate();
|
|
@@ -1,8 +1,27 @@
|
|
|
1
|
-
|
|
1
|
+
// @ts-ignore
|
|
2
|
+
import { useState,useMemo } from 'react';
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import { useSearchParams,useNavigate } from 'react-router-dom';
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
import { createContainer } from "unstated-next"
|
|
7
|
+
|
|
3
8
|
import {setLogout} from '@/services';
|
|
4
9
|
|
|
5
|
-
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* @typedef AppContaniner
|
|
14
|
+
* @property {boolean} loading - 当前是否是加载状态
|
|
15
|
+
* @property {(open:boolean)=>void} setLoading - 设置加载状态
|
|
16
|
+
* @property {object} nav - 导航栏配置
|
|
17
|
+
* @property {(option:object)=>void} setNav - 设置导航栏配置
|
|
18
|
+
* @property {()=>Promise} logout - 注销病退回登录界面
|
|
19
|
+
* @property {(user:object)=>void} setUser - 注销病退回登录界面
|
|
20
|
+
* @property {object} user - 注销病退回登录界面
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
|
|
7
26
|
const useApp=() =>{
|
|
8
27
|
const [search] = useSearchParams();
|
|
@@ -17,11 +36,14 @@ const useApp=() =>{
|
|
|
17
36
|
}
|
|
18
37
|
|
|
19
38
|
const logout=async ()=>{
|
|
39
|
+
// @ts-ignore
|
|
20
40
|
if(BUILD_ENV=='localdebug'){
|
|
21
41
|
navigate('/login');
|
|
22
42
|
}else{
|
|
23
43
|
let url = window.btoa(location.href);
|
|
44
|
+
// @ts-ignore
|
|
24
45
|
let redirect=`${OA_HOST}/login?url=${url}`;
|
|
46
|
+
// @ts-ignore
|
|
25
47
|
if(BUILD_ENV!='prod'){
|
|
26
48
|
redirect+='&debug=1';
|
|
27
49
|
}
|
|
@@ -47,6 +69,15 @@ const useApp=() =>{
|
|
|
47
69
|
return action
|
|
48
70
|
}
|
|
49
71
|
|
|
72
|
+
/**
|
|
73
|
+
* @typedef {object} AppProvider
|
|
74
|
+
* @property {function():AppContaniner} useContainer
|
|
75
|
+
* @property {React.ComponentType<any>} Provider
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @type {AppProvider}
|
|
80
|
+
*/
|
|
50
81
|
const App = createContainer(useApp);
|
|
51
82
|
|
|
52
83
|
export default App;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
import React,{Suspense} from 'react';
|
|
3
|
+
// @ts-ignore
|
|
2
4
|
import { Routes, Route, Navigate } from 'react-router-dom';
|
|
3
5
|
|
|
4
|
-
import { LayoutBasic, Layout } from '@/components/
|
|
5
|
-
import PageLoading from '@/components/
|
|
6
|
+
import { LayoutBasic, Layout } from '@/components/layout';
|
|
7
|
+
import PageLoading from '@/components/page/pageLoading';
|
|
6
8
|
|
|
7
9
|
import Login from '@/pages/login';
|
|
8
10
|
// import {AuthLogin} from '@/components/Auth';
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
import {GET_TOKEN,GET_DEFAULT_CROSS} from '@/services';
|
|
3
|
+
// @ts-ignore
|
|
3
4
|
import axios from 'axios';
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* 获取员工列表
|
|
7
8
|
*/
|
|
8
9
|
export async function GET_STAFF_LIST() {
|
|
10
|
+
// @ts-ignore
|
|
9
11
|
let ret = await GET_DEFAULT_CROSS(`${OA_HOST}/common/getNewUserList`);
|
|
10
12
|
return ret;
|
|
11
13
|
// let response = await axios({
|
|
@@ -23,6 +25,7 @@ export async function GET_STAFF_LIST() {
|
|
|
23
25
|
* 所有部门信息
|
|
24
26
|
*/
|
|
25
27
|
export async function GET_DEP_LIST() {
|
|
28
|
+
// @ts-ignore
|
|
26
29
|
return GET_DEFAULT_CROSS(`${OA_HOST}/common/getBenefitDept`);
|
|
27
30
|
}
|
|
28
31
|
|
|
@@ -31,6 +34,7 @@ export async function GET_DEP_LIST() {
|
|
|
31
34
|
* @returns
|
|
32
35
|
*/
|
|
33
36
|
export function GET_COMPANY_LIST(){
|
|
37
|
+
// @ts-ignore
|
|
34
38
|
return GET_DEFAULT_CROSS(`${OA_HOST}/filestore/list?status=1`);
|
|
35
39
|
}
|
|
36
40
|
|
|
@@ -50,6 +54,7 @@ export async function POST_IMPORT_EXCEL(url, file, onProgress) {
|
|
|
50
54
|
url: url,
|
|
51
55
|
data: formdata,
|
|
52
56
|
onUploadProgress: (e) => {
|
|
57
|
+
// @ts-ignore
|
|
53
58
|
onProgress({ percent: `${e.loaded}/${e.total}` * 100 });
|
|
54
59
|
},
|
|
55
60
|
});
|
|
@@ -60,6 +65,7 @@ export async function POST_IMPORT_EXCEL(url, file, onProgress) {
|
|
|
60
65
|
* 获取下载文件的url路径
|
|
61
66
|
*/
|
|
62
67
|
export function GET_DOWNLOAD_FILE(s_name) {
|
|
68
|
+
// @ts-ignore
|
|
63
69
|
return `${OA_HOST}/file/download?name=${s_name}`;
|
|
64
70
|
}
|
|
65
71
|
|
|
@@ -80,6 +86,7 @@ export async function UPLOAD_FILE(file, param, onProgress) {
|
|
|
80
86
|
|
|
81
87
|
let response = await axios({
|
|
82
88
|
method: 'post',
|
|
89
|
+
// @ts-ignore
|
|
83
90
|
url: `${OA_HOST}/file/upload`,
|
|
84
91
|
data: formdata,
|
|
85
92
|
xsrfCookieName: '',
|
|
@@ -87,6 +94,7 @@ export async function UPLOAD_FILE(file, param, onProgress) {
|
|
|
87
94
|
withCredentials: true,
|
|
88
95
|
|
|
89
96
|
onUploadProgress: (e) => {
|
|
97
|
+
// @ts-ignore
|
|
90
98
|
let per = parseFloat((e.loaded / e.total) * 100).toFixed(0);
|
|
91
99
|
onProgress({ percent: per });
|
|
92
100
|
},
|
|
@@ -110,6 +118,9 @@ export async function UPLOAD_FILE(file, param, onProgress) {
|
|
|
110
118
|
* types:array|string,['png','gif']|'png' 类型
|
|
111
119
|
*/
|
|
112
120
|
export function CHECK_FILE_TYPE(types, filename) {
|
|
121
|
+
/**
|
|
122
|
+
* @type RegExp|string
|
|
123
|
+
*/
|
|
113
124
|
let reg = '';
|
|
114
125
|
|
|
115
126
|
if (types.constructor === Array) {
|