├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .stylelintrc.js ├── .vscode └── launch.json ├── README.md ├── config ├── config.dev.ts ├── config.ts ├── defaultSettings.ts ├── iThingsapi.json ├── proxy.ts └── routes.ts ├── deploy.sh ├── jest.config.js ├── jsconfig.json ├── mock ├── deviceMangers │ ├── device.ts │ ├── group.ts │ └── product.ts ├── menu.ts ├── operationsMonitorings │ └── remoteConfiguration.ts ├── role.ts └── user.ts ├── package.json ├── public ├── CNAME ├── favicon.ico ├── icons │ ├── github-fill.png │ ├── github.png │ ├── godLei6-wechat.jpg │ ├── icon-128x128.png │ ├── icon-192x192.png │ ├── icon-512x512.png │ ├── icon_data_01.png │ ├── logo │ │ ├── Group.png │ │ ├── Group2x.png │ │ └── Group3x.png │ └── official.png └── pro_icon.svg ├── src ├── access.ts ├── app.tsx ├── assets │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ ├── icon-512x512.png │ │ ├── icon_data_01.png │ │ ├── icon_menu_01.png │ │ ├── icon_menu_02.png │ │ ├── icon_menu_03.png │ │ ├── icon_menu_04.png │ │ ├── icon_menu_05.png │ │ ├── icon_menu_06.png │ │ ├── icon_menu_07.png │ │ ├── icon_menu_08.png │ │ ├── icon_menu_09.png │ │ ├── icon_menu_10.png │ │ ├── icon_menu_11.png │ │ ├── icon_menu_12.png │ │ ├── icon_menu_14.png │ │ ├── icon_menu_15.png │ │ └── logo_1.png │ ├── js │ │ └── crypto-js.min.js │ └── template │ │ └── iThings-设备导入模板.csv ├── components │ ├── Context │ │ └── index.tsx │ ├── DatePicker │ │ └── index.tsx │ ├── Footer │ │ └── index.tsx │ ├── FooterCom │ │ ├── index.less │ │ └── index.tsx │ ├── HeaderDropdown │ │ ├── index.less │ │ └── index.tsx │ ├── MonacoEditor │ │ └── index.tsx │ ├── RightContent │ │ ├── AvatarDropdown.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── TimeFilter │ │ ├── index.tsx │ │ └── utils.ts │ └── UploadFile │ │ └── index.tsx ├── global.less ├── global.tsx ├── hooks │ ├── types.d.ts │ ├── useCreation.ts │ ├── useGetDataContent.ts │ ├── useGetSelectOption.ts │ ├── useGetTableList.ts │ ├── useLatest.ts │ ├── useReactive.ts │ ├── useTableCreate.ts │ ├── useTableDelete.tsx │ ├── useTableUpdate.ts │ ├── useTitle.ts │ └── useUpdate.ts ├── layouts │ ├── BasicLayout.tsx │ └── BlankLayout.tsx ├── loading.tsx ├── manifest.json ├── pages │ ├── 404.tsx │ ├── Admin.tsx │ ├── Welcome.less │ ├── Welcome.tsx │ ├── alarmMangers │ │ ├── alarmConfiguration │ │ │ ├── addAlarmConfig │ │ │ │ ├── index.tsx │ │ │ │ └── pages │ │ │ │ │ ├── aboutScene │ │ │ │ │ ├── components │ │ │ │ │ │ └── addSceneAboutModal │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── alarmRecord │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ │ └── basicConfig │ │ │ │ │ └── index.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── alarmLog │ │ │ ├── components │ │ │ │ └── DetailsModal │ │ │ │ │ └── index.tsx │ │ │ ├── data.d.ts │ │ │ └── index.tsx │ │ ├── alarmRecord │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── components │ │ │ └── alarmRecordItem │ │ │ │ ├── data.d.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── pages │ │ │ │ ├── alarmHandle │ │ │ │ └── index.tsx │ │ │ │ └── handleRecordModal │ │ │ │ └── index.tsx │ │ └── img │ │ │ ├── alarm-record.png │ │ │ └── alarm.png │ ├── deviceMangers │ │ ├── device │ │ │ ├── components │ │ │ │ ├── createForm.tsx │ │ │ │ ├── deviceList.tsx │ │ │ │ ├── deviceStatic.tsx │ │ │ │ └── multiImport.tsx │ │ │ ├── data.d.ts │ │ │ ├── detail │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── pages │ │ │ │ │ ├── SubDevice │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── pages │ │ │ │ │ │ ├── addSubService.tsx │ │ │ │ │ │ └── data.d.ts │ │ │ │ │ ├── cloudLog │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── createSecretKey │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── deviceCloudLog │ │ │ │ │ ├── data.d.ts │ │ │ │ │ ├── enum.ts │ │ │ │ │ ├── getColumns.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── modelDialog.tsx │ │ │ │ │ ├── deviceInfo │ │ │ │ │ ├── data.d.ts │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── pages │ │ │ │ │ │ ├── basicInfo │ │ │ │ │ │ ├── editForm.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── devicePosition │ │ │ │ │ │ ├── devicePositionModal.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── localLog │ │ │ │ │ │ ├── editForm.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── tagsInfo │ │ │ │ │ │ ├── deviceTagsModal.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── deviceLocalLog │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── deviceShadow │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── deviceStatus │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── pages │ │ │ │ │ │ ├── deviceAct │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── deviceProps │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── group │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── model │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── onlineDebug │ │ │ │ │ ├── components │ │ │ │ │ │ └── sendMsg.tsx │ │ │ │ │ ├── data.d.ts │ │ │ │ │ └── index.tsx │ │ │ │ │ └── topic │ │ │ │ │ └── index.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── group │ │ │ ├── components │ │ │ │ ├── CreateOrUpdateGroup.tsx │ │ │ │ ├── GroupDescriptons.tsx │ │ │ │ ├── GroupDeviceList.tsx │ │ │ │ ├── GroupList.tsx │ │ │ │ ├── GroupTags.tsx │ │ │ │ └── types.d.ts │ │ │ ├── detail │ │ │ │ ├── index.tsx │ │ │ │ └── pages │ │ │ │ │ └── deviceList │ │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── styles.less │ │ │ └── types.d.ts │ │ └── product │ │ │ ├── createForm.tsx │ │ │ ├── data.d.ts │ │ │ ├── detail │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ ├── device │ │ │ │ └── index.tsx │ │ │ │ ├── messageAnalysis │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── model │ │ │ │ ├── components │ │ │ │ │ ├── const.ts │ │ │ │ │ ├── data.d.ts │ │ │ │ │ └── editForm.tsx │ │ │ │ ├── declarations.d.ts │ │ │ │ ├── index.tsx │ │ │ │ └── style.less │ │ │ │ ├── productInfo │ │ │ │ ├── components │ │ │ │ │ ├── deviceTagsModal.tsx │ │ │ │ │ └── editForm.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ └── topic │ │ │ │ ├── components │ │ │ │ └── schema.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── schema.tsx │ │ │ └── index.tsx │ ├── document.ejs │ ├── home │ │ ├── data.d.ts │ │ ├── index.tsx │ │ └── pages │ │ │ ├── deviceChart │ │ │ ├── getChartsOption.ts │ │ │ ├── index.less │ │ │ └── index.tsx │ │ │ ├── deviceCount │ │ │ ├── index.less │ │ │ └── index.tsx │ │ │ └── deviceMap │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── types.d.ts │ ├── operationsMonitorings │ │ ├── components │ │ │ └── filterProduct │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── data.d.ts │ │ ├── logService │ │ │ └── index.tsx │ │ ├── onlineDebug │ │ │ └── index.tsx │ │ └── remoteConfiguration │ │ │ ├── index.tsx │ │ │ ├── styles.less │ │ │ └── types.d.ts │ ├── ruleEngine │ │ └── scene │ │ │ ├── components │ │ │ ├── ActionCard.tsx │ │ │ ├── ActionType.tsx │ │ │ ├── CardItem.tsx │ │ │ ├── ThenItem.tsx │ │ │ ├── TriggerType.tsx │ │ │ ├── WhenItem.tsx │ │ │ └── style.less │ │ │ ├── data.d.ts │ │ │ ├── detail │ │ │ ├── index.tsx │ │ │ └── style.less │ │ │ ├── img │ │ │ ├── device-trigger.png │ │ │ ├── manual-trigger.png │ │ │ ├── scene-device.png │ │ │ └── timing-trigger.png │ │ │ ├── index.tsx │ │ │ └── style.less │ ├── systemMangers │ │ ├── api │ │ │ ├── components │ │ │ │ └── CreateOrUpdateApi.tsx │ │ │ └── index.tsx │ │ ├── log │ │ │ ├── loginLog │ │ │ │ └── index.tsx │ │ │ ├── operationLog │ │ │ │ ├── index.tsx │ │ │ │ └── types.d.ts │ │ │ └── styles.less │ │ ├── menu │ │ │ ├── components │ │ │ │ └── CreateOrUpdateMenu.tsx │ │ │ ├── index.tsx │ │ │ ├── styles.less │ │ │ └── types.d.ts │ │ ├── role │ │ │ ├── components │ │ │ │ ├── ApiForm.tsx │ │ │ │ ├── CreateOrUpdateRole.tsx │ │ │ │ └── MenuForm.tsx │ │ │ ├── index.tsx │ │ │ └── types.d.ts │ │ └── user │ │ │ ├── components │ │ │ └── CreateOrUpdateUser.tsx │ │ │ ├── index.tsx │ │ │ └── types.d.ts │ └── user │ │ └── Login │ │ ├── assets │ │ ├── logo.png │ │ └── logo_blue.png │ │ ├── data.d.ts │ │ ├── index.less │ │ ├── index.tsx │ │ └── service.ts ├── service-worker.js ├── services │ └── iThingsapi │ │ ├── caidanguanli.ts │ │ ├── changjingliandong.ts │ │ ├── changjingliandongguanlian.ts │ │ ├── chanpinguanli.ts │ │ ├── chulijilu.ts │ │ ├── gaojingguanli.ts │ │ ├── gaojingjilu.ts │ │ ├── gaojingrizhi.ts │ │ ├── index.ts │ │ ├── jiaoseguanli.ts │ │ ├── jiekouguanli.ts │ │ ├── liu.ts │ │ ├── quanxianguanli.ts │ │ ├── quyuguanliqiyeban.ts │ │ ├── rizhiguanli.ts │ │ ├── shebeifenzu.ts │ │ ├── shebeiguanli.ts │ │ ├── shebeijianquan.ts │ │ ├── shebeijiaohu.ts │ │ ├── shebeixiaoxi.ts │ │ ├── shengjibaoguanlifirmware.ts │ │ ├── shengjirenwuguanlitask.ts │ │ ├── shujuquanxianqiyeban.ts │ │ ├── tongyonggongneng.ts │ │ ├── typings.d.ts │ │ ├── wangguanzishebeiguanli.ts │ │ ├── wumoxing.ts │ │ ├── xiangmuguanliqiyeban.ts │ │ ├── yonghuguanli.ts │ │ ├── yuanchengpeizhi.ts │ │ └── zidingyi.ts ├── typings.d.ts └── utils │ ├── base.ts │ ├── const.ts │ ├── date.ts │ ├── iconMap.tsx │ ├── map.ts │ ├── request.ts │ ├── schema.ts │ └── utils.ts ├── tests ├── PuppeteerEnvironment.js ├── beforeTest.js ├── getBrowser.js ├── run-tests.js └── setupTests.js ├── tsconfig.json ├── types ├── base.ts ├── cache │ ├── cache.json │ └── mock │ │ └── mock.cache.js ├── postcss-px2viewport.d.ts └── userInfo │ ├── data.d.ts │ └── service.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/README.md -------------------------------------------------------------------------------- /config/config.dev.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/config/config.ts -------------------------------------------------------------------------------- /config/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/config/defaultSettings.ts -------------------------------------------------------------------------------- /config/iThingsapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/config/iThingsapi.json -------------------------------------------------------------------------------- /config/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/config/proxy.ts -------------------------------------------------------------------------------- /config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/config/routes.ts -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/deploy.sh -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/jsconfig.json -------------------------------------------------------------------------------- /mock/deviceMangers/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/mock/deviceMangers/device.ts -------------------------------------------------------------------------------- /mock/deviceMangers/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/mock/deviceMangers/group.ts -------------------------------------------------------------------------------- /mock/deviceMangers/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/mock/deviceMangers/product.ts -------------------------------------------------------------------------------- /mock/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/mock/menu.ts -------------------------------------------------------------------------------- /mock/operationsMonitorings/remoteConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/mock/operationsMonitorings/remoteConfiguration.ts -------------------------------------------------------------------------------- /mock/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/mock/role.ts -------------------------------------------------------------------------------- /mock/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/mock/user.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/package.json -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | preview.pro.ant.design -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/github-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/github-fill.png -------------------------------------------------------------------------------- /public/icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/github.png -------------------------------------------------------------------------------- /public/icons/godLei6-wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/godLei6-wechat.jpg -------------------------------------------------------------------------------- /public/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/icons/icon_data_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/icon_data_01.png -------------------------------------------------------------------------------- /public/icons/logo/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/logo/Group.png -------------------------------------------------------------------------------- /public/icons/logo/Group2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/logo/Group2x.png -------------------------------------------------------------------------------- /public/icons/logo/Group3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/logo/Group3x.png -------------------------------------------------------------------------------- /public/icons/official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/icons/official.png -------------------------------------------------------------------------------- /public/pro_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/public/pro_icon.svg -------------------------------------------------------------------------------- /src/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/access.ts -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon_data_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_data_01.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_01.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_02.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_03.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_04.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_05.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_06.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_07.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_08.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_09.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_10.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_11.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_12.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_14.png -------------------------------------------------------------------------------- /src/assets/icons/icon_menu_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/icon_menu_15.png -------------------------------------------------------------------------------- /src/assets/icons/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/icons/logo_1.png -------------------------------------------------------------------------------- /src/assets/js/crypto-js.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/js/crypto-js.min.js -------------------------------------------------------------------------------- /src/assets/template/iThings-设备导入模板.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/assets/template/iThings-设备导入模板.csv -------------------------------------------------------------------------------- /src/components/Context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/Context/index.tsx -------------------------------------------------------------------------------- /src/components/DatePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/DatePicker/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/FooterCom/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/FooterCom/index.less -------------------------------------------------------------------------------- /src/components/FooterCom/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/FooterCom/index.tsx -------------------------------------------------------------------------------- /src/components/HeaderDropdown/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/HeaderDropdown/index.less -------------------------------------------------------------------------------- /src/components/HeaderDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/HeaderDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/MonacoEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/MonacoEditor/index.tsx -------------------------------------------------------------------------------- /src/components/RightContent/AvatarDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/RightContent/AvatarDropdown.tsx -------------------------------------------------------------------------------- /src/components/RightContent/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/RightContent/index.less -------------------------------------------------------------------------------- /src/components/RightContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/RightContent/index.tsx -------------------------------------------------------------------------------- /src/components/TimeFilter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/TimeFilter/index.tsx -------------------------------------------------------------------------------- /src/components/TimeFilter/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/TimeFilter/utils.ts -------------------------------------------------------------------------------- /src/components/UploadFile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/components/UploadFile/index.tsx -------------------------------------------------------------------------------- /src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/global.less -------------------------------------------------------------------------------- /src/global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/global.tsx -------------------------------------------------------------------------------- /src/hooks/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/types.d.ts -------------------------------------------------------------------------------- /src/hooks/useCreation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useCreation.ts -------------------------------------------------------------------------------- /src/hooks/useGetDataContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useGetDataContent.ts -------------------------------------------------------------------------------- /src/hooks/useGetSelectOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useGetSelectOption.ts -------------------------------------------------------------------------------- /src/hooks/useGetTableList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useGetTableList.ts -------------------------------------------------------------------------------- /src/hooks/useLatest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useLatest.ts -------------------------------------------------------------------------------- /src/hooks/useReactive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useReactive.ts -------------------------------------------------------------------------------- /src/hooks/useTableCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useTableCreate.ts -------------------------------------------------------------------------------- /src/hooks/useTableDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useTableDelete.tsx -------------------------------------------------------------------------------- /src/hooks/useTableUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useTableUpdate.ts -------------------------------------------------------------------------------- /src/hooks/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useTitle.ts -------------------------------------------------------------------------------- /src/hooks/useUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/hooks/useUpdate.ts -------------------------------------------------------------------------------- /src/layouts/BasicLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/layouts/BasicLayout.tsx -------------------------------------------------------------------------------- /src/layouts/BlankLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/layouts/BlankLayout.tsx -------------------------------------------------------------------------------- /src/loading.tsx: -------------------------------------------------------------------------------- 1 | export { PageLoading as default } from '@ant-design/pro-components'; 2 | -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/Admin.tsx -------------------------------------------------------------------------------- /src/pages/Welcome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/Welcome.less -------------------------------------------------------------------------------- /src/pages/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/Welcome.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/aboutScene/components/addSceneAboutModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/aboutScene/components/addSceneAboutModal/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/aboutScene/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/aboutScene/index.less -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/aboutScene/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/aboutScene/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/alarmRecord/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/alarmRecord/index.less -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/alarmRecord/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/alarmRecord/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/basicConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/addAlarmConfig/pages/basicConfig/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/data.d.ts -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/index.less -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmConfiguration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmConfiguration/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmLog/components/DetailsModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmLog/components/DetailsModal/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmLog/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmLog/data.d.ts -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmLog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmLog/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmRecord/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmRecord/index.less -------------------------------------------------------------------------------- /src/pages/alarmMangers/alarmRecord/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/alarmRecord/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/components/alarmRecordItem/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/components/alarmRecordItem/data.d.ts -------------------------------------------------------------------------------- /src/pages/alarmMangers/components/alarmRecordItem/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/components/alarmRecordItem/index.less -------------------------------------------------------------------------------- /src/pages/alarmMangers/components/alarmRecordItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/components/alarmRecordItem/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/components/alarmRecordItem/pages/alarmHandle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/components/alarmRecordItem/pages/alarmHandle/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/components/alarmRecordItem/pages/handleRecordModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/components/alarmRecordItem/pages/handleRecordModal/index.tsx -------------------------------------------------------------------------------- /src/pages/alarmMangers/img/alarm-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/img/alarm-record.png -------------------------------------------------------------------------------- /src/pages/alarmMangers/img/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/alarmMangers/img/alarm.png -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/components/createForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/components/createForm.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/components/deviceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/components/deviceList.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/components/deviceStatic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/components/deviceStatic.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/components/multiImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/components/multiImport.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/data.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/SubDevice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/SubDevice/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/SubDevice/pages/addSubService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/SubDevice/pages/addSubService.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/SubDevice/pages/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/SubDevice/pages/data.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/cloudLog/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/cloudLog/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/cloudLog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/cloudLog/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/createSecretKey/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/createSecretKey/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/createSecretKey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/createSecretKey/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceCloudLog/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceCloudLog/data.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceCloudLog/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceCloudLog/enum.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceCloudLog/getColumns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceCloudLog/getColumns.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceCloudLog/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceCloudLog/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceCloudLog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceCloudLog/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceCloudLog/modelDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceCloudLog/modelDialog.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/data.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/basicInfo/editForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/basicInfo/editForm.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/basicInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/basicInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/devicePosition/devicePositionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/devicePosition/devicePositionModal.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/devicePosition/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/devicePosition/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/localLog/editForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/localLog/editForm.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/localLog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/localLog/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/tagsInfo/deviceTagsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/tagsInfo/deviceTagsModal.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/tagsInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceInfo/pages/tagsInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceLocalLog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceLocalLog/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceShadow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceShadow/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceStatus/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceStatus/pages/deviceAct/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceStatus/pages/deviceAct/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/deviceStatus/pages/deviceProps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/deviceStatus/pages/deviceProps/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/group/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/model/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/model/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/onlineDebug/components/sendMsg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/onlineDebug/components/sendMsg.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/onlineDebug/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/onlineDebug/data.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/onlineDebug/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/onlineDebug/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/detail/pages/topic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/detail/pages/topic/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/device/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/device/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/components/CreateOrUpdateGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/components/CreateOrUpdateGroup.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/components/GroupDescriptons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/components/GroupDescriptons.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/components/GroupDeviceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/components/GroupDeviceList.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/components/GroupList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/components/GroupList.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/components/GroupTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/components/GroupTags.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/components/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/components/types.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/detail/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/detail/pages/deviceList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/detail/pages/deviceList/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/styles.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/group/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/group/types.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/createForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/createForm.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/data.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/device/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/device/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/messageAnalysis/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/messageAnalysis/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/messageAnalysis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/messageAnalysis/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/model/components/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/model/components/const.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/model/components/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/model/components/data.d.ts -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/model/components/editForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/model/components/editForm.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/model/declarations.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-json-editor-ajrm/locale/en'; 2 | -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/model/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/model/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/model/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/model/style.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/productInfo/components/deviceTagsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/productInfo/components/deviceTagsModal.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/productInfo/components/editForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/productInfo/components/editForm.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/productInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/productInfo/index.less -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/productInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/productInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/topic/components/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/topic/components/schema.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/topic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/topic/index.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/detail/pages/topic/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/detail/pages/topic/schema.tsx -------------------------------------------------------------------------------- /src/pages/deviceMangers/product/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/deviceMangers/product/index.tsx -------------------------------------------------------------------------------- /src/pages/document.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/document.ejs -------------------------------------------------------------------------------- /src/pages/home/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/data.d.ts -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/home/pages/deviceChart/getChartsOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceChart/getChartsOption.ts -------------------------------------------------------------------------------- /src/pages/home/pages/deviceChart/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceChart/index.less -------------------------------------------------------------------------------- /src/pages/home/pages/deviceChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceChart/index.tsx -------------------------------------------------------------------------------- /src/pages/home/pages/deviceCount/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceCount/index.less -------------------------------------------------------------------------------- /src/pages/home/pages/deviceCount/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceCount/index.tsx -------------------------------------------------------------------------------- /src/pages/home/pages/deviceMap/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceMap/index.less -------------------------------------------------------------------------------- /src/pages/home/pages/deviceMap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceMap/index.tsx -------------------------------------------------------------------------------- /src/pages/home/pages/deviceMap/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/home/pages/deviceMap/types.d.ts -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/components/filterProduct/index.less: -------------------------------------------------------------------------------- 1 | .filter { 2 | margin-bottom: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/components/filterProduct/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/operationsMonitorings/components/filterProduct/index.tsx -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/operationsMonitorings/data.d.ts -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/logService/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/operationsMonitorings/logService/index.tsx -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/onlineDebug/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/operationsMonitorings/onlineDebug/index.tsx -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/remoteConfiguration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/operationsMonitorings/remoteConfiguration/index.tsx -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/remoteConfiguration/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/operationsMonitorings/remoteConfiguration/styles.less -------------------------------------------------------------------------------- /src/pages/operationsMonitorings/remoteConfiguration/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/operationsMonitorings/remoteConfiguration/types.d.ts -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/components/ActionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/components/ActionCard.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/components/ActionType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/components/ActionType.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/components/CardItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/components/CardItem.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/components/ThenItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/components/ThenItem.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/components/TriggerType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/components/TriggerType.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/components/WhenItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/components/WhenItem.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/components/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/components/style.less -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/data.d.ts -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/detail/index.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/detail/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/detail/style.less -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/img/device-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/img/device-trigger.png -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/img/manual-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/img/manual-trigger.png -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/img/scene-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/img/scene-device.png -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/img/timing-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/img/timing-trigger.png -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/index.tsx -------------------------------------------------------------------------------- /src/pages/ruleEngine/scene/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/ruleEngine/scene/style.less -------------------------------------------------------------------------------- /src/pages/systemMangers/api/components/CreateOrUpdateApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/api/components/CreateOrUpdateApi.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/api/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/api/index.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/log/loginLog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/log/loginLog/index.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/log/operationLog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/log/operationLog/index.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/log/operationLog/types.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/systemMangers/log/styles.less: -------------------------------------------------------------------------------- 1 | .ant-descriptions-item-content { 2 | max-width: 670px; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/systemMangers/menu/components/CreateOrUpdateMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/menu/components/CreateOrUpdateMenu.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/menu/index.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/menu/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/menu/styles.less -------------------------------------------------------------------------------- /src/pages/systemMangers/menu/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/menu/types.d.ts -------------------------------------------------------------------------------- /src/pages/systemMangers/role/components/ApiForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/role/components/ApiForm.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/role/components/CreateOrUpdateRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/role/components/CreateOrUpdateRole.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/role/components/MenuForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/role/components/MenuForm.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/role/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/role/index.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/role/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/role/types.d.ts -------------------------------------------------------------------------------- /src/pages/systemMangers/user/components/CreateOrUpdateUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/user/components/CreateOrUpdateUser.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/user/index.tsx -------------------------------------------------------------------------------- /src/pages/systemMangers/user/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/systemMangers/user/types.d.ts -------------------------------------------------------------------------------- /src/pages/user/Login/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/user/Login/assets/logo.png -------------------------------------------------------------------------------- /src/pages/user/Login/assets/logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/user/Login/assets/logo_blue.png -------------------------------------------------------------------------------- /src/pages/user/Login/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/user/Login/data.d.ts -------------------------------------------------------------------------------- /src/pages/user/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/user/Login/index.less -------------------------------------------------------------------------------- /src/pages/user/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/pages/user/Login/index.tsx -------------------------------------------------------------------------------- /src/pages/user/Login/service.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/services/iThingsapi/caidanguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/caidanguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/changjingliandong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/changjingliandong.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/changjingliandongguanlian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/changjingliandongguanlian.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/chanpinguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/chanpinguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/chulijilu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/chulijilu.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/gaojingguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/gaojingguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/gaojingjilu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/gaojingjilu.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/gaojingrizhi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/gaojingrizhi.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/index.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/jiaoseguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/jiaoseguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/jiekouguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/jiekouguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/liu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/liu.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/quanxianguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/quanxianguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/quyuguanliqiyeban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/quyuguanliqiyeban.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/rizhiguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/rizhiguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shebeifenzu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shebeifenzu.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shebeiguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shebeiguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shebeijianquan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shebeijianquan.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shebeijiaohu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shebeijiaohu.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shebeixiaoxi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shebeixiaoxi.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shengjibaoguanlifirmware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shengjibaoguanlifirmware.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shengjirenwuguanlitask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shengjirenwuguanlitask.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/shujuquanxianqiyeban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/shujuquanxianqiyeban.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/tongyonggongneng.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/tongyonggongneng.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/typings.d.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/wangguanzishebeiguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/wangguanzishebeiguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/wumoxing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/wumoxing.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/xiangmuguanliqiyeban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/xiangmuguanliqiyeban.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/yonghuguanli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/yonghuguanli.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/yuanchengpeizhi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/yuanchengpeizhi.ts -------------------------------------------------------------------------------- /src/services/iThingsapi/zidingyi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/services/iThingsapi/zidingyi.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/utils/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/base.ts -------------------------------------------------------------------------------- /src/utils/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/const.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/iconMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/iconMap.tsx -------------------------------------------------------------------------------- /src/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/map.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/schema.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tests/PuppeteerEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/tests/PuppeteerEnvironment.js -------------------------------------------------------------------------------- /tests/beforeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/tests/beforeTest.js -------------------------------------------------------------------------------- /tests/getBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/tests/getBrowser.js -------------------------------------------------------------------------------- /tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/tests/run-tests.js -------------------------------------------------------------------------------- /tests/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/tests/setupTests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/types/base.ts -------------------------------------------------------------------------------- /types/cache/cache.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /types/cache/mock/mock.cache.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /types/postcss-px2viewport.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/types/postcss-px2viewport.d.ts -------------------------------------------------------------------------------- /types/userInfo/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/types/userInfo/data.d.ts -------------------------------------------------------------------------------- /types/userInfo/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/types/userInfo/service.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-Things/iThings-admin-react/HEAD/yarn.lock --------------------------------------------------------------------------------