├── .deepsource.toml ├── .eslintrc ├── .gitignore ├── .prettierrc.js ├── .vscode ├── launch.json └── st.json ├── README.md ├── craco.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── static │ ├── images │ ├── bg9.png │ ├── login_03.png │ └── navigation_bars.png │ ├── js │ └── less.min.js │ └── style │ ├── bg.less │ └── theme.less ├── src ├── App.tsx ├── api │ ├── AmiFunction │ │ ├── abnormalMgnt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── connectAndDisConnect │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── dcuMonitoring │ │ │ └── type.d.ts │ │ ├── deviceMonitoring │ │ │ ├── index.tsx │ │ │ └── type.d.ts │ │ ├── firmwareUpgrade │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── index.ts │ │ ├── meterParam │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── meterReadRate │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── netWorkMgnt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── onDemandReading │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ └── taskMgnt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ ├── README.md │ ├── basicData │ │ ├── commandScheme │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── dataDefinition │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── dcuInWareHouse │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── excelImpot │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── feederMgt │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── index.ts │ │ ├── meterInWareHouse │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── organizationMgt │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ └── transformMgt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ ├── collectReport │ │ ├── dcuAlarmEvent │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── frozenData │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── index.ts │ │ ├── linelossQuery │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── loadProfileData │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ └── meterAlarmEvent │ │ │ ├── index.ts │ │ │ └── types.d.ts │ ├── common │ │ ├── index.ts │ │ └── type.d.ts │ ├── configuration │ │ ├── activityCalender │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── alarmConfig │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── commandConfig │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── configDcuArchive │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── configLoadProfile │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── dcuSchedule │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── index.ts │ │ ├── lineLossAnalysis │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── meterTypeParameters │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── ntpConfig │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── opreatorOnlineMgnt │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ └── systemParametersMgnt │ │ │ ├── index.ts │ │ │ └── types.d.ts │ ├── customer&Device │ │ ├── customerMgnt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── dcuMgnt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── index.ts │ │ ├── measurePointMgnt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ └── meterMgnt │ │ │ ├── index.ts │ │ │ └── type.d.ts │ ├── homePage │ │ ├── index.tsx │ │ └── type.d.ts │ ├── http.ts │ ├── index.ts │ ├── lang │ │ ├── index.ts │ │ └── type.d.ts │ ├── types.d.ts │ └── user │ │ ├── index.ts │ │ └── type.d.ts ├── assets │ └── imgs │ │ └── common │ │ ├── formlight.png │ │ ├── logo5.png │ │ ├── logo_login.png │ │ └── overseas.png ├── components │ ├── business │ │ ├── addRowCom │ │ │ └── index.tsx │ │ ├── deviceTree │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── labelList │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── searchList │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── taskCom │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── terminalInfo │ │ │ ├── content.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── transfer │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── uploadModal │ │ │ └── index.tsx │ ├── common │ │ ├── btnList │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── columnsSelect │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── echarts │ │ │ └── index.tsx │ │ ├── editableCell │ │ │ └── index.tsx │ │ ├── icon │ │ │ ├── customIcon.tsx │ │ │ └── index.tsx │ │ ├── language │ │ │ ├── index.tsx │ │ │ └── langLocale.ts │ │ ├── loding │ │ │ └── index.tsx │ │ ├── toLoad │ │ │ └── index.tsx │ │ └── uploadSolt │ │ │ └── index.tsx │ ├── footer │ │ └── index.tsx │ ├── header │ │ ├── index.less │ │ ├── index.tsx │ │ ├── news.tsx │ │ └── newsNotice.tsx │ └── menu │ │ ├── index.less │ │ ├── index.tsx │ │ └── menuTabs.tsx ├── index.tsx ├── layout │ ├── home │ │ ├── index.less │ │ └── index.tsx │ ├── login │ │ ├── index.less │ │ └── index.tsx │ └── refused │ │ ├── index.tsx │ │ ├── noAccess.tsx │ │ └── serviceException.tsx ├── pages │ ├── amiFunction │ │ ├── abnormalManagement │ │ │ └── index.tsx │ │ ├── connectAndDisconnect │ │ │ └── index.tsx │ │ ├── deviceMonitoring │ │ │ ├── dcuMonitoring.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── meterMonitoring.tsx │ │ ├── firmwareUpgrade │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── queryResult.tsx │ │ │ ├── remoteUpgrade.tsx │ │ │ └── upgradeInfo.tsx │ │ ├── meterParam │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── meterReadingSuccessRate │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── meterReadRate.tsx │ │ │ └── noComMeterQuery.tsx │ │ ├── networkManagement │ │ │ ├── dataCount.tsx │ │ │ ├── historyChart.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── metertList.tsx │ │ │ ├── modalTable.tsx │ │ │ ├── nodeLink.tsx │ │ │ ├── phaseCensus.tsx │ │ │ ├── pingDialog.tsx │ │ │ ├── pingReault.tsx │ │ │ └── showCensus.tsx │ │ ├── onDemandReading │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── taskManagement │ │ │ ├── index.less │ │ │ └── index.tsx │ ├── basicData │ │ ├── commandScheme │ │ │ └── index.tsx │ │ ├── dataDefinition │ │ │ └── index.tsx │ │ ├── dcuInWareHouse │ │ │ └── index.tsx │ │ ├── excelFileImport │ │ │ ├── excelData.tsx │ │ │ ├── excelFile.tsx │ │ │ └── index.tsx │ │ ├── feederManagement │ │ │ └── index.tsx │ │ ├── meterInWareHouse │ │ │ └── index.tsx │ │ ├── organizationalStructure │ │ │ └── index.tsx │ │ └── transformerManagement │ │ │ └── index.tsx │ ├── collectReport │ │ ├── dailyFrozenDataQuery │ │ │ └── index.tsx │ │ ├── dcuAlarmEvent │ │ │ └── index.tsx │ │ ├── lineLossQuery │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── loadProfileDataQuery │ │ │ └── index.tsx │ │ ├── meterAlarmEvent │ │ │ └── index.tsx │ │ └── monthlyFrozenDataQuery │ │ │ └── index.tsx │ ├── components │ │ ├── deviceTree │ │ │ └── index.tsx │ │ ├── labelList │ │ │ └── index.tsx │ │ ├── searchList │ │ │ └── index.tsx │ │ ├── table │ │ │ ├── details │ │ │ │ └── index.tsx │ │ │ └── list │ │ │ │ └── index.tsx │ │ ├── task │ │ │ └── index.tsx │ │ └── transfer │ │ │ ├── index.less │ │ │ └── index.tsx │ ├── configuration │ │ ├── NTPConfig │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── ntpConfig.tsx │ │ │ └── ntpTask.tsx │ │ ├── activityCalender │ │ │ ├── dayProfile.tsx │ │ │ ├── index.tsx │ │ │ ├── schemeProfile.tsx │ │ │ ├── seasonProfile.tsx │ │ │ ├── task.tsx │ │ │ └── weekProfile.tsx │ │ ├── alarmInfoConfig │ │ │ ├── alarmConfig.tsx │ │ │ ├── alarmValue.tsx │ │ │ ├── index.tsx │ │ │ └── task.tsx │ │ ├── commandConfig │ │ │ ├── commandEdit.tsx │ │ │ ├── commandStatus.tsx │ │ │ └── index.tsx │ │ ├── configDcuArchive │ │ │ ├── configDcuArchive.tsx │ │ │ ├── index.tsx │ │ │ └── task.tsx │ │ ├── configLoadProfile │ │ │ ├── configure.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── task.tsx │ │ ├── dcuSchedule │ │ │ ├── index.tsx │ │ │ ├── queryTaskResult.tsx │ │ │ └── sheduleReadingConfig.tsx │ │ ├── lineLossAnalysis │ │ │ └── index.tsx │ │ ├── meterTypeParameters │ │ │ └── index.tsx │ │ ├── opreatorOnlineMgnt │ │ │ └── index.tsx │ │ ├── specialDays │ │ │ ├── index.tsx │ │ │ ├── specialDaysConfig.tsx │ │ │ └── task.tsx │ │ └── systemParametersMgnt │ │ │ ├── cardItem.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── systemParam.tsx │ ├── customerAndDevice │ │ ├── customerManagement │ │ │ └── index.tsx │ │ ├── dcuManagement │ │ │ ├── dcuGroupMgnt.tsx │ │ │ ├── dcuMgnt.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── leftSolt.tsx │ │ │ └── rightSolt.tsx │ │ ├── measurePointMgnt │ │ │ └── index.tsx │ │ └── meterManagement │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── leftSolt.tsx │ │ │ ├── meterGroup.tsx │ │ │ ├── meterMatch.tsx │ │ │ └── rightSolt.tsx │ ├── homePage │ │ ├── homeCom │ │ │ ├── FilesOverview.tsx │ │ │ ├── FrozenData.tsx │ │ │ ├── Overview.tsx │ │ │ └── Quickperations.tsx │ │ ├── index.less │ │ ├── mdrHomePage │ │ │ └── index.tsx │ │ └── pvmsHomePage │ │ │ └── index.tsx │ ├── opreatorMgnt │ │ ├── index.less │ │ ├── roleManage │ │ │ ├── addRole.tsx │ │ │ └── index.tsx │ │ └── userMange │ │ │ └── index.tsx │ └── others │ │ └── langManage │ │ └── index.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── router │ ├── config │ │ ├── amiFunction │ │ │ └── index.ts │ │ ├── basicData │ │ │ └── index.ts │ │ ├── collectReport │ │ │ └── index.ts │ │ ├── components │ │ │ └── index.ts │ │ ├── configuration │ │ │ └── index.ts │ │ ├── customerAndDevice │ │ │ └── index.ts │ │ ├── homePage │ │ │ └── index.ts │ │ ├── opreatorMgnt │ │ │ └── index.ts │ │ └── others │ │ │ └── index.ts │ ├── menuRouter.ts │ ├── router.tsx │ ├── routerWrap.tsx │ └── types.ts ├── setupTests.ts ├── store │ ├── common │ │ ├── collapsed.ts │ │ ├── language.ts │ │ ├── menuTabs.ts │ │ ├── news.ts │ │ └── user.ts │ └── index.ts └── utils │ ├── eventBus.ts │ ├── function.ts │ ├── fzytk-normal.ts │ ├── initDynamicForm.tsx │ ├── style │ └── index.less │ ├── useFetchState.ts │ ├── utils.ts │ └── websocket.ts └── tsconfig.json /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/.vscode/st.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/static/images/bg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/static/images/bg9.png -------------------------------------------------------------------------------- /public/static/images/login_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/static/images/login_03.png -------------------------------------------------------------------------------- /public/static/images/navigation_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/static/images/navigation_bars.png -------------------------------------------------------------------------------- /public/static/js/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/static/js/less.min.js -------------------------------------------------------------------------------- /public/static/style/bg.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/static/style/bg.less -------------------------------------------------------------------------------- /public/static/style/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/public/static/style/theme.less -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api/AmiFunction/abnormalMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/abnormalMgnt/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/abnormalMgnt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/abnormalMgnt/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/connectAndDisConnect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/connectAndDisConnect/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/connectAndDisConnect/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/connectAndDisConnect/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/dcuMonitoring/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/dcuMonitoring/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/deviceMonitoring/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/deviceMonitoring/index.tsx -------------------------------------------------------------------------------- /src/api/AmiFunction/deviceMonitoring/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/deviceMonitoring/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/firmwareUpgrade/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/firmwareUpgrade/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/firmwareUpgrade/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/firmwareUpgrade/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/meterParam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/meterParam/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/meterParam/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/meterParam/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/meterReadRate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/meterReadRate/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/meterReadRate/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/meterReadRate/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/netWorkMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/netWorkMgnt/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/netWorkMgnt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/netWorkMgnt/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/onDemandReading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/onDemandReading/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/onDemandReading/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/onDemandReading/type.d.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/taskMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/taskMgnt/index.ts -------------------------------------------------------------------------------- /src/api/AmiFunction/taskMgnt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/AmiFunction/taskMgnt/type.d.ts -------------------------------------------------------------------------------- /src/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/README.md -------------------------------------------------------------------------------- /src/api/basicData/commandScheme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/commandScheme/index.ts -------------------------------------------------------------------------------- /src/api/basicData/commandScheme/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/commandScheme/types.d.ts -------------------------------------------------------------------------------- /src/api/basicData/dataDefinition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/dataDefinition/index.ts -------------------------------------------------------------------------------- /src/api/basicData/dataDefinition/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/dataDefinition/types.d.ts -------------------------------------------------------------------------------- /src/api/basicData/dcuInWareHouse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/dcuInWareHouse/index.ts -------------------------------------------------------------------------------- /src/api/basicData/dcuInWareHouse/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/dcuInWareHouse/types.d.ts -------------------------------------------------------------------------------- /src/api/basicData/excelImpot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/excelImpot/index.ts -------------------------------------------------------------------------------- /src/api/basicData/excelImpot/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/excelImpot/types.d.ts -------------------------------------------------------------------------------- /src/api/basicData/feederMgt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/feederMgt/index.ts -------------------------------------------------------------------------------- /src/api/basicData/feederMgt/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/feederMgt/types.d.ts -------------------------------------------------------------------------------- /src/api/basicData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/index.ts -------------------------------------------------------------------------------- /src/api/basicData/meterInWareHouse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/meterInWareHouse/index.ts -------------------------------------------------------------------------------- /src/api/basicData/meterInWareHouse/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/meterInWareHouse/types.d.ts -------------------------------------------------------------------------------- /src/api/basicData/organizationMgt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/organizationMgt/index.ts -------------------------------------------------------------------------------- /src/api/basicData/organizationMgt/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/organizationMgt/types.d.ts -------------------------------------------------------------------------------- /src/api/basicData/transformMgt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/transformMgt/index.ts -------------------------------------------------------------------------------- /src/api/basicData/transformMgt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/basicData/transformMgt/type.d.ts -------------------------------------------------------------------------------- /src/api/collectReport/dcuAlarmEvent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/dcuAlarmEvent/index.ts -------------------------------------------------------------------------------- /src/api/collectReport/dcuAlarmEvent/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/dcuAlarmEvent/types.d.ts -------------------------------------------------------------------------------- /src/api/collectReport/frozenData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/frozenData/index.ts -------------------------------------------------------------------------------- /src/api/collectReport/frozenData/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/frozenData/types.d.ts -------------------------------------------------------------------------------- /src/api/collectReport/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/index.ts -------------------------------------------------------------------------------- /src/api/collectReport/linelossQuery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/linelossQuery/index.ts -------------------------------------------------------------------------------- /src/api/collectReport/linelossQuery/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/linelossQuery/types.d.ts -------------------------------------------------------------------------------- /src/api/collectReport/loadProfileData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/loadProfileData/index.ts -------------------------------------------------------------------------------- /src/api/collectReport/loadProfileData/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/loadProfileData/types.d.ts -------------------------------------------------------------------------------- /src/api/collectReport/meterAlarmEvent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/meterAlarmEvent/index.ts -------------------------------------------------------------------------------- /src/api/collectReport/meterAlarmEvent/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/collectReport/meterAlarmEvent/types.d.ts -------------------------------------------------------------------------------- /src/api/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/common/index.ts -------------------------------------------------------------------------------- /src/api/common/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/common/type.d.ts -------------------------------------------------------------------------------- /src/api/configuration/activityCalender/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/activityCalender/index.ts -------------------------------------------------------------------------------- /src/api/configuration/activityCalender/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/activityCalender/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/alarmConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/alarmConfig/index.ts -------------------------------------------------------------------------------- /src/api/configuration/alarmConfig/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/alarmConfig/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/commandConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/commandConfig/index.ts -------------------------------------------------------------------------------- /src/api/configuration/commandConfig/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/commandConfig/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/configDcuArchive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/configDcuArchive/index.ts -------------------------------------------------------------------------------- /src/api/configuration/configDcuArchive/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/configDcuArchive/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/configLoadProfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/configLoadProfile/index.ts -------------------------------------------------------------------------------- /src/api/configuration/configLoadProfile/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/configLoadProfile/type.d.ts -------------------------------------------------------------------------------- /src/api/configuration/dcuSchedule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/dcuSchedule/index.ts -------------------------------------------------------------------------------- /src/api/configuration/dcuSchedule/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/dcuSchedule/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/index.ts -------------------------------------------------------------------------------- /src/api/configuration/lineLossAnalysis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/lineLossAnalysis/index.ts -------------------------------------------------------------------------------- /src/api/configuration/lineLossAnalysis/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/lineLossAnalysis/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/meterTypeParameters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/meterTypeParameters/index.ts -------------------------------------------------------------------------------- /src/api/configuration/meterTypeParameters/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/meterTypeParameters/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/ntpConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/ntpConfig/index.ts -------------------------------------------------------------------------------- /src/api/configuration/ntpConfig/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/ntpConfig/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/opreatorOnlineMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/opreatorOnlineMgnt/index.ts -------------------------------------------------------------------------------- /src/api/configuration/opreatorOnlineMgnt/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/opreatorOnlineMgnt/types.d.ts -------------------------------------------------------------------------------- /src/api/configuration/systemParametersMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/systemParametersMgnt/index.ts -------------------------------------------------------------------------------- /src/api/configuration/systemParametersMgnt/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/configuration/systemParametersMgnt/types.d.ts -------------------------------------------------------------------------------- /src/api/customer&Device/customerMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/customerMgnt/index.ts -------------------------------------------------------------------------------- /src/api/customer&Device/customerMgnt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/customerMgnt/type.d.ts -------------------------------------------------------------------------------- /src/api/customer&Device/dcuMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/dcuMgnt/index.ts -------------------------------------------------------------------------------- /src/api/customer&Device/dcuMgnt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/dcuMgnt/type.d.ts -------------------------------------------------------------------------------- /src/api/customer&Device/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/index.ts -------------------------------------------------------------------------------- /src/api/customer&Device/measurePointMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/measurePointMgnt/index.ts -------------------------------------------------------------------------------- /src/api/customer&Device/measurePointMgnt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/measurePointMgnt/type.d.ts -------------------------------------------------------------------------------- /src/api/customer&Device/meterMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/meterMgnt/index.ts -------------------------------------------------------------------------------- /src/api/customer&Device/meterMgnt/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/customer&Device/meterMgnt/type.d.ts -------------------------------------------------------------------------------- /src/api/homePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/homePage/index.tsx -------------------------------------------------------------------------------- /src/api/homePage/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/homePage/type.d.ts -------------------------------------------------------------------------------- /src/api/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/http.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/lang/index.ts -------------------------------------------------------------------------------- /src/api/lang/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/lang/type.d.ts -------------------------------------------------------------------------------- /src/api/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/types.d.ts -------------------------------------------------------------------------------- /src/api/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/user/index.ts -------------------------------------------------------------------------------- /src/api/user/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/api/user/type.d.ts -------------------------------------------------------------------------------- /src/assets/imgs/common/formlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/assets/imgs/common/formlight.png -------------------------------------------------------------------------------- /src/assets/imgs/common/logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/assets/imgs/common/logo5.png -------------------------------------------------------------------------------- /src/assets/imgs/common/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/assets/imgs/common/logo_login.png -------------------------------------------------------------------------------- /src/assets/imgs/common/overseas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/assets/imgs/common/overseas.png -------------------------------------------------------------------------------- /src/components/business/addRowCom/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/addRowCom/index.tsx -------------------------------------------------------------------------------- /src/components/business/deviceTree/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/deviceTree/index.less -------------------------------------------------------------------------------- /src/components/business/deviceTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/deviceTree/index.tsx -------------------------------------------------------------------------------- /src/components/business/labelList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/labelList/index.less -------------------------------------------------------------------------------- /src/components/business/labelList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/labelList/index.tsx -------------------------------------------------------------------------------- /src/components/business/searchList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/searchList/index.less -------------------------------------------------------------------------------- /src/components/business/searchList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/searchList/index.tsx -------------------------------------------------------------------------------- /src/components/business/taskCom/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/taskCom/index.less -------------------------------------------------------------------------------- /src/components/business/taskCom/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/taskCom/index.tsx -------------------------------------------------------------------------------- /src/components/business/terminalInfo/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/terminalInfo/content.tsx -------------------------------------------------------------------------------- /src/components/business/terminalInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/terminalInfo/index.less -------------------------------------------------------------------------------- /src/components/business/terminalInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/terminalInfo/index.tsx -------------------------------------------------------------------------------- /src/components/business/transfer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/transfer/index.less -------------------------------------------------------------------------------- /src/components/business/transfer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/transfer/index.tsx -------------------------------------------------------------------------------- /src/components/business/uploadModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/business/uploadModal/index.tsx -------------------------------------------------------------------------------- /src/components/common/btnList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/btnList/index.less -------------------------------------------------------------------------------- /src/components/common/btnList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/btnList/index.tsx -------------------------------------------------------------------------------- /src/components/common/columnsSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/columnsSelect/index.less -------------------------------------------------------------------------------- /src/components/common/columnsSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/columnsSelect/index.tsx -------------------------------------------------------------------------------- /src/components/common/echarts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/echarts/index.tsx -------------------------------------------------------------------------------- /src/components/common/editableCell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/editableCell/index.tsx -------------------------------------------------------------------------------- /src/components/common/icon/customIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/icon/customIcon.tsx -------------------------------------------------------------------------------- /src/components/common/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/icon/index.tsx -------------------------------------------------------------------------------- /src/components/common/language/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/language/index.tsx -------------------------------------------------------------------------------- /src/components/common/language/langLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/language/langLocale.ts -------------------------------------------------------------------------------- /src/components/common/loding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/loding/index.tsx -------------------------------------------------------------------------------- /src/components/common/toLoad/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/toLoad/index.tsx -------------------------------------------------------------------------------- /src/components/common/uploadSolt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/common/uploadSolt/index.tsx -------------------------------------------------------------------------------- /src/components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/footer/index.tsx -------------------------------------------------------------------------------- /src/components/header/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/header/index.less -------------------------------------------------------------------------------- /src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/header/index.tsx -------------------------------------------------------------------------------- /src/components/header/news.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/header/news.tsx -------------------------------------------------------------------------------- /src/components/header/newsNotice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/header/newsNotice.tsx -------------------------------------------------------------------------------- /src/components/menu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/menu/index.less -------------------------------------------------------------------------------- /src/components/menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/menu/index.tsx -------------------------------------------------------------------------------- /src/components/menu/menuTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/components/menu/menuTabs.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layout/home/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/layout/home/index.less -------------------------------------------------------------------------------- /src/layout/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/layout/home/index.tsx -------------------------------------------------------------------------------- /src/layout/login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/layout/login/index.less -------------------------------------------------------------------------------- /src/layout/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/layout/login/index.tsx -------------------------------------------------------------------------------- /src/layout/refused/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/layout/refused/index.tsx -------------------------------------------------------------------------------- /src/layout/refused/noAccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/layout/refused/noAccess.tsx -------------------------------------------------------------------------------- /src/layout/refused/serviceException.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/layout/refused/serviceException.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/abnormalManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/abnormalManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/connectAndDisconnect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/connectAndDisconnect/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/deviceMonitoring/dcuMonitoring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/deviceMonitoring/dcuMonitoring.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/deviceMonitoring/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/deviceMonitoring/index.less -------------------------------------------------------------------------------- /src/pages/amiFunction/deviceMonitoring/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/deviceMonitoring/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/deviceMonitoring/meterMonitoring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/deviceMonitoring/meterMonitoring.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/firmwareUpgrade/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/firmwareUpgrade/index.less -------------------------------------------------------------------------------- /src/pages/amiFunction/firmwareUpgrade/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/firmwareUpgrade/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/firmwareUpgrade/queryResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/firmwareUpgrade/queryResult.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/firmwareUpgrade/remoteUpgrade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/firmwareUpgrade/remoteUpgrade.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/firmwareUpgrade/upgradeInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/firmwareUpgrade/upgradeInfo.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/meterParam/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/meterParam/index.less -------------------------------------------------------------------------------- /src/pages/amiFunction/meterParam/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/meterParam/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/meterReadingSuccessRate/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/meterReadingSuccessRate/index.less -------------------------------------------------------------------------------- /src/pages/amiFunction/meterReadingSuccessRate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/meterReadingSuccessRate/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/meterReadingSuccessRate/meterReadRate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/meterReadingSuccessRate/meterReadRate.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/meterReadingSuccessRate/noComMeterQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/meterReadingSuccessRate/noComMeterQuery.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/dataCount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/dataCount.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/historyChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/historyChart.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/index.less -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/metertList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/metertList.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/modalTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/modalTable.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/nodeLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/nodeLink.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/phaseCensus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/phaseCensus.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/pingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/pingDialog.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/pingReault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/pingReault.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/networkManagement/showCensus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/networkManagement/showCensus.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/onDemandReading/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/onDemandReading/index.less -------------------------------------------------------------------------------- /src/pages/amiFunction/onDemandReading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/onDemandReading/index.tsx -------------------------------------------------------------------------------- /src/pages/amiFunction/taskManagement/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/taskManagement/index.less -------------------------------------------------------------------------------- /src/pages/amiFunction/taskManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/amiFunction/taskManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/commandScheme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/commandScheme/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/dataDefinition/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/dataDefinition/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/dcuInWareHouse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/dcuInWareHouse/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/excelFileImport/excelData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/excelFileImport/excelData.tsx -------------------------------------------------------------------------------- /src/pages/basicData/excelFileImport/excelFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/excelFileImport/excelFile.tsx -------------------------------------------------------------------------------- /src/pages/basicData/excelFileImport/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/excelFileImport/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/feederManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/feederManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/meterInWareHouse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/meterInWareHouse/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/organizationalStructure/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/organizationalStructure/index.tsx -------------------------------------------------------------------------------- /src/pages/basicData/transformerManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/basicData/transformerManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/collectReport/dailyFrozenDataQuery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/collectReport/dailyFrozenDataQuery/index.tsx -------------------------------------------------------------------------------- /src/pages/collectReport/dcuAlarmEvent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/collectReport/dcuAlarmEvent/index.tsx -------------------------------------------------------------------------------- /src/pages/collectReport/lineLossQuery/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/collectReport/lineLossQuery/index.less -------------------------------------------------------------------------------- /src/pages/collectReport/lineLossQuery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/collectReport/lineLossQuery/index.tsx -------------------------------------------------------------------------------- /src/pages/collectReport/loadProfileDataQuery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/collectReport/loadProfileDataQuery/index.tsx -------------------------------------------------------------------------------- /src/pages/collectReport/meterAlarmEvent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/collectReport/meterAlarmEvent/index.tsx -------------------------------------------------------------------------------- /src/pages/collectReport/monthlyFrozenDataQuery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/collectReport/monthlyFrozenDataQuery/index.tsx -------------------------------------------------------------------------------- /src/pages/components/deviceTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/deviceTree/index.tsx -------------------------------------------------------------------------------- /src/pages/components/labelList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/labelList/index.tsx -------------------------------------------------------------------------------- /src/pages/components/searchList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/searchList/index.tsx -------------------------------------------------------------------------------- /src/pages/components/table/details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/table/details/index.tsx -------------------------------------------------------------------------------- /src/pages/components/table/list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/table/list/index.tsx -------------------------------------------------------------------------------- /src/pages/components/task/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/task/index.tsx -------------------------------------------------------------------------------- /src/pages/components/transfer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/transfer/index.less -------------------------------------------------------------------------------- /src/pages/components/transfer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/components/transfer/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/NTPConfig/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/NTPConfig/index.less -------------------------------------------------------------------------------- /src/pages/configuration/NTPConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/NTPConfig/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/NTPConfig/ntpConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/NTPConfig/ntpConfig.tsx -------------------------------------------------------------------------------- /src/pages/configuration/NTPConfig/ntpTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/NTPConfig/ntpTask.tsx -------------------------------------------------------------------------------- /src/pages/configuration/activityCalender/dayProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/activityCalender/dayProfile.tsx -------------------------------------------------------------------------------- /src/pages/configuration/activityCalender/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/activityCalender/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/activityCalender/schemeProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/activityCalender/schemeProfile.tsx -------------------------------------------------------------------------------- /src/pages/configuration/activityCalender/seasonProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/activityCalender/seasonProfile.tsx -------------------------------------------------------------------------------- /src/pages/configuration/activityCalender/task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/activityCalender/task.tsx -------------------------------------------------------------------------------- /src/pages/configuration/activityCalender/weekProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/activityCalender/weekProfile.tsx -------------------------------------------------------------------------------- /src/pages/configuration/alarmInfoConfig/alarmConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/alarmInfoConfig/alarmConfig.tsx -------------------------------------------------------------------------------- /src/pages/configuration/alarmInfoConfig/alarmValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/alarmInfoConfig/alarmValue.tsx -------------------------------------------------------------------------------- /src/pages/configuration/alarmInfoConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/alarmInfoConfig/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/alarmInfoConfig/task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/alarmInfoConfig/task.tsx -------------------------------------------------------------------------------- /src/pages/configuration/commandConfig/commandEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/commandConfig/commandEdit.tsx -------------------------------------------------------------------------------- /src/pages/configuration/commandConfig/commandStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/commandConfig/commandStatus.tsx -------------------------------------------------------------------------------- /src/pages/configuration/commandConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/commandConfig/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/configDcuArchive/configDcuArchive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/configDcuArchive/configDcuArchive.tsx -------------------------------------------------------------------------------- /src/pages/configuration/configDcuArchive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/configDcuArchive/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/configDcuArchive/task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/configDcuArchive/task.tsx -------------------------------------------------------------------------------- /src/pages/configuration/configLoadProfile/configure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/configLoadProfile/configure.tsx -------------------------------------------------------------------------------- /src/pages/configuration/configLoadProfile/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/configLoadProfile/index.less -------------------------------------------------------------------------------- /src/pages/configuration/configLoadProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/configLoadProfile/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/configLoadProfile/task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/configLoadProfile/task.tsx -------------------------------------------------------------------------------- /src/pages/configuration/dcuSchedule/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/dcuSchedule/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/dcuSchedule/queryTaskResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/dcuSchedule/queryTaskResult.tsx -------------------------------------------------------------------------------- /src/pages/configuration/dcuSchedule/sheduleReadingConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/dcuSchedule/sheduleReadingConfig.tsx -------------------------------------------------------------------------------- /src/pages/configuration/lineLossAnalysis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/lineLossAnalysis/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/meterTypeParameters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/meterTypeParameters/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/opreatorOnlineMgnt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/opreatorOnlineMgnt/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/specialDays/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/specialDays/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/specialDays/specialDaysConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/specialDays/specialDaysConfig.tsx -------------------------------------------------------------------------------- /src/pages/configuration/specialDays/task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/specialDays/task.tsx -------------------------------------------------------------------------------- /src/pages/configuration/systemParametersMgnt/cardItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/systemParametersMgnt/cardItem.tsx -------------------------------------------------------------------------------- /src/pages/configuration/systemParametersMgnt/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/systemParametersMgnt/index.less -------------------------------------------------------------------------------- /src/pages/configuration/systemParametersMgnt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/systemParametersMgnt/index.tsx -------------------------------------------------------------------------------- /src/pages/configuration/systemParametersMgnt/systemParam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/configuration/systemParametersMgnt/systemParam.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/customerManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/customerManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/dcuManagement/dcuGroupMgnt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/dcuManagement/dcuGroupMgnt.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/dcuManagement/dcuMgnt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/dcuManagement/dcuMgnt.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/dcuManagement/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/dcuManagement/index.less -------------------------------------------------------------------------------- /src/pages/customerAndDevice/dcuManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/dcuManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/dcuManagement/leftSolt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/dcuManagement/leftSolt.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/dcuManagement/rightSolt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/dcuManagement/rightSolt.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/measurePointMgnt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/measurePointMgnt/index.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/meterManagement/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/meterManagement/index.less -------------------------------------------------------------------------------- /src/pages/customerAndDevice/meterManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/meterManagement/index.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/meterManagement/leftSolt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/meterManagement/leftSolt.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/meterManagement/meterGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/meterManagement/meterGroup.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/meterManagement/meterMatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/meterManagement/meterMatch.tsx -------------------------------------------------------------------------------- /src/pages/customerAndDevice/meterManagement/rightSolt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/customerAndDevice/meterManagement/rightSolt.tsx -------------------------------------------------------------------------------- /src/pages/homePage/homeCom/FilesOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/homePage/homeCom/FilesOverview.tsx -------------------------------------------------------------------------------- /src/pages/homePage/homeCom/FrozenData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/homePage/homeCom/FrozenData.tsx -------------------------------------------------------------------------------- /src/pages/homePage/homeCom/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/homePage/homeCom/Overview.tsx -------------------------------------------------------------------------------- /src/pages/homePage/homeCom/Quickperations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/homePage/homeCom/Quickperations.tsx -------------------------------------------------------------------------------- /src/pages/homePage/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/homePage/index.less -------------------------------------------------------------------------------- /src/pages/homePage/mdrHomePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/homePage/mdrHomePage/index.tsx -------------------------------------------------------------------------------- /src/pages/homePage/pvmsHomePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/homePage/pvmsHomePage/index.tsx -------------------------------------------------------------------------------- /src/pages/opreatorMgnt/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/opreatorMgnt/index.less -------------------------------------------------------------------------------- /src/pages/opreatorMgnt/roleManage/addRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/opreatorMgnt/roleManage/addRole.tsx -------------------------------------------------------------------------------- /src/pages/opreatorMgnt/roleManage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/opreatorMgnt/roleManage/index.tsx -------------------------------------------------------------------------------- /src/pages/opreatorMgnt/userMange/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/opreatorMgnt/userMange/index.tsx -------------------------------------------------------------------------------- /src/pages/others/langManage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/pages/others/langManage/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/router/config/amiFunction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/amiFunction/index.ts -------------------------------------------------------------------------------- /src/router/config/basicData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/basicData/index.ts -------------------------------------------------------------------------------- /src/router/config/collectReport/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/collectReport/index.ts -------------------------------------------------------------------------------- /src/router/config/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/components/index.ts -------------------------------------------------------------------------------- /src/router/config/configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/configuration/index.ts -------------------------------------------------------------------------------- /src/router/config/customerAndDevice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/customerAndDevice/index.ts -------------------------------------------------------------------------------- /src/router/config/homePage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/homePage/index.ts -------------------------------------------------------------------------------- /src/router/config/opreatorMgnt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/opreatorMgnt/index.ts -------------------------------------------------------------------------------- /src/router/config/others/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/config/others/index.ts -------------------------------------------------------------------------------- /src/router/menuRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/menuRouter.ts -------------------------------------------------------------------------------- /src/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/router.tsx -------------------------------------------------------------------------------- /src/router/routerWrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/routerWrap.tsx -------------------------------------------------------------------------------- /src/router/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/router/types.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/store/common/collapsed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/store/common/collapsed.ts -------------------------------------------------------------------------------- /src/store/common/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/store/common/language.ts -------------------------------------------------------------------------------- /src/store/common/menuTabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/store/common/menuTabs.ts -------------------------------------------------------------------------------- /src/store/common/news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/store/common/news.ts -------------------------------------------------------------------------------- /src/store/common/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/store/common/user.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/utils/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/eventBus.ts -------------------------------------------------------------------------------- /src/utils/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/function.ts -------------------------------------------------------------------------------- /src/utils/fzytk-normal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/fzytk-normal.ts -------------------------------------------------------------------------------- /src/utils/initDynamicForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/initDynamicForm.tsx -------------------------------------------------------------------------------- /src/utils/style/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/style/index.less -------------------------------------------------------------------------------- /src/utils/useFetchState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/useFetchState.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /src/utils/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/src/utils/websocket.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzbcf/react-admin/HEAD/tsconfig.json --------------------------------------------------------------------------------