├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── WISE-Fork ├── ant-design-vue-jeecg │ ├── .dockerignore │ ├── .editorconfig │ ├── .env │ ├── .env.development │ ├── .env.production │ ├── .env.test │ ├── .eslintignore │ ├── .prettierrc │ ├── Dockerfile │ ├── README.md │ ├── babel.config.js │ ├── idea.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── avatar2.jpg │ │ ├── cdn │ │ │ ├── babel-polyfill │ │ │ │ └── polyfill_7_2_5.js │ │ │ └── font-icon │ │ │ │ └── font_2316098_umqusozousr.js │ │ ├── color.less │ │ ├── goright.png │ │ ├── index.html │ │ ├── logo-jeecg.png │ │ ├── logo.png │ │ ├── logo_original.png │ │ ├── tinymce │ │ │ ├── langs │ │ │ │ └── zh_CN.js │ │ │ └── skins │ │ │ │ └── lightgray │ │ │ │ ├── content.min.css │ │ │ │ └── skin.min.css │ │ └── v2.js │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── GroupRequest.js │ │ │ ├── api.js │ │ │ ├── index.js │ │ │ ├── login.js │ │ │ └── manage.js │ │ ├── assets │ │ │ ├── background.svg │ │ │ ├── checkcode.png │ │ │ ├── daiban.png │ │ │ ├── duban.png │ │ │ ├── guaz.png │ │ │ ├── less │ │ │ │ ├── JAreaLinkage.less │ │ │ │ ├── TableExpand.less │ │ │ │ ├── codemirror_idea.css │ │ │ │ ├── common.less │ │ │ │ └── index.less │ │ │ ├── logo-jeecgboot.png │ │ │ ├── logo-white copy.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── nodata.png │ │ │ ├── pdf4.jpg │ │ │ └── zaiban.png │ │ ├── cas │ │ │ └── sso.js │ │ ├── components │ │ │ ├── AvatarList │ │ │ │ ├── Item.vue │ │ │ │ ├── List.vue │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── ChartCard.vue │ │ │ ├── CountDown │ │ │ │ ├── CountDown.vue │ │ │ │ └── index.js │ │ │ ├── Ellipsis │ │ │ │ ├── Ellipsis.vue │ │ │ │ └── index.js │ │ │ ├── JVxeCells │ │ │ │ ├── JVxeFileCell.vue │ │ │ │ ├── JVxeImageCell.vue │ │ │ │ ├── JVxePopupCell.vue │ │ │ │ ├── JVxeRadioCell.vue │ │ │ │ ├── JVxeSelectDictSearchCell.js │ │ │ │ └── install.js │ │ │ ├── NumberInfo │ │ │ │ ├── NumberInfo.vue │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── README.md │ │ │ ├── Trend │ │ │ │ ├── Trend.vue │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── _util │ │ │ │ ├── Area.js │ │ │ │ ├── StringUtil.js │ │ │ │ └── util.js │ │ │ ├── chart │ │ │ │ ├── AreaChartTy.vue │ │ │ │ ├── Bar.vue │ │ │ │ ├── BarAndLine.vue │ │ │ │ ├── BarMultid.vue │ │ │ │ ├── DashChartDemo.vue │ │ │ │ ├── IndexBar.vue │ │ │ │ ├── LineChartMultid.vue │ │ │ │ ├── Liquid.vue │ │ │ │ ├── MiniArea.vue │ │ │ │ ├── MiniBar.vue │ │ │ │ ├── MiniProgress.vue │ │ │ │ ├── Pie.vue │ │ │ │ ├── README.md │ │ │ │ ├── Radar.vue │ │ │ │ ├── RankList.vue │ │ │ │ ├── StackBar.vue │ │ │ │ ├── TransferBar.vue │ │ │ │ ├── Trend.vue │ │ │ │ ├── chart.less │ │ │ │ └── mixins │ │ │ │ │ └── ChartMixins.js │ │ │ ├── dict │ │ │ │ ├── JDictSelectTag.vue │ │ │ │ ├── JDictSelectUtil.js │ │ │ │ ├── JMultiSelectTag.vue │ │ │ │ ├── JSearchSelectTag.vue │ │ │ │ ├── README.md │ │ │ │ └── index.js │ │ │ ├── index.less │ │ │ ├── jeecg │ │ │ │ ├── JAreaLinkage.vue │ │ │ │ ├── JCategorySelect.vue │ │ │ │ ├── JCheckbox.vue │ │ │ │ ├── JCodeEditor.vue │ │ │ │ ├── JCron.vue │ │ │ │ ├── JDate.vue │ │ │ │ ├── JEditableTable.vue │ │ │ │ ├── JEditor.vue │ │ │ │ ├── JEllipsis.vue │ │ │ │ ├── JFormContainer.vue │ │ │ │ ├── JImageUpload.vue │ │ │ │ ├── JImportModal.vue │ │ │ │ ├── JInput.vue │ │ │ │ ├── JMarkdownEditor │ │ │ │ │ ├── default-options.js │ │ │ │ │ └── index.vue │ │ │ │ ├── JModal │ │ │ │ │ └── index.vue │ │ │ │ ├── JPopup.vue │ │ │ │ ├── JSelectMultiple.vue │ │ │ │ ├── JSlider.vue │ │ │ │ ├── JSuperQuery.vue │ │ │ │ ├── JSwitch.vue │ │ │ │ ├── JTime.vue │ │ │ │ ├── JTreeDict.vue │ │ │ │ ├── JTreeSelect.vue │ │ │ │ ├── JTreeTable.vue │ │ │ │ ├── JUpload.vue │ │ │ │ ├── JVxeTable │ │ │ │ │ ├── components │ │ │ │ │ │ ├── JVxeDetailsModal.vue │ │ │ │ │ │ ├── JVxePagination.vue │ │ │ │ │ │ ├── JVxeSubPopover.vue │ │ │ │ │ │ ├── JVxeTable.js │ │ │ │ │ │ ├── JVxeToolbar.vue │ │ │ │ │ │ └── cells │ │ │ │ │ │ │ ├── JVxeCheckboxCell.vue │ │ │ │ │ │ │ ├── JVxeDateCell.vue │ │ │ │ │ │ │ ├── JVxeDepartSelectCell.vue │ │ │ │ │ │ │ ├── JVxeDragSortCell.vue │ │ │ │ │ │ │ ├── JVxeInputCell.vue │ │ │ │ │ │ │ ├── JVxeNormalCell.vue │ │ │ │ │ │ │ ├── JVxeProgressCell.vue │ │ │ │ │ │ │ ├── JVxeSelectCell.vue │ │ │ │ │ │ │ ├── JVxeSlotCell.js │ │ │ │ │ │ │ ├── JVxeTagsCell.js │ │ │ │ │ │ │ ├── JVxeTextareaCell.vue │ │ │ │ │ │ │ ├── JVxeUploadCell.vue │ │ │ │ │ │ │ ├── JVxeUserSelectCell.vue │ │ │ │ │ │ │ └── ReloadEffect.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── install.js │ │ │ │ │ ├── jvxeTypes.js │ │ │ │ │ ├── less │ │ │ │ │ │ ├── j-vxe-table.less │ │ │ │ │ │ ├── reload-effect.less │ │ │ │ │ │ └── size │ │ │ │ │ │ │ └── tiny.less │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── JVxeCellMixins.js │ │ │ │ │ │ └── vxe.web.socket.mixins.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── cellUtils.js │ │ │ │ │ │ └── vxeUtils.js │ │ │ │ ├── README.md │ │ │ │ ├── README_JEditableTable.md │ │ │ │ ├── README_JPopup.md │ │ │ │ ├── index.js │ │ │ │ ├── minipop │ │ │ │ │ ├── JFilePop.vue │ │ │ │ │ └── JInputPop.vue │ │ │ │ └── modal │ │ │ │ │ ├── JCronModal.vue │ │ │ │ │ └── JPopupOnlReport.vue │ │ │ ├── jeecgbiz │ │ │ │ ├── JSelectBizComponent │ │ │ │ │ ├── JSelectBizComponentModal.vue │ │ │ │ │ ├── JSelectBizQueryItem.js │ │ │ │ │ ├── README.md │ │ │ │ │ └── index.vue │ │ │ │ ├── JSelectDepart.vue │ │ │ │ ├── JSelectMultiUser.vue │ │ │ │ ├── JSelectPosition.vue │ │ │ │ ├── JSelectRole.vue │ │ │ │ ├── JSelectUserByDep.vue │ │ │ │ ├── README.md │ │ │ │ └── modal │ │ │ │ │ ├── JSelectDepartModal.vue │ │ │ │ │ ├── JSelectUserByDepModal.vue │ │ │ │ │ └── SelectUserListModal.vue │ │ │ ├── layouts │ │ │ │ ├── BasicLayout.vue │ │ │ │ ├── BlankLayout.vue │ │ │ │ ├── IframeFReportView.vue │ │ │ │ ├── IframePageView.vue │ │ │ │ ├── PageView.vue │ │ │ │ ├── RouteView.vue │ │ │ │ ├── TabLayout.vue │ │ │ │ ├── UserLayout.vue │ │ │ │ └── index.js │ │ │ ├── lazy_antd.js │ │ │ ├── menu │ │ │ │ ├── Contextmenu.vue │ │ │ │ ├── SideMenu.vue │ │ │ │ └── index.js │ │ │ ├── page │ │ │ │ ├── GlobalFooter.vue │ │ │ │ ├── GlobalHeader.vue │ │ │ │ ├── GlobalLayout.vue │ │ │ │ ├── PageHeader.vue │ │ │ │ ├── PageLayout.vue │ │ │ │ └── SHeaderNotice.vue │ │ │ ├── setting │ │ │ │ ├── SettingDrawer.vue │ │ │ │ └── SettingItem.vue │ │ │ ├── table │ │ │ │ ├── README.md │ │ │ │ ├── StandardTable.vue │ │ │ │ └── index.js │ │ │ └── tools │ │ │ │ ├── Breadcrumb.vue │ │ │ │ ├── DepartSelect.vue │ │ │ │ ├── DetailList.vue │ │ │ │ ├── DynamicNotice.vue │ │ │ │ ├── FooterToolBar.vue │ │ │ │ ├── HeadInfo.vue │ │ │ │ ├── HeaderNotice.vue │ │ │ │ ├── Logo.vue │ │ │ │ ├── ShowAnnouncement.vue │ │ │ │ ├── TwoStepCaptcha.vue │ │ │ │ ├── UserMenu.vue │ │ │ │ ├── UserPassword.vue │ │ │ │ └── setting.js │ │ ├── config │ │ │ ├── index.js │ │ │ └── router.config.js │ │ ├── defaultSettings.js │ │ ├── icons.js │ │ ├── main.js │ │ ├── mixins │ │ │ ├── DisabledAuthFilterMixin.js │ │ │ ├── JEditableTableMixin.js │ │ │ ├── JEditableTableModelMixin.js │ │ │ ├── JVxeTableMixin.js │ │ │ ├── JVxeTableModelMixin.js │ │ │ ├── JeecgListMixin.js │ │ │ ├── OnlineCommonUtil.js │ │ │ └── WebsocketMixin.js │ │ ├── permission.js │ │ ├── router │ │ │ ├── README.md │ │ │ └── index.js │ │ ├── store │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── modules │ │ │ │ ├── app.js │ │ │ │ ├── enhance.js │ │ │ │ ├── online.js │ │ │ │ ├── permission.js │ │ │ │ └── user.js │ │ │ └── mutation-types.js │ │ ├── utils │ │ │ ├── JEditableTableUtil.js │ │ │ ├── LunarFullCalendarUtil.js │ │ │ ├── auth.js │ │ │ ├── authFilter.js │ │ │ ├── axios.js │ │ │ ├── browser.js │ │ │ ├── commonUploadFile.js │ │ │ ├── desform │ │ │ │ └── CustomExpression.js │ │ │ ├── device.js │ │ │ ├── encryption │ │ │ │ └── aesEncrypt.js │ │ │ ├── filter.js │ │ │ ├── hasPermission.js │ │ │ ├── mixin.js │ │ │ ├── permissions.js │ │ │ ├── portal │ │ │ │ └── constant.js │ │ │ ├── props-util.js │ │ │ ├── request.js │ │ │ ├── rules.js │ │ │ ├── storage.js │ │ │ ├── util.js │ │ │ ├── validate.js │ │ │ └── vueBus.js │ │ └── views │ │ │ ├── Home.vue │ │ │ ├── account │ │ │ ├── center │ │ │ │ ├── Index.vue │ │ │ │ └── page │ │ │ │ │ ├── App.vue │ │ │ │ │ ├── Article.vue │ │ │ │ │ ├── Project.vue │ │ │ │ │ └── index.js │ │ │ └── settings │ │ │ │ ├── AvatarModal.vue │ │ │ │ ├── BaseSetting.vue │ │ │ │ ├── Binding.vue │ │ │ │ ├── Custom.vue │ │ │ │ ├── Index.vue │ │ │ │ ├── Notification.vue │ │ │ │ └── Security.vue │ │ │ ├── bbs │ │ │ ├── content │ │ │ │ ├── inform │ │ │ │ │ ├── BbsInformList.vue │ │ │ │ │ └── modules │ │ │ │ │ │ ├── BbsInformForm.vue │ │ │ │ │ │ ├── BbsInformModal.vue │ │ │ │ │ │ └── BbsInformModal__Style#Drawer.vue │ │ │ │ ├── messageboard │ │ │ │ │ ├── BbsMessageBoardList.vue │ │ │ │ │ └── modules │ │ │ │ │ │ ├── BbsMessageBoardForm.vue │ │ │ │ │ │ ├── BbsMessageBoardModal.vue │ │ │ │ │ │ └── BbsMessageBoardModal__Style#Drawer.vue │ │ │ │ ├── reply │ │ │ │ │ ├── BbsReplyList.vue │ │ │ │ │ └── modules │ │ │ │ │ │ └── BbsReplyModal.vue │ │ │ │ └── topic │ │ │ │ │ ├── BbsTopicList.vue │ │ │ │ │ └── modules │ │ │ │ │ ├── BbsTopicForm.vue │ │ │ │ │ └── BbsTopicModal.vue │ │ │ ├── moneyconvert │ │ │ │ ├── waimai │ │ │ │ │ ├── BbsWaimaiList.vue │ │ │ │ │ └── modules │ │ │ │ │ │ ├── BbsWaimaiForm.vue │ │ │ │ │ │ ├── BbsWaimaiModal.vue │ │ │ │ │ │ └── BbsWaimaiModal__Style#Drawer.vue │ │ │ │ └── waimaiuser │ │ │ │ │ ├── BbsWaimaiUserList.vue │ │ │ │ │ └── modules │ │ │ │ │ ├── BbsWaimaiUserForm.vue │ │ │ │ │ ├── BbsWaimaiUserModal.vue │ │ │ │ │ └── BbsWaimaiUserModal__Style#Drawer.vue │ │ │ ├── operator │ │ │ │ ├── activity │ │ │ │ │ ├── BbsActivityList.vue │ │ │ │ │ ├── activityuser │ │ │ │ │ │ ├── BbsActivityUserList.vue │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── BbsActivityUserForm.vue │ │ │ │ │ │ │ ├── BbsActivityUserModal.vue │ │ │ │ │ │ │ └── BbsActivityUserModal__Style#Drawer.vue │ │ │ │ │ └── modules │ │ │ │ │ │ ├── BbsActivityForm.vue │ │ │ │ │ │ ├── BbsActivityModal.vue │ │ │ │ │ │ └── BbsActivityModal__Style#Drawer.vue │ │ │ │ ├── feedback │ │ │ │ │ ├── BbsFeedBackList.vue │ │ │ │ │ └── modules │ │ │ │ │ │ ├── BbsFeedBackForm.vue │ │ │ │ │ │ ├── BbsFeedBackModal.vue │ │ │ │ │ │ └── BbsFeedBackModal__Style#Drawer.vue │ │ │ │ ├── record │ │ │ │ │ ├── BbsUserRecordList.vue │ │ │ │ │ └── modules │ │ │ │ │ │ ├── BbsUserRecordForm.vue │ │ │ │ │ │ ├── BbsUserRecordModal.vue │ │ │ │ │ │ └── BbsUserRecordModal__Style#Drawer.vue │ │ │ │ ├── region │ │ │ │ │ ├── BbsRegionList.vue │ │ │ │ │ └── modules │ │ │ │ │ │ ├── BbsRegionForm.vue │ │ │ │ │ │ └── BbsRegionModal.vue │ │ │ │ └── sysmessage │ │ │ │ │ ├── BbsSysMessageList.vue │ │ │ │ │ └── modules │ │ │ │ │ ├── BbsSysMessageForm.vue │ │ │ │ │ └── BbsSysMessageModal.vue │ │ │ └── statist │ │ │ │ └── ytdstatist │ │ │ │ └── YTDStatist.vue │ │ │ ├── dashboard │ │ │ ├── Analysis.vue │ │ │ ├── IndexBdc.vue │ │ │ ├── IndexChart.vue │ │ │ ├── IndexTask.vue │ │ │ ├── Monitor.vue │ │ │ └── Workplace.vue │ │ │ ├── examples │ │ │ ├── form │ │ │ │ ├── BasicForm.vue │ │ │ │ ├── advancedForm │ │ │ │ │ ├── AdvancedForm.vue │ │ │ │ │ ├── RepositoryForm.vue │ │ │ │ │ └── TaskForm.vue │ │ │ │ └── stepForm │ │ │ │ │ ├── Step1.vue │ │ │ │ │ ├── Step2.vue │ │ │ │ │ ├── Step3.vue │ │ │ │ │ └── StepForm.vue │ │ │ ├── list │ │ │ │ ├── CardList.vue │ │ │ │ ├── PermissionList.vue │ │ │ │ ├── RoleList.vue │ │ │ │ ├── StandardList.vue │ │ │ │ ├── TableInnerEditList.vue │ │ │ │ ├── TableList.vue │ │ │ │ ├── UserList.vue │ │ │ │ ├── modules │ │ │ │ │ └── RoleModal.vue │ │ │ │ └── search │ │ │ │ │ └── SearchLayout.vue │ │ │ └── profile │ │ │ │ ├── advanced │ │ │ │ └── Advanced.vue │ │ │ │ └── basic │ │ │ │ └── Index.vue │ │ │ ├── exception │ │ │ ├── 403.vue │ │ │ ├── 404.vue │ │ │ ├── 500.vue │ │ │ ├── ExceptionPage.vue │ │ │ └── type.js │ │ │ ├── jeecg │ │ │ ├── ImagCropper.vue │ │ │ ├── ImagPreview.vue │ │ │ ├── ImgDragSort.vue │ │ │ ├── ImgTurnPage.vue │ │ │ ├── InterfaceTest.vue │ │ │ ├── JVXETableDemo.vue │ │ │ ├── JVxeDemo │ │ │ │ ├── JVxeDemo1.vue │ │ │ │ ├── JVxeDemo2.vue │ │ │ │ ├── JVxeDemo3.vue │ │ │ │ ├── demo │ │ │ │ │ ├── JSBCDemo.vue │ │ │ │ │ ├── PopupSubTable.vue │ │ │ │ │ └── SocketReload.vue │ │ │ │ └── layout-demo │ │ │ │ │ ├── ErpTemplate.vue │ │ │ │ │ ├── Index.vue │ │ │ │ │ ├── Template1.vue │ │ │ │ │ ├── Template2.vue │ │ │ │ │ ├── Template3.vue │ │ │ │ │ ├── Template4.vue │ │ │ │ │ └── Template5.vue │ │ │ ├── JeecgDemoList.vue │ │ │ ├── JeecgEditableTableExample.vue │ │ │ ├── JeecgOrderMainList.vue │ │ │ ├── JeecgOrderMainListForJEditableTable.vue │ │ │ ├── JeecgOrderMainListForJVxeTable.vue │ │ │ ├── JeecgPdfView.vue │ │ │ ├── JeecgTreeTable.vue │ │ │ ├── PrintDemo.vue │ │ │ ├── RowspanTable.vue │ │ │ ├── SelectDemo.vue │ │ │ ├── SplitPanel.vue │ │ │ ├── TableExpandeSub.vue │ │ │ ├── TableTotal.vue │ │ │ ├── helloworld.vue │ │ │ ├── helloworld2.vue │ │ │ ├── modules │ │ │ │ ├── JEditableTable │ │ │ │ │ ├── DefaultTable.vue │ │ │ │ │ ├── ReadOnlyTable.vue │ │ │ │ │ └── ThreeLinkage.vue │ │ │ │ ├── JeecgDemoModal.vue │ │ │ │ ├── JeecgDemoTabsModal.vue │ │ │ │ ├── JeecgOrderMainModal.vue │ │ │ │ ├── JeecgOrderModalForJEditableTable.vue │ │ │ │ ├── JeecgOrderModalForJVexTable.vue │ │ │ │ ├── PdfPreviewModal.vue │ │ │ │ ├── SplitPanelA.vue │ │ │ │ ├── SplitPanelB.vue │ │ │ │ ├── SplitPanelModal.vue │ │ │ │ ├── SuperQueryModal.vue │ │ │ │ └── VueCronModal.vue │ │ │ ├── report │ │ │ │ ├── Analysis.vue │ │ │ │ ├── ArchivesStatisticst.vue │ │ │ │ └── ViserChartDemo.vue │ │ │ └── tablist │ │ │ │ ├── JeecgOrderCustomerList.vue │ │ │ │ ├── JeecgOrderDMainList.vue │ │ │ │ ├── JeecgOrderTicketList.vue │ │ │ │ └── form │ │ │ │ ├── JeecgOrderCustomerModal.vue │ │ │ │ ├── JeecgOrderDMainModal.vue │ │ │ │ └── JeecgOrderTicketModal.vue │ │ │ ├── modules │ │ │ ├── monitor │ │ │ │ ├── DiskMonitoring.vue │ │ │ │ ├── HttpTrace.vue │ │ │ │ ├── JvmInfo.vue │ │ │ │ ├── RedisInfo.vue │ │ │ │ ├── RedisTerminal.vue │ │ │ │ ├── SystemInfo.vue │ │ │ │ └── TomcatInfo.vue │ │ │ └── oss │ │ │ │ └── OSSFileList.vue │ │ │ ├── result │ │ │ ├── Error.vue │ │ │ ├── Result.vue │ │ │ └── Success.vue │ │ │ ├── system │ │ │ ├── AddressList.vue │ │ │ ├── DataLogList.vue │ │ │ ├── DepartList.vue │ │ │ ├── DepartList2.vue │ │ │ ├── DepartListSync.vue │ │ │ ├── DepartUserList.vue │ │ │ ├── DictDeleteList.vue │ │ │ ├── DictItemList.vue │ │ │ ├── DictList.vue │ │ │ ├── LogList.vue │ │ │ ├── NewPermissionList.vue │ │ │ ├── PermissionDataRuleList.vue │ │ │ ├── PermissionList.vue │ │ │ ├── QuartzJobList.vue │ │ │ ├── RoleList.vue │ │ │ ├── RoleUserList.vue │ │ │ ├── SysAnnouncementList.vue │ │ │ ├── SysCategoryList.vue │ │ │ ├── SysCheckRuleList.vue │ │ │ ├── SysDataSourceList.vue │ │ │ ├── SysFillRuleList.vue │ │ │ ├── SysGatewayRouteList.vue │ │ │ ├── SysGatewayRouteList2.vue │ │ │ ├── SysPositionList.vue │ │ │ ├── TenantList.vue │ │ │ ├── UserAnnouncementList.vue │ │ │ ├── UserList.vue │ │ │ └── modules │ │ │ │ ├── AddressListLeft.vue │ │ │ │ ├── AddressListRight.vue │ │ │ │ ├── DataLogCompareModal.vue │ │ │ │ ├── DataLogModal.vue │ │ │ │ ├── DepartAuthModal.vue │ │ │ │ ├── DepartDataruleModal.vue │ │ │ │ ├── DepartModal.vue │ │ │ │ ├── DepartWindow.vue │ │ │ │ ├── DeptBaseInfo.vue │ │ │ │ ├── DeptRoleAuthModal.vue │ │ │ │ ├── DeptRoleDataruleModal.vue │ │ │ │ ├── DeptRoleInfo.vue │ │ │ │ ├── DeptRoleUserModal.vue │ │ │ │ ├── DeptUserInfo.vue │ │ │ │ ├── DictItemModal.vue │ │ │ │ ├── DictModal.vue │ │ │ │ ├── GateWayRouteModal.vue │ │ │ │ ├── PasswordModal.vue │ │ │ │ ├── PermissionDataRuleModal.vue │ │ │ │ ├── PermissionModal.vue │ │ │ │ ├── QuartzJobModal.vue │ │ │ │ ├── RoleDataruleModal.vue │ │ │ │ ├── RoleModal.vue │ │ │ │ ├── SelectUserListModal.vue │ │ │ │ ├── SelectUserModal.vue │ │ │ │ ├── SysAnnouncementModal.vue │ │ │ │ ├── SysCategoryModal.vue │ │ │ │ ├── SysCheckRuleModal.vue │ │ │ │ ├── SysCheckRuleTestModal.vue │ │ │ │ ├── SysDataSourceModal.vue │ │ │ │ ├── SysDepartRoleModal.vue │ │ │ │ ├── SysFillRuleModal.vue │ │ │ │ ├── SysPositionModal.vue │ │ │ │ ├── SysUserAgentModal.vue │ │ │ │ ├── TenantForm.vue │ │ │ │ ├── TenantModal.vue │ │ │ │ ├── UserModal.vue │ │ │ │ ├── UserRecycleBinModal.vue │ │ │ │ ├── UserRoleModal.vue │ │ │ │ └── icon │ │ │ │ ├── Icon.less │ │ │ │ └── Icons.vue │ │ │ └── user │ │ │ ├── Login.vue │ │ │ ├── LoginSelectTenant.vue │ │ │ ├── alteration │ │ │ ├── Alteration.vue │ │ │ ├── Step1.vue │ │ │ ├── Step2.vue │ │ │ ├── Step3.vue │ │ │ └── Step4.vue │ │ │ ├── register │ │ │ ├── Register.vue │ │ │ └── RegisterResult.vue │ │ │ └── third │ │ │ ├── JeecgThirdLoginMixin.js │ │ │ └── ThirdLogin.vue │ └── vue.config.js ├── jeecg-boot │ ├── docker-compose-server.yml │ ├── docker-compose.yml │ ├── jeecg-boot-base │ │ ├── jeecg-boot-base-api │ │ │ ├── jeecg-system-cloud-api │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ ├── common │ │ │ │ │ └── system │ │ │ │ │ │ └── api │ │ │ │ │ │ ├── ISysBaseAPI.java │ │ │ │ │ │ ├── factory │ │ │ │ │ │ └── SysBaseAPIFallbackFactory.java │ │ │ │ │ │ └── fallback │ │ │ │ │ │ └── SysBaseAPIFallback.java │ │ │ │ │ └── config │ │ │ │ │ └── FeignConfig.java │ │ │ ├── jeecg-system-local-api │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ └── common │ │ │ │ │ └── system │ │ │ │ │ └── api │ │ │ │ │ └── ISysBaseAPI.java │ │ │ └── pom.xml │ │ ├── jeecg-boot-base-core │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ ├── common │ │ │ │ │ ├── api │ │ │ │ │ │ ├── CommonAPI.java │ │ │ │ │ │ ├── IWpsBaseAPI.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ ├── FileDownDTO.java │ │ │ │ │ │ │ ├── FileUploadDTO.java │ │ │ │ │ │ │ ├── LogDTO.java │ │ │ │ │ │ │ ├── OnlineAuthDTO.java │ │ │ │ │ │ │ └── message │ │ │ │ │ │ │ │ ├── BusMessageDTO.java │ │ │ │ │ │ │ │ ├── BusTemplateMessageDTO.java │ │ │ │ │ │ │ │ ├── MessageDTO.java │ │ │ │ │ │ │ │ ├── TemplateDTO.java │ │ │ │ │ │ │ │ └── TemplateMessageDTO.java │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ ├── OaWpsModel.java │ │ │ │ │ │ │ ├── Result.java │ │ │ │ │ │ │ └── TopicResult.java │ │ │ │ │ ├── aspect │ │ │ │ │ │ ├── AutoLogAspect.java │ │ │ │ │ │ ├── DictAspect.java │ │ │ │ │ │ ├── PermissionDataAspect.java │ │ │ │ │ │ ├── UrlMatchEnum.java │ │ │ │ │ │ └── annotation │ │ │ │ │ │ │ ├── AutoLog.java │ │ │ │ │ │ │ ├── Dict.java │ │ │ │ │ │ │ ├── OnlineAuth.java │ │ │ │ │ │ │ └── PermissionData.java │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── CommonConstant.java │ │ │ │ │ │ ├── CommonSendStatus.java │ │ │ │ │ │ ├── DataBaseConstant.java │ │ │ │ │ │ ├── FillRuleConstant.java │ │ │ │ │ │ ├── ProvinceCityArea.java │ │ │ │ │ │ ├── ServiceNameConstants.java │ │ │ │ │ │ ├── VXESocketConst.java │ │ │ │ │ │ ├── WebsocketConst.java │ │ │ │ │ │ └── enums │ │ │ │ │ │ │ ├── CgformEnum.java │ │ │ │ │ │ │ └── ModuleType.java │ │ │ │ │ ├── es │ │ │ │ │ │ ├── JeecgElasticsearchTemplate.java │ │ │ │ │ │ └── QueryStringBuilder.java │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── JeecgBootException.java │ │ │ │ │ │ └── JeecgBootExceptionHandler.java │ │ │ │ │ ├── handler │ │ │ │ │ │ └── IFillRuleHandler.java │ │ │ │ │ ├── system │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ └── JeecgController.java │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ │ └── JeecgEntity.java │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── JeecgService.java │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ └── JeecgServiceImpl.java │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ ├── MatchTypeEnum.java │ │ │ │ │ │ │ ├── QueryCondition.java │ │ │ │ │ │ │ ├── QueryGenerator.java │ │ │ │ │ │ │ └── QueryRuleEnum.java │ │ │ │ │ │ ├── util │ │ │ │ │ │ │ ├── JeecgDataAutorUtils.java │ │ │ │ │ │ │ └── JwtUtil.java │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ ├── ComboModel.java │ │ │ │ │ │ │ ├── DictModel.java │ │ │ │ │ │ │ ├── DictQuery.java │ │ │ │ │ │ │ ├── DynamicDataSourceModel.java │ │ │ │ │ │ │ ├── LoginUser.java │ │ │ │ │ │ │ ├── SysCategoryModel.java │ │ │ │ │ │ │ ├── SysDepartModel.java │ │ │ │ │ │ │ ├── SysPermissionDataRuleModel.java │ │ │ │ │ │ │ └── SysUserCacheInfo.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── BrowserType.java │ │ │ │ │ │ ├── BrowserUtils.java │ │ │ │ │ │ ├── CommonUtils.java │ │ │ │ │ │ ├── DateUtils.java │ │ │ │ │ │ ├── DySmsEnum.java │ │ │ │ │ │ ├── DySmsHelper.java │ │ │ │ │ │ ├── FillRuleUtil.java │ │ │ │ │ │ ├── HTMLUtils.java │ │ │ │ │ │ ├── IPUtils.java │ │ │ │ │ │ ├── ImportExcelUtil.java │ │ │ │ │ │ ├── MD5Util.java │ │ │ │ │ │ ├── MinioUtil.java │ │ │ │ │ │ ├── MyClassLoader.java │ │ │ │ │ │ ├── PasswordUtil.java │ │ │ │ │ │ ├── PmsUtil.java │ │ │ │ │ │ ├── RedisUtil.java │ │ │ │ │ │ ├── ReflectHelper.java │ │ │ │ │ │ ├── RestDesformUtil.java │ │ │ │ │ │ ├── RestUtil.java │ │ │ │ │ │ ├── SpringContextUtils.java │ │ │ │ │ │ ├── SqlInjectionUtil.java │ │ │ │ │ │ ├── SysAnnmentTypeEnum.java │ │ │ │ │ │ ├── TokenUtils.java │ │ │ │ │ │ ├── UUIDGenerator.java │ │ │ │ │ │ ├── YouBianCodeUtil.java │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── db │ │ │ │ │ │ │ ├── DataSourceCachePool.java │ │ │ │ │ │ │ ├── DynamicDBUtil.java │ │ │ │ │ │ │ ├── FreemarkerParseFactory.java │ │ │ │ │ │ │ └── SqlUtils.java │ │ │ │ │ │ ├── encryption │ │ │ │ │ │ ├── AesEncryptUtil.java │ │ │ │ │ │ └── EncryptedString.java │ │ │ │ │ │ ├── filter │ │ │ │ │ │ └── StrAttackFilter.java │ │ │ │ │ │ ├── jsonschema │ │ │ │ │ │ ├── BaseColumn.java │ │ │ │ │ │ ├── CommonProperty.java │ │ │ │ │ │ ├── JsonSchemaDescrip.java │ │ │ │ │ │ ├── JsonschemaUtil.java │ │ │ │ │ │ └── validate │ │ │ │ │ │ │ ├── DictProperty.java │ │ │ │ │ │ │ ├── HiddenProperty.java │ │ │ │ │ │ │ ├── LinkDownProperty.java │ │ │ │ │ │ │ ├── NumberProperty.java │ │ │ │ │ │ │ ├── PopupProperty.java │ │ │ │ │ │ │ ├── StringProperty.java │ │ │ │ │ │ │ ├── SwitchProperty.java │ │ │ │ │ │ │ └── TreeSelectProperty.java │ │ │ │ │ │ ├── oConvertUtils.java │ │ │ │ │ │ ├── oss │ │ │ │ │ │ ├── OssBootUtil.java │ │ │ │ │ │ └── QiNiuUtil.java │ │ │ │ │ │ ├── security │ │ │ │ │ │ ├── SecurityTools.java │ │ │ │ │ │ └── entity │ │ │ │ │ │ │ ├── MyKeyPair.java │ │ │ │ │ │ │ ├── SecurityReq.java │ │ │ │ │ │ │ ├── SecurityResp.java │ │ │ │ │ │ │ ├── SecuritySignReq.java │ │ │ │ │ │ │ └── SecuritySignResp.java │ │ │ │ │ │ └── superSearch │ │ │ │ │ │ ├── ObjectParseUtil.java │ │ │ │ │ │ ├── QueryRuleEnum.java │ │ │ │ │ │ └── QueryRuleVo.java │ │ │ │ │ ├── config │ │ │ │ │ ├── AutoPoiConfig.java │ │ │ │ │ ├── AutoPoiDictConfig.java │ │ │ │ │ ├── CorsFilterCondition.java │ │ │ │ │ ├── JeecgCloudCondition.java │ │ │ │ │ ├── RestTemplateConfig.java │ │ │ │ │ ├── StaticConfig.java │ │ │ │ │ ├── Swagger2Config.java │ │ │ │ │ ├── WebMvcConfiguration.java │ │ │ │ │ ├── WebSocketConfig.java │ │ │ │ │ ├── mybatis │ │ │ │ │ │ ├── JeecgTenantParser.java │ │ │ │ │ │ ├── MybatisInterceptor.java │ │ │ │ │ │ ├── MybatisPlusConfig.java │ │ │ │ │ │ └── TenantContext.java │ │ │ │ │ ├── oss │ │ │ │ │ │ ├── MinioConfig.java │ │ │ │ │ │ ├── OssConfiguration.java │ │ │ │ │ │ └── QiNiuOssConfiguration.java │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── JwtToken.java │ │ │ │ │ │ ├── ShiroConfig.java │ │ │ │ │ │ ├── ShiroRealm.java │ │ │ │ │ │ └── filters │ │ │ │ │ │ ├── CustomShiroFilterFactoryBean.java │ │ │ │ │ │ ├── JwtFilter.java │ │ │ │ │ │ └── ResourceCheckFilter.java │ │ │ │ │ └── modules │ │ │ │ │ └── base │ │ │ │ │ ├── mapper │ │ │ │ │ ├── BaseCommonMapper.java │ │ │ │ │ └── xml │ │ │ │ │ │ └── BaseCommonMapper.xml │ │ │ │ │ └── service │ │ │ │ │ ├── BaseCommonService.java │ │ │ │ │ └── impl │ │ │ │ │ └── BaseCommonServiceImpl.java │ │ │ │ └── resources │ │ │ │ └── static │ │ │ │ └── pca.json │ │ ├── jeecg-boot-base-tools │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jeecg │ │ │ │ └── common │ │ │ │ ├── annotation │ │ │ │ └── RabbitComponent.java │ │ │ │ ├── base │ │ │ │ └── BaseMap.java │ │ │ │ ├── config │ │ │ │ └── CommonConfig.java │ │ │ │ ├── constant │ │ │ │ ├── CacheConstant.java │ │ │ │ └── GlobalConstants.java │ │ │ │ ├── modules │ │ │ │ └── redis │ │ │ │ │ ├── client │ │ │ │ │ └── JeecgRedisClient.java │ │ │ │ │ ├── config │ │ │ │ │ └── RedisConfig.java │ │ │ │ │ ├── listener │ │ │ │ │ └── JeecgRedisListerer.java │ │ │ │ │ ├── receiver │ │ │ │ │ └── RedisReceiver.java │ │ │ │ │ └── writer │ │ │ │ │ └── JeecgRedisCacheWriter.java │ │ │ │ └── util │ │ │ │ ├── RedisUtil.java │ │ │ │ └── SpringContextHolder.java │ │ └── pom.xml │ ├── jeecg-boot-module-bbs │ │ ├── .gitignore │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ └── modules │ │ │ │ │ ├── bbs │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── BbsActivity.java │ │ │ │ │ │ ├── BbsActivityUser.java │ │ │ │ │ │ ├── BbsClass.java │ │ │ │ │ │ ├── BbsFeedBack.java │ │ │ │ │ │ ├── BbsFeedBackFullDto.java │ │ │ │ │ │ ├── BbsInform.java │ │ │ │ │ │ ├── BbsMessageBoard.java │ │ │ │ │ │ ├── BbsMessageBoardFullDto.java │ │ │ │ │ │ ├── BbsOpenId.java │ │ │ │ │ │ ├── BbsRegion.java │ │ │ │ │ │ ├── BbsReply.java │ │ │ │ │ │ ├── BbsStatist.java │ │ │ │ │ │ ├── BbsSys.java │ │ │ │ │ │ ├── BbsSysMessage.java │ │ │ │ │ │ ├── BbsTopic.java │ │ │ │ │ │ ├── BbsTopicFullDto.java │ │ │ │ │ │ ├── BbsTopicImage.java │ │ │ │ │ │ ├── BbsTopicLink.java │ │ │ │ │ │ ├── BbsTopicTag.java │ │ │ │ │ │ ├── BbsUserMessage.java │ │ │ │ │ │ ├── BbsUserMessageFullDto.java │ │ │ │ │ │ ├── BbsUserPraise.java │ │ │ │ │ │ ├── BbsUserRecord.java │ │ │ │ │ │ ├── BbsUserStar.java │ │ │ │ │ │ ├── BbsUserSysMessage.java │ │ │ │ │ │ ├── BbsUserTopicClick.java │ │ │ │ │ │ ├── BbsWaimai.java │ │ │ │ │ │ └── BbsWaimaiUser.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── BbsActivityMapper.java │ │ │ │ │ │ ├── BbsActivityUserMapper.java │ │ │ │ │ │ ├── BbsClassMapper.java │ │ │ │ │ │ ├── BbsFeedBackMapper.java │ │ │ │ │ │ ├── BbsInformMapper.java │ │ │ │ │ │ ├── BbsMessageBoardMapper.java │ │ │ │ │ │ ├── BbsRegionMapper.java │ │ │ │ │ │ ├── BbsReplyMapper.java │ │ │ │ │ │ ├── BbsStatistMapper.java │ │ │ │ │ │ ├── BbsSysMapper.java │ │ │ │ │ │ ├── BbsSysMessageMapper.java │ │ │ │ │ │ ├── BbsTopicFullDtoMapper.java │ │ │ │ │ │ ├── BbsTopicImageMapper.java │ │ │ │ │ │ ├── BbsTopicLinkMapper.java │ │ │ │ │ │ ├── BbsTopicMapper.java │ │ │ │ │ │ ├── BbsTopicTagMapper.java │ │ │ │ │ │ ├── BbsUserMessageFullDtoMapper.java │ │ │ │ │ │ ├── BbsUserMessageMapper.java │ │ │ │ │ │ ├── BbsUserPraiseMapper.java │ │ │ │ │ │ ├── BbsUserRecordMapper.java │ │ │ │ │ │ ├── BbsUserStarMapper.java │ │ │ │ │ │ ├── BbsUserSysMessageMapper.java │ │ │ │ │ │ ├── BbsUserTopicClickMapper.java │ │ │ │ │ │ ├── BbsWaimaiMapper.java │ │ │ │ │ │ ├── BbsWaimaiUserMapper.java │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── BbsActivityMapper.xml │ │ │ │ │ │ │ ├── BbsActivityUserMapper.xml │ │ │ │ │ │ │ ├── BbsClassMapper.xml │ │ │ │ │ │ │ ├── BbsFeedBackMapper.xml │ │ │ │ │ │ │ ├── BbsInformMapper.xml │ │ │ │ │ │ │ ├── BbsMessageBoardMapper.xml │ │ │ │ │ │ │ ├── BbsRegionMapper.xml │ │ │ │ │ │ │ ├── BbsReplyMapper.xml │ │ │ │ │ │ │ ├── BbsSaveMoneyMapper.xml │ │ │ │ │ │ │ ├── BbsStatistMapper.xml │ │ │ │ │ │ │ ├── BbsSysMapper.xml │ │ │ │ │ │ │ ├── BbsSysMessageMapper.xml │ │ │ │ │ │ │ ├── BbsTopicFullDtoMapper.xml │ │ │ │ │ │ │ ├── BbsTopicImageMapper.xml │ │ │ │ │ │ │ ├── BbsTopicLinkMapper.xml │ │ │ │ │ │ │ ├── BbsTopicMapper.xml │ │ │ │ │ │ │ ├── BbsTopicTagMapper.xml │ │ │ │ │ │ │ ├── BbsUserMessageFullDtoMapper.xml │ │ │ │ │ │ │ ├── BbsUserMessageMapper.xml │ │ │ │ │ │ │ ├── BbsUserPraiseMapper.xml │ │ │ │ │ │ │ ├── BbsUserRecordMapper.xml │ │ │ │ │ │ │ ├── BbsUserStarMapper.xml │ │ │ │ │ │ │ ├── BbsUserSysMessageMapper.xml │ │ │ │ │ │ │ ├── BbsUserTopicClickMapper.xml │ │ │ │ │ │ │ ├── BbsWaimaiMapper.xml │ │ │ │ │ │ │ └── BbsWaimaiUserMapper.xml │ │ │ │ │ ├── quartz │ │ │ │ │ │ └── OnlinePeople.java │ │ │ │ │ ├── service │ │ │ │ │ │ ├── IBbsActivityService.java │ │ │ │ │ │ ├── IBbsActivityUserService.java │ │ │ │ │ │ ├── IBbsClassService.java │ │ │ │ │ │ ├── IBbsFeedBackService.java │ │ │ │ │ │ ├── IBbsInformService.java │ │ │ │ │ │ ├── IBbsMessageBoardService.java │ │ │ │ │ │ ├── IBbsRegionService.java │ │ │ │ │ │ ├── IBbsReplyService.java │ │ │ │ │ │ ├── IBbsStatistService.java │ │ │ │ │ │ ├── IBbsSysMessageService.java │ │ │ │ │ │ ├── IBbsSysService.java │ │ │ │ │ │ ├── IBbsTopicFullDtoService.java │ │ │ │ │ │ ├── IBbsTopicImageService.java │ │ │ │ │ │ ├── IBbsTopicLinkService.java │ │ │ │ │ │ ├── IBbsTopicService.java │ │ │ │ │ │ ├── IBbsTopicTagService.java │ │ │ │ │ │ ├── IBbsUserMessageFullDtoService.java │ │ │ │ │ │ ├── IBbsUserMessageService.java │ │ │ │ │ │ ├── IBbsUserPraiseService.java │ │ │ │ │ │ ├── IBbsUserRecordService.java │ │ │ │ │ │ ├── IBbsUserStarService.java │ │ │ │ │ │ ├── IBbsUserSysMessageService.java │ │ │ │ │ │ ├── IBbsUserTopicClickService.java │ │ │ │ │ │ ├── IBbsWaimaiService.java │ │ │ │ │ │ ├── IBbsWaimaiUserService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── BbsActivityServiceImpl.java │ │ │ │ │ │ │ ├── BbsActivityUserServiceImpl.java │ │ │ │ │ │ │ ├── BbsClassServiceImpl.java │ │ │ │ │ │ │ ├── BbsFeedBackServiceImpl.java │ │ │ │ │ │ │ ├── BbsInformServiceImpl.java │ │ │ │ │ │ │ ├── BbsMessageBoardServiceImpl.java │ │ │ │ │ │ │ ├── BbsRegionServiceImpl.java │ │ │ │ │ │ │ ├── BbsReplyServiceImpl.java │ │ │ │ │ │ │ ├── BbsStatistServiceImpl.java │ │ │ │ │ │ │ ├── BbsSysMessageServiceImpl.java │ │ │ │ │ │ │ ├── BbsSysServiceImpl.java │ │ │ │ │ │ │ ├── BbsTopicFullDtoServiceImpl.java │ │ │ │ │ │ │ ├── BbsTopicImageServiceImpl.java │ │ │ │ │ │ │ ├── BbsTopicLinkServiceImpl.java │ │ │ │ │ │ │ ├── BbsTopicServiceImpl.java │ │ │ │ │ │ │ ├── BbsTopicTagServiceImpl.java │ │ │ │ │ │ │ ├── BbsUserMessageFullDtoServiceImpl.java │ │ │ │ │ │ │ ├── BbsUserMessageServiceImpl.java │ │ │ │ │ │ │ ├── BbsUserPraiseServiceImpl.java │ │ │ │ │ │ │ ├── BbsUserRecordServiceImpl.java │ │ │ │ │ │ │ ├── BbsUserStarServiceImpl.java │ │ │ │ │ │ │ ├── BbsUserSysMessageServiceImpl.java │ │ │ │ │ │ │ ├── BbsUserTopicClickServiceImpl.java │ │ │ │ │ │ │ ├── BbsWaimaiServiceImpl.java │ │ │ │ │ │ │ └── BbsWaimaiUserServiceImpl.java │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── Base64URL.java │ │ │ │ │ │ ├── ContentCheck.java │ │ │ │ │ │ ├── SessionCounter.java │ │ │ │ │ │ ├── TLSSigAPIv2.java │ │ │ │ │ │ ├── UserSigService.java │ │ │ │ │ │ └── test.java │ │ │ │ │ └── vo │ │ │ │ │ │ ├── BbsRegionPage.java │ │ │ │ │ │ ├── BbsSysMessagePage.java │ │ │ │ │ │ └── BbsTopicPage.java │ │ │ │ │ ├── bbsquartz │ │ │ │ │ ├── BbsQuartzDay.java │ │ │ │ │ ├── BbsQuartzMonth.java │ │ │ │ │ ├── BbsQuartzTopic.java │ │ │ │ │ ├── BbsQuartzTopicToSqlFromRedis.java │ │ │ │ │ ├── BbsQuartzWeek.java │ │ │ │ │ └── OnlinePeople.java │ │ │ │ │ ├── cache │ │ │ │ │ ├── BbsRedisUtils.java │ │ │ │ │ └── LoadDataRedis.java │ │ │ │ │ └── config │ │ │ │ │ └── WeiXinConfig.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jeecg │ │ │ └── modules │ │ │ └── bbs │ │ │ ├── BbsApplicationTests.java │ │ │ └── utils │ │ │ └── ContentCheckTest.java │ ├── jeecg-boot-module-demo │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jeecg │ │ │ │ ├── JeecgDemoCloudApplication.java │ │ │ │ └── modules │ │ │ │ ├── demo │ │ │ │ ├── cloud │ │ │ │ │ ├── controller │ │ │ │ │ │ └── JcloudDemoController.java │ │ │ │ │ ├── provider │ │ │ │ │ │ └── JcloudDemoProvider.java │ │ │ │ │ └── service │ │ │ │ │ │ ├── JcloudDemoService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── JcloudDemoServiceImpl.java │ │ │ │ ├── mock │ │ │ │ │ ├── MockController.java │ │ │ │ │ ├── json │ │ │ │ │ │ ├── area.json │ │ │ │ │ │ ├── area_mini.json │ │ │ │ │ │ ├── area_options.json │ │ │ │ │ │ ├── asyn_tree_list_0.json │ │ │ │ │ │ ├── asyn_tree_list_1.json │ │ │ │ │ │ ├── asyn_tree_list_2.json │ │ │ │ │ │ ├── asyn_tree_list_3.json │ │ │ │ │ │ ├── asyn_tree_list_31.json │ │ │ │ │ │ ├── getCntrNoCountInfo.json │ │ │ │ │ │ ├── graphreport_chart.json │ │ │ │ │ │ ├── permission.json │ │ │ │ │ │ ├── permission_no_page.json │ │ │ │ │ │ ├── role.json │ │ │ │ │ │ ├── service.json │ │ │ │ │ │ ├── sysdatalog.json │ │ │ │ │ │ ├── task_process.json │ │ │ │ │ │ ├── user.json │ │ │ │ │ │ ├── user_info.json │ │ │ │ │ │ ├── userinfo.json │ │ │ │ │ │ ├── workplace_activity.json │ │ │ │ │ │ ├── workplace_projects.json │ │ │ │ │ │ ├── workplace_radar.json │ │ │ │ │ │ └── workplace_teams.json │ │ │ │ │ └── vxe │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── VxeMockController.java │ │ │ │ │ │ ├── entity │ │ │ │ │ │ └── MockEntity.java │ │ │ │ │ │ ├── json │ │ │ │ │ │ ├── ddjh.json │ │ │ │ │ │ ├── ddjh_s8.json │ │ │ │ │ │ └── dlglong.json │ │ │ │ │ │ └── websocket │ │ │ │ │ │ └── VXESocket.java │ │ │ │ ├── test │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── BigScreenTemplatController.java │ │ │ │ │ │ ├── JeecgDemoController.java │ │ │ │ │ │ ├── JeecgOrderMainController.java │ │ │ │ │ │ ├── JeecgOrderTabMainController.java │ │ │ │ │ │ └── JoaDemoController.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── JeecgDemo.java │ │ │ │ │ │ ├── JeecgOrderCustomer.java │ │ │ │ │ │ ├── JeecgOrderMain.java │ │ │ │ │ │ ├── JeecgOrderTicket.java │ │ │ │ │ │ └── JoaDemo.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── JeecgDemoMapper.java │ │ │ │ │ │ ├── JeecgOrderCustomerMapper.java │ │ │ │ │ │ ├── JeecgOrderMainMapper.java │ │ │ │ │ │ ├── JeecgOrderTicketMapper.java │ │ │ │ │ │ ├── JoaDemoMapper.java │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── JeecgDemoMapper.xml │ │ │ │ │ │ │ ├── JeecgOrderCustomerMapper.xml │ │ │ │ │ │ │ ├── JeecgOrderMainMapper.xml │ │ │ │ │ │ │ ├── JeecgOrderTicketMapper.xml │ │ │ │ │ │ │ └── JoaDemoMapper.xml │ │ │ │ │ ├── service │ │ │ │ │ │ ├── IJeecgDemoService.java │ │ │ │ │ │ ├── IJeecgOrderCustomerService.java │ │ │ │ │ │ ├── IJeecgOrderMainService.java │ │ │ │ │ │ ├── IJeecgOrderTicketService.java │ │ │ │ │ │ ├── IJoaDemoService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── JeecgDemoServiceImpl.java │ │ │ │ │ │ │ ├── JeecgOrderCustomerServiceImpl.java │ │ │ │ │ │ │ ├── JeecgOrderMainServiceImpl.java │ │ │ │ │ │ │ ├── JeecgOrderTicketServiceImpl.java │ │ │ │ │ │ │ └── JoaDemoServiceImpl.java │ │ │ │ │ └── vo │ │ │ │ │ │ └── JeecgOrderMainPage.java │ │ │ │ └── xxljob │ │ │ │ │ └── TestJobHandler.java │ │ │ │ └── dlglong │ │ │ │ ├── controller │ │ │ │ └── DlMockController.java │ │ │ │ ├── entity │ │ │ │ └── MockEntity.java │ │ │ │ └── json │ │ │ │ ├── ddjh.json │ │ │ │ ├── ddjh_s8.json │ │ │ │ └── dlglong.json │ │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── static │ │ │ └── bigscreen │ │ │ │ ├── template1 │ │ │ │ ├── css │ │ │ │ │ ├── easyui.css │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── main_design1.css │ │ │ │ │ └── room.css │ │ │ │ ├── images │ │ │ │ │ ├── content_comm.png │ │ │ │ │ ├── content_comm1.png │ │ │ │ │ ├── content_down.png │ │ │ │ │ ├── content_down1.png │ │ │ │ │ ├── index.gif │ │ │ │ │ ├── index1.gif │ │ │ │ │ ├── screenbg_design1.jpg │ │ │ │ │ └── war_room_main.jpg │ │ │ │ └── js │ │ │ │ │ ├── big_design1.js │ │ │ │ │ ├── china.js │ │ │ │ │ ├── echarts-wordcloud.js │ │ │ │ │ ├── echarts.min.js │ │ │ │ │ ├── geoCoord.js │ │ │ │ │ ├── jquery.easyui.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── resize.js │ │ │ │ │ └── room.js │ │ │ │ └── template2 │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── bg_img03.png │ │ │ │ ├── bg_img04.png │ │ │ │ ├── border_bg01.png │ │ │ │ ├── box_title.png │ │ │ │ ├── chart_icon.png │ │ │ │ ├── chart_icon_on.png │ │ │ │ ├── close.png │ │ │ │ ├── close_icon.png │ │ │ │ ├── data_icon.png │ │ │ │ ├── data_icon_on.png │ │ │ │ ├── fangda.png │ │ │ │ ├── index_bg.png │ │ │ │ ├── jian.png │ │ │ │ ├── line-blue.png │ │ │ │ ├── line_bg.png │ │ │ │ ├── line_img.png │ │ │ │ ├── menu_btn.png │ │ │ │ ├── menu_on.png │ │ │ │ ├── next.png │ │ │ │ ├── people_iocn.png │ │ │ │ ├── plus.png │ │ │ │ ├── popUP_bg.png │ │ │ │ ├── prev.png │ │ │ │ ├── select_icon.png │ │ │ │ ├── select_icon_on.png │ │ │ │ ├── selsct_time.png │ │ │ │ ├── settings_icon.png │ │ │ │ ├── settings_icon_on.png │ │ │ │ ├── teacher_icon.png │ │ │ │ ├── title_bg01.png │ │ │ │ ├── title_border.png │ │ │ │ ├── title_line.png │ │ │ │ └── weather │ │ │ │ │ ├── weather_img01.png │ │ │ │ │ ├── 中雨.png │ │ │ │ │ ├── 中雨转大雨.png │ │ │ │ │ ├── 中雪.png │ │ │ │ │ ├── 中雪转大雪.png │ │ │ │ │ ├── 冻雨.png │ │ │ │ │ ├── 多云.png │ │ │ │ │ ├── 大暴雨.png │ │ │ │ │ ├── 大暴雪.png │ │ │ │ │ ├── 大雨.png │ │ │ │ │ ├── 大雨转暴雨.png │ │ │ │ │ ├── 大雪.png │ │ │ │ │ ├── 大雪转暴雪.png │ │ │ │ │ ├── 小雨.png │ │ │ │ │ ├── 小雨转中雨.png │ │ │ │ │ ├── 小雪.png │ │ │ │ │ ├── 小雪转中雪.png │ │ │ │ │ ├── 强沙尘暴.png │ │ │ │ │ ├── 扬沙.png │ │ │ │ │ ├── 晴.png │ │ │ │ │ ├── 暴雨.png │ │ │ │ │ ├── 暴雨转大暴雨.png │ │ │ │ │ ├── 暴雪.png │ │ │ │ │ ├── 沙尘暴.png │ │ │ │ │ ├── 浮尘.png │ │ │ │ │ ├── 特大暴雨.png │ │ │ │ │ ├── 阴.png │ │ │ │ │ ├── 阵雨.png │ │ │ │ │ ├── 阵雪.png │ │ │ │ │ ├── 雨加雪.png │ │ │ │ │ ├── 雷阵雨.png │ │ │ │ │ ├── 雷阵雨加冰雹.png │ │ │ │ │ ├── 雾.png │ │ │ │ │ └── 霾.png │ │ │ │ └── js │ │ │ │ ├── base.js │ │ │ │ ├── china.js │ │ │ │ ├── data │ │ │ │ ├── city.json │ │ │ │ └── guangdong.js │ │ │ │ ├── echarts.min.js │ │ │ │ ├── jquery-3.3.1.min.js │ │ │ │ ├── layer │ │ │ │ ├── extend │ │ │ │ │ └── layer.ext.js │ │ │ │ ├── laydate │ │ │ │ │ ├── laydate.js │ │ │ │ │ ├── need │ │ │ │ │ │ └── laydate.css │ │ │ │ │ └── skins │ │ │ │ │ │ ├── danlan │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── laydate.css │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── laydate.css │ │ │ │ ├── layer.min.js │ │ │ │ ├── layim │ │ │ │ │ ├── data │ │ │ │ │ │ ├── chatlog.json │ │ │ │ │ │ ├── friend.json │ │ │ │ │ │ ├── group.json │ │ │ │ │ │ └── groups.json │ │ │ │ │ ├── layim.css │ │ │ │ │ ├── layim.js │ │ │ │ │ └── loading.gif │ │ │ │ └── skin │ │ │ │ │ ├── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon_ext.png │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ ├── loading-2.gif │ │ │ │ │ ├── textbg.png │ │ │ │ │ ├── xubox_ico0.png │ │ │ │ │ ├── xubox_loading0.gif │ │ │ │ │ ├── xubox_loading1.gif │ │ │ │ │ ├── xubox_loading2.gif │ │ │ │ │ ├── xubox_loading3.gif │ │ │ │ │ └── xubox_title0.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── layer.ext.css │ │ │ │ │ └── moon │ │ │ │ │ ├── default.png │ │ │ │ │ └── style.css │ │ │ │ ├── pop_base.js │ │ │ │ └── rem.js │ │ │ └── templates │ │ │ └── bigscreen │ │ │ ├── template1 │ │ │ └── index.ftl │ │ │ └── template2 │ │ │ └── index.ftl │ ├── jeecg-boot-module-system │ │ ├── .gitattributes │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ ├── JeecgOneGUI.java │ │ │ │ │ ├── JeecgOneToMainUtil.java │ │ │ │ │ ├── JeecgSystemApplication.java │ │ │ │ │ ├── config │ │ │ │ │ ├── init │ │ │ │ │ │ ├── CodeGenerateDbConfig.java │ │ │ │ │ │ ├── SystemInitListener.java │ │ │ │ │ │ └── TomcatFactoryConfig.java │ │ │ │ │ └── jimureport │ │ │ │ │ │ └── JimuReportTokenService.java │ │ │ │ │ └── modules │ │ │ │ │ ├── api │ │ │ │ │ └── controller │ │ │ │ │ │ └── SystemAPIController.java │ │ │ │ │ ├── bbs │ │ │ │ │ ├── BbsActivityController.java │ │ │ │ │ ├── BbsActivityUserController.java │ │ │ │ │ ├── BbsAuthController.java │ │ │ │ │ ├── BbsChatController.java │ │ │ │ │ ├── BbsClassController.java │ │ │ │ │ ├── BbsFeedBackController.java │ │ │ │ │ ├── BbsInformController.java │ │ │ │ │ ├── BbsMessageBoardController.java │ │ │ │ │ ├── BbsRegionController.java │ │ │ │ │ ├── BbsReplyController.java │ │ │ │ │ ├── BbsStatistController.java │ │ │ │ │ ├── BbsSysController.java │ │ │ │ │ ├── BbsSysMessageController.java │ │ │ │ │ ├── BbsTopicController.java │ │ │ │ │ ├── BbsUserMessageController.java │ │ │ │ │ ├── BbsUserPraiseController.java │ │ │ │ │ ├── BbsUserRecordController.java │ │ │ │ │ ├── BbsUserStarController.java │ │ │ │ │ ├── BbsUserSysMessageController.java │ │ │ │ │ ├── BbsUserTopicClickController.java │ │ │ │ │ ├── BbsWaimaiController.java │ │ │ │ │ ├── BbsWaimaiUserController.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── MiNiStorage.java │ │ │ │ │ │ └── UserBehaviorLimit.java │ │ │ │ │ ├── quartz │ │ │ │ │ │ └── BbsQuartzStatist.java │ │ │ │ │ └── utils │ │ │ │ │ │ ├── BbsAuthUtils.java │ │ │ │ │ │ └── cache │ │ │ │ │ │ └── UserCache.java │ │ │ │ │ ├── cas │ │ │ │ │ ├── controller │ │ │ │ │ │ └── CasClientController.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── CASServiceUtil.java │ │ │ │ │ │ └── XmlUtils.java │ │ │ │ │ ├── message │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── SysMessageController.java │ │ │ │ │ │ └── SysMessageTemplateController.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── MsgParams.java │ │ │ │ │ │ ├── SysMessage.java │ │ │ │ │ │ └── SysMessageTemplate.java │ │ │ │ │ ├── handle │ │ │ │ │ │ ├── ISendMsgHandle.java │ │ │ │ │ │ ├── enums │ │ │ │ │ │ │ ├── SendMsgStatusEnum.java │ │ │ │ │ │ │ └── SendMsgTypeEnum.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── EmailSendMsgHandle.java │ │ │ │ │ │ │ ├── SmsSendMsgHandle.java │ │ │ │ │ │ │ └── WxSendMsgHandle.java │ │ │ │ │ ├── job │ │ │ │ │ │ └── SendMsgJob.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── SysMessageMapper.java │ │ │ │ │ │ ├── SysMessageTemplateMapper.java │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── SysMessageMapper.xml │ │ │ │ │ │ │ └── SysMessageTemplateMapper.xml │ │ │ │ │ ├── service │ │ │ │ │ │ ├── ISysMessageService.java │ │ │ │ │ │ ├── ISysMessageTemplateService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── SysMessageServiceImpl.java │ │ │ │ │ │ │ └── SysMessageTemplateServiceImpl.java │ │ │ │ │ ├── util │ │ │ │ │ │ └── PushMsgUtil.java │ │ │ │ │ └── websocket │ │ │ │ │ │ ├── SocketHandler.java │ │ │ │ │ │ ├── TestSocketController.java │ │ │ │ │ │ └── WebSocket.java │ │ │ │ │ ├── monitor │ │ │ │ │ ├── controller │ │ │ │ │ │ └── ActuatorRedisController.java │ │ │ │ │ ├── domain │ │ │ │ │ │ └── RedisInfo.java │ │ │ │ │ ├── exception │ │ │ │ │ │ └── RedisConnectException.java │ │ │ │ │ └── service │ │ │ │ │ │ ├── RedisService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ ├── MailHealthIndicator.java │ │ │ │ │ │ └── RedisServiceImpl.java │ │ │ │ │ ├── ngalain │ │ │ │ │ ├── aop │ │ │ │ │ │ └── LogRecordAspect.java │ │ │ │ │ ├── controller │ │ │ │ │ │ └── NgAlainController.java │ │ │ │ │ └── service │ │ │ │ │ │ ├── NgAlainService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── NgAlainServiceImpl.java │ │ │ │ │ ├── oss │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── OSSFileController.java │ │ │ │ │ │ └── QiNiuOSSFileController.java │ │ │ │ │ ├── entity │ │ │ │ │ │ └── OSSFile.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── OSSFileMapper.java │ │ │ │ │ └── service │ │ │ │ │ │ ├── IOSSFileService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── OSSFileServiceImpl.java │ │ │ │ │ ├── quartz │ │ │ │ │ ├── controller │ │ │ │ │ │ └── QuartzJobController.java │ │ │ │ │ ├── entity │ │ │ │ │ │ └── QuartzJob.java │ │ │ │ │ ├── job │ │ │ │ │ │ ├── AsyncJob.java │ │ │ │ │ │ ├── SampleJob.java │ │ │ │ │ │ └── SampleParamJob.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── QuartzJobMapper.java │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ └── QuartzJobMapper.xml │ │ │ │ │ └── service │ │ │ │ │ │ ├── IQuartzJobService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── QuartzJobServiceImpl.java │ │ │ │ │ └── system │ │ │ │ │ ├── controller │ │ │ │ │ ├── CommonController.java │ │ │ │ │ ├── DuplicateCheckController.java │ │ │ │ │ ├── LoginController.java │ │ │ │ │ ├── SysAnnouncementController.java │ │ │ │ │ ├── SysAnnouncementSendController.java │ │ │ │ │ ├── SysCategoryController.java │ │ │ │ │ ├── SysCheckRuleController.java │ │ │ │ │ ├── SysDataLogController.java │ │ │ │ │ ├── SysDataSourceController.java │ │ │ │ │ ├── SysDepartController.java │ │ │ │ │ ├── SysDepartPermissionController.java │ │ │ │ │ ├── SysDepartRoleController.java │ │ │ │ │ ├── SysDictController.java │ │ │ │ │ ├── SysDictItemController.java │ │ │ │ │ ├── SysFillRuleController.java │ │ │ │ │ ├── SysGatewayRouteController.java │ │ │ │ │ ├── SysLogController.java │ │ │ │ │ ├── SysPermissionController.java │ │ │ │ │ ├── SysPositionController.java │ │ │ │ │ ├── SysRoleController.java │ │ │ │ │ ├── SysTenantController.java │ │ │ │ │ ├── SysUploadController.java │ │ │ │ │ ├── SysUserAgentController.java │ │ │ │ │ ├── SysUserController.java │ │ │ │ │ └── ThirdLoginController.java │ │ │ │ │ ├── entity │ │ │ │ │ ├── SysAnnouncement.java │ │ │ │ │ ├── SysAnnouncementSend.java │ │ │ │ │ ├── SysCategory.java │ │ │ │ │ ├── SysCheckRule.java │ │ │ │ │ ├── SysDataLog.java │ │ │ │ │ ├── SysDataSource.java │ │ │ │ │ ├── SysDepart.java │ │ │ │ │ ├── SysDepartPermission.java │ │ │ │ │ ├── SysDepartRole.java │ │ │ │ │ ├── SysDepartRolePermission.java │ │ │ │ │ ├── SysDepartRoleUser.java │ │ │ │ │ ├── SysDict.java │ │ │ │ │ ├── SysDictItem.java │ │ │ │ │ ├── SysFillRule.java │ │ │ │ │ ├── SysGatewayRoute.java │ │ │ │ │ ├── SysLog.java │ │ │ │ │ ├── SysPermission.java │ │ │ │ │ ├── SysPermissionDataRule.java │ │ │ │ │ ├── SysPosition.java │ │ │ │ │ ├── SysRole.java │ │ │ │ │ ├── SysRolePermission.java │ │ │ │ │ ├── SysTenant.java │ │ │ │ │ ├── SysThirdAccount.java │ │ │ │ │ ├── SysUser.java │ │ │ │ │ ├── SysUserAgent.java │ │ │ │ │ ├── SysUserDepart.java │ │ │ │ │ └── SysUserRole.java │ │ │ │ │ ├── mapper │ │ │ │ │ ├── SysAnnouncementMapper.java │ │ │ │ │ ├── SysAnnouncementSendMapper.java │ │ │ │ │ ├── SysCategoryMapper.java │ │ │ │ │ ├── SysCheckRuleMapper.java │ │ │ │ │ ├── SysDataLogMapper.java │ │ │ │ │ ├── SysDataSourceMapper.java │ │ │ │ │ ├── SysDepartMapper.java │ │ │ │ │ ├── SysDepartPermissionMapper.java │ │ │ │ │ ├── SysDepartRoleMapper.java │ │ │ │ │ ├── SysDepartRolePermissionMapper.java │ │ │ │ │ ├── SysDepartRoleUserMapper.java │ │ │ │ │ ├── SysDictItemMapper.java │ │ │ │ │ ├── SysDictMapper.java │ │ │ │ │ ├── SysFillRuleMapper.java │ │ │ │ │ ├── SysGatewayRouteMapper.java │ │ │ │ │ ├── SysLogMapper.java │ │ │ │ │ ├── SysPermissionDataRuleMapper.java │ │ │ │ │ ├── SysPermissionMapper.java │ │ │ │ │ ├── SysPositionMapper.java │ │ │ │ │ ├── SysRoleMapper.java │ │ │ │ │ ├── SysRolePermissionMapper.java │ │ │ │ │ ├── SysTenantMapper.java │ │ │ │ │ ├── SysThirdAccountMapper.java │ │ │ │ │ ├── SysUserAgentMapper.java │ │ │ │ │ ├── SysUserDepartMapper.java │ │ │ │ │ ├── SysUserMapper.java │ │ │ │ │ ├── SysUserRoleMapper.java │ │ │ │ │ └── xml │ │ │ │ │ │ ├── SysAnnouncementMapper.xml │ │ │ │ │ │ ├── SysAnnouncementSendMapper.xml │ │ │ │ │ │ ├── SysCategoryMapper.xml │ │ │ │ │ │ ├── SysCheckRuleMapper.xml │ │ │ │ │ │ ├── SysDataLogMapper.xml │ │ │ │ │ │ ├── SysDataSourceMapper.xml │ │ │ │ │ │ ├── SysDepartMapper.xml │ │ │ │ │ │ ├── SysDepartPermissionMapper.xml │ │ │ │ │ │ ├── SysDepartRoleMapper.xml │ │ │ │ │ │ ├── SysDepartRolePermissionMapper.xml │ │ │ │ │ │ ├── SysDepartRoleUserMapper.xml │ │ │ │ │ │ ├── SysDictItemMapper.xml │ │ │ │ │ │ ├── SysDictMapper.xml │ │ │ │ │ │ ├── SysFillRuleMapper.xml │ │ │ │ │ │ ├── SysGatewayRouteMapper.xml │ │ │ │ │ │ ├── SysLogMapper.xml │ │ │ │ │ │ ├── SysPermissionDataRuleMapper.xml │ │ │ │ │ │ ├── SysPermissionMapper.xml │ │ │ │ │ │ ├── SysPositionMapper.xml │ │ │ │ │ │ ├── SysTenantMapper.xml │ │ │ │ │ │ ├── SysThirdAccountMapper.xml │ │ │ │ │ │ ├── SysUserAgentMapper.xml │ │ │ │ │ │ ├── SysUserDepartMapper.xml │ │ │ │ │ │ └── SysUserMapper.xml │ │ │ │ │ ├── model │ │ │ │ │ ├── AnnouncementSendModel.java │ │ │ │ │ ├── DepartIdModel.java │ │ │ │ │ ├── DuplicateCheckVo.java │ │ │ │ │ ├── SysDepartTreeModel.java │ │ │ │ │ ├── SysDictTree.java │ │ │ │ │ ├── SysLoginModel.java │ │ │ │ │ ├── SysPermissionTree.java │ │ │ │ │ ├── SysUserSysDepartModel.java │ │ │ │ │ ├── ThirdLoginModel.java │ │ │ │ │ ├── TreeModel.java │ │ │ │ │ └── TreeSelectModel.java │ │ │ │ │ ├── rule │ │ │ │ │ ├── CategoryCodeRule.java │ │ │ │ │ ├── OrderNumberRule.java │ │ │ │ │ └── OrgCodeRule.java │ │ │ │ │ ├── service │ │ │ │ │ ├── ISysAnnouncementSendService.java │ │ │ │ │ ├── ISysAnnouncementService.java │ │ │ │ │ ├── ISysCategoryService.java │ │ │ │ │ ├── ISysCheckRuleService.java │ │ │ │ │ ├── ISysDataLogService.java │ │ │ │ │ ├── ISysDataSourceService.java │ │ │ │ │ ├── ISysDepartPermissionService.java │ │ │ │ │ ├── ISysDepartRolePermissionService.java │ │ │ │ │ ├── ISysDepartRoleService.java │ │ │ │ │ ├── ISysDepartRoleUserService.java │ │ │ │ │ ├── ISysDepartService.java │ │ │ │ │ ├── ISysDictItemService.java │ │ │ │ │ ├── ISysDictService.java │ │ │ │ │ ├── ISysFillRuleService.java │ │ │ │ │ ├── ISysGatewayRouteService.java │ │ │ │ │ ├── ISysLogService.java │ │ │ │ │ ├── ISysPermissionDataRuleService.java │ │ │ │ │ ├── ISysPermissionService.java │ │ │ │ │ ├── ISysPositionService.java │ │ │ │ │ ├── ISysRolePermissionService.java │ │ │ │ │ ├── ISysRoleService.java │ │ │ │ │ ├── ISysTenantService.java │ │ │ │ │ ├── ISysThirdAccountService.java │ │ │ │ │ ├── ISysUserAgentService.java │ │ │ │ │ ├── ISysUserDepartService.java │ │ │ │ │ ├── ISysUserRoleService.java │ │ │ │ │ ├── ISysUserService.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── ImportFileServiceImpl.java │ │ │ │ │ │ ├── SysAnnouncementSendServiceImpl.java │ │ │ │ │ │ ├── SysAnnouncementServiceImpl.java │ │ │ │ │ │ ├── SysBaseApiImpl.java │ │ │ │ │ │ ├── SysCategoryServiceImpl.java │ │ │ │ │ │ ├── SysCheckRuleServiceImpl.java │ │ │ │ │ │ ├── SysDataLogServiceImpl.java │ │ │ │ │ │ ├── SysDataSourceServiceImpl.java │ │ │ │ │ │ ├── SysDepartPermissionServiceImpl.java │ │ │ │ │ │ ├── SysDepartRolePermissionServiceImpl.java │ │ │ │ │ │ ├── SysDepartRoleServiceImpl.java │ │ │ │ │ │ ├── SysDepartRoleUserServiceImpl.java │ │ │ │ │ │ ├── SysDepartServiceImpl.java │ │ │ │ │ │ ├── SysDictItemServiceImpl.java │ │ │ │ │ │ ├── SysDictServiceImpl.java │ │ │ │ │ │ ├── SysFillRuleServiceImpl.java │ │ │ │ │ │ ├── SysGatewayRouteServiceImpl.java │ │ │ │ │ │ ├── SysLogServiceImpl.java │ │ │ │ │ │ ├── SysPermissionDataRuleImpl.java │ │ │ │ │ │ ├── SysPermissionServiceImpl.java │ │ │ │ │ │ ├── SysPositionServiceImpl.java │ │ │ │ │ │ ├── SysRolePermissionServiceImpl.java │ │ │ │ │ │ ├── SysRoleServiceImpl.java │ │ │ │ │ │ ├── SysTenantServiceImpl.java │ │ │ │ │ │ ├── SysThirdAccountServiceImpl.java │ │ │ │ │ │ ├── SysUserAgentServiceImpl.java │ │ │ │ │ │ ├── SysUserDepartServiceImpl.java │ │ │ │ │ │ ├── SysUserRoleServiceImpl.java │ │ │ │ │ │ └── SysUserServiceImpl.java │ │ │ │ │ ├── util │ │ │ │ │ ├── FindsDepartsChildrenUtil.java │ │ │ │ │ ├── PermissionDataUtil.java │ │ │ │ │ ├── RandImageUtil.java │ │ │ │ │ ├── SecurityUtil.java │ │ │ │ │ └── TenantContext.java │ │ │ │ │ └── vo │ │ │ │ │ ├── SysDepartUsersVO.java │ │ │ │ │ ├── SysDictPage.java │ │ │ │ │ ├── SysUserDepVo.java │ │ │ │ │ └── SysUserRoleVO.java │ │ │ └── resources │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ ├── application-test.yml │ │ │ │ ├── application.yml │ │ │ │ ├── banner.txt │ │ │ │ ├── jeecg │ │ │ │ ├── code-template-online │ │ │ │ │ ├── common │ │ │ │ │ │ ├── blob.ftl │ │ │ │ │ │ ├── init │ │ │ │ │ │ │ ├── initValue.ftl │ │ │ │ │ │ │ └── initValueSub.ftl │ │ │ │ │ │ ├── utils.ftl │ │ │ │ │ │ └── validatorRulesTemplate │ │ │ │ │ │ │ ├── core.ftl │ │ │ │ │ │ │ ├── main.ftl │ │ │ │ │ │ │ └── sub.ftl │ │ │ │ │ ├── default │ │ │ │ │ │ ├── one │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ │ └── ${entityName}.javai │ │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ │ └── ${entityName}Mapper.xml │ │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ │ └── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ ├── ${entityName}Form.vuei │ │ │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ │ │ └── ${entityName}Modal__Style#Drawer.vuei │ │ │ │ │ │ ├── onetomany │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ │ ├── ${entityName}.javai │ │ │ │ │ │ │ │ └── [1-n]Entity.javai │ │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ │ ├── [1-n]Mapper.javai │ │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.xml │ │ │ │ │ │ │ │ │ └── [1-n]Mapper.xml │ │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ │ ├── [1-n]Service.javai │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ │ ├── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ │ │ └── [1-n]ServiceImpl.javai │ │ │ │ │ │ │ │ ├── vo │ │ │ │ │ │ │ │ └── ${entityName}Page.javai │ │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ ├── ${entityName}Form.vuei │ │ │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ │ │ └── [1-n]Form.vuei │ │ │ │ │ │ └── tree │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ └── ${entityName}.javai │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ └── ${entityName}Mapper.xml │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ └── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── ${entityName}Modal.vuei │ │ │ │ │ ├── erp │ │ │ │ │ │ └── onetomany │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── ${entityName}.javai │ │ │ │ │ │ │ └── [1-n]Entity.javai │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ ├── [1-n]Mapper.javai │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.xml │ │ │ │ │ │ │ │ └── [1-n]Mapper.xml │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ ├── [1-n]Service.javai │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ │ └── [1-n]ServiceImpl.javai │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ ├── [1-n]List.vuei │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ │ └── [1-n]Modal.vuei │ │ │ │ │ ├── inner-table │ │ │ │ │ │ └── onetomany │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── ${entityName}.javai │ │ │ │ │ │ │ └── [1-n]Entity.javai │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ ├── [1-n]Mapper.javai │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.xml │ │ │ │ │ │ │ │ └── [1-n]Mapper.xml │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ ├── [1-n]Service.javai │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ │ └── [1-n]ServiceImpl.javai │ │ │ │ │ │ │ ├── vo │ │ │ │ │ │ │ └── ${entityName}Page.javai │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ ├── ${entityName}Form.vuei │ │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ │ └── [1-n]Form.vuei │ │ │ │ │ │ │ └── subTables │ │ │ │ │ │ │ └── [1-n]SubTable.vuei │ │ │ │ │ ├── jvxe │ │ │ │ │ │ └── onetomany │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── ${entityName}.javai │ │ │ │ │ │ │ └── [1-n]Entity.javai │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ ├── [1-n]Mapper.javai │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.xml │ │ │ │ │ │ │ │ └── [1-n]Mapper.xml │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ ├── [1-n]Service.javai │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ │ └── [1-n]ServiceImpl.javai │ │ │ │ │ │ │ ├── vo │ │ │ │ │ │ │ └── ${entityName}Page.javai │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── ${entityName}Form.vuei │ │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ │ └── [1-n]Form.vuei │ │ │ │ │ └── tab │ │ │ │ │ │ └── onetomany │ │ │ │ │ │ └── java │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── ${entityName}.javai │ │ │ │ │ │ └── [1-n]Entity.javai │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ ├── [1-n]Mapper.javai │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── ${entityName}Mapper.xml │ │ │ │ │ │ │ └── [1-n]Mapper.xml │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ ├── [1-n]Service.javai │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ └── [1-n]ServiceImpl.javai │ │ │ │ │ │ ├── vo │ │ │ │ │ │ └── ${entityName}Page.javai │ │ │ │ │ │ └── vue │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ └── modules │ │ │ │ │ │ ├── ${entityName}Form.vuei │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ └── [1-n]Form.vuei │ │ │ │ ├── code-template │ │ │ │ │ ├── one │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ └── ${entityName}.javai │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ └── ${entityName}Mapper.xml │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ └── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ │ └── ${entityName}Modal__Style#Drawer.vuei │ │ │ │ │ ├── one2 │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ │ └── ${entityName}.javai │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ └── ${entityName}Mapper.xml │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ └── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ │ └── ${entityName}Modal__Style#Drawer.vuei │ │ │ │ │ ├── onetomany │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── ${entityName}.javai │ │ │ │ │ │ │ └── [1-n]Entity.javai │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ │ ├── [1-n]Mapper.javai │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ ├── ${entityName}Mapper.xml │ │ │ │ │ │ │ │ └── [1-n]Mapper.xml │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ │ ├── [1-n]Service.javai │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ │ └── [1-n]ServiceImpl.javai │ │ │ │ │ │ │ ├── vo │ │ │ │ │ │ │ └── ${entityName}Page.javai │ │ │ │ │ │ │ └── vue │ │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── ${entityName}Form.vuei │ │ │ │ │ │ │ └── ${entityName}Modal.vuei │ │ │ │ │ └── onetomany2 │ │ │ │ │ │ └── java │ │ │ │ │ │ └── ${bussiPackage} │ │ │ │ │ │ └── ${entityPackage} │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── ${entityName}Controller.javai │ │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── ${entityName}.javai │ │ │ │ │ │ └── [1-n]Entity.javai │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── ${entityName}Mapper.javai │ │ │ │ │ │ ├── [1-n]Mapper.javai │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── ${entityName}Mapper.xml │ │ │ │ │ │ │ └── [1-n]Mapper.xml │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── I${entityName}Service.javai │ │ │ │ │ │ ├── [1-n]Service.javai │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── ${entityName}ServiceImpl.javai │ │ │ │ │ │ │ └── [1-n]ServiceImpl.javai │ │ │ │ │ │ ├── vo │ │ │ │ │ │ └── ${entityName}Page.javai │ │ │ │ │ │ └── vue │ │ │ │ │ │ ├── ${entityName}List.vuei │ │ │ │ │ │ ├── [1-n]List.vuei │ │ │ │ │ │ └── modules │ │ │ │ │ │ ├── ${entityName}Modal.vuei │ │ │ │ │ │ └── [1-n]Modal.vuei │ │ │ │ ├── jeecg_config.properties │ │ │ │ └── jeecg_database.properties │ │ │ │ ├── logback-spring.xml │ │ │ │ ├── static │ │ │ │ ├── demo1.html │ │ │ │ ├── generic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── build │ │ │ │ │ │ ├── pdf.js │ │ │ │ │ │ └── pdf.worker.js │ │ │ │ │ └── web │ │ │ │ │ │ ├── cmaps │ │ │ │ │ │ ├── 78-EUC-H.bcmap │ │ │ │ │ │ ├── 78-EUC-V.bcmap │ │ │ │ │ │ ├── 78-H.bcmap │ │ │ │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ │ │ │ ├── 78-V.bcmap │ │ │ │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ │ │ │ ├── Add-H.bcmap │ │ │ │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ │ │ │ ├── Add-V.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ │ │ │ ├── B5-H.bcmap │ │ │ │ │ │ ├── B5-V.bcmap │ │ │ │ │ │ ├── B5pc-H.bcmap │ │ │ │ │ │ ├── B5pc-V.bcmap │ │ │ │ │ │ ├── CNS-EUC-H.bcmap │ │ │ │ │ │ ├── CNS-EUC-V.bcmap │ │ │ │ │ │ ├── CNS1-H.bcmap │ │ │ │ │ │ ├── CNS1-V.bcmap │ │ │ │ │ │ ├── CNS2-H.bcmap │ │ │ │ │ │ ├── CNS2-V.bcmap │ │ │ │ │ │ ├── ETHK-B5-H.bcmap │ │ │ │ │ │ ├── ETHK-B5-V.bcmap │ │ │ │ │ │ ├── ETen-B5-H.bcmap │ │ │ │ │ │ ├── ETen-B5-V.bcmap │ │ │ │ │ │ ├── ETenms-B5-H.bcmap │ │ │ │ │ │ ├── ETenms-B5-V.bcmap │ │ │ │ │ │ ├── EUC-H.bcmap │ │ │ │ │ │ ├── EUC-V.bcmap │ │ │ │ │ │ ├── Ext-H.bcmap │ │ │ │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ │ │ │ ├── Ext-V.bcmap │ │ │ │ │ │ ├── GB-EUC-H.bcmap │ │ │ │ │ │ ├── GB-EUC-V.bcmap │ │ │ │ │ │ ├── GB-H.bcmap │ │ │ │ │ │ ├── GB-V.bcmap │ │ │ │ │ │ ├── GBK-EUC-H.bcmap │ │ │ │ │ │ ├── GBK-EUC-V.bcmap │ │ │ │ │ │ ├── GBK2K-H.bcmap │ │ │ │ │ │ ├── GBK2K-V.bcmap │ │ │ │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ │ │ │ ├── GBT-EUC-H.bcmap │ │ │ │ │ │ ├── GBT-EUC-V.bcmap │ │ │ │ │ │ ├── GBT-H.bcmap │ │ │ │ │ │ ├── GBT-V.bcmap │ │ │ │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ │ │ │ ├── H.bcmap │ │ │ │ │ │ ├── HKdla-B5-H.bcmap │ │ │ │ │ │ ├── HKdla-B5-V.bcmap │ │ │ │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ │ │ │ ├── HKm314-B5-H.bcmap │ │ │ │ │ │ ├── HKm314-B5-V.bcmap │ │ │ │ │ │ ├── HKm471-B5-H.bcmap │ │ │ │ │ │ ├── HKm471-B5-V.bcmap │ │ │ │ │ │ ├── HKscs-B5-H.bcmap │ │ │ │ │ │ ├── HKscs-B5-V.bcmap │ │ │ │ │ │ ├── Hankaku.bcmap │ │ │ │ │ │ ├── Hiragana.bcmap │ │ │ │ │ │ ├── KSC-EUC-H.bcmap │ │ │ │ │ │ ├── KSC-EUC-V.bcmap │ │ │ │ │ │ ├── KSC-H.bcmap │ │ │ │ │ │ ├── KSC-Johab-H.bcmap │ │ │ │ │ │ ├── KSC-Johab-V.bcmap │ │ │ │ │ │ ├── KSC-V.bcmap │ │ │ │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ │ │ │ ├── Katakana.bcmap │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NWP-H.bcmap │ │ │ │ │ │ ├── NWP-V.bcmap │ │ │ │ │ │ ├── RKSJ-H.bcmap │ │ │ │ │ │ ├── RKSJ-V.bcmap │ │ │ │ │ │ ├── Roman.bcmap │ │ │ │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ │ │ │ ├── V.bcmap │ │ │ │ │ │ └── WP-Symbol.bcmap │ │ │ │ │ │ ├── compatibility.js │ │ │ │ │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ │ │ │ │ ├── debugger.js │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── annotation-check.svg │ │ │ │ │ │ ├── annotation-comment.svg │ │ │ │ │ │ ├── annotation-help.svg │ │ │ │ │ │ ├── annotation-insert.svg │ │ │ │ │ │ ├── annotation-key.svg │ │ │ │ │ │ ├── annotation-newparagraph.svg │ │ │ │ │ │ ├── annotation-noicon.svg │ │ │ │ │ │ ├── annotation-note.svg │ │ │ │ │ │ ├── annotation-paragraph.svg │ │ │ │ │ │ ├── findbarButton-next-rtl.png │ │ │ │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ │ │ │ ├── findbarButton-next.png │ │ │ │ │ │ ├── findbarButton-next@2x.png │ │ │ │ │ │ ├── findbarButton-previous-rtl.png │ │ │ │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ │ │ │ ├── findbarButton-previous.png │ │ │ │ │ │ ├── findbarButton-previous@2x.png │ │ │ │ │ │ ├── grab.cur │ │ │ │ │ │ ├── grabbing.cur │ │ │ │ │ │ ├── loading-icon.gif │ │ │ │ │ │ ├── loading-small.png │ │ │ │ │ │ ├── loading-small@2x.png │ │ │ │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ │ │ │ ├── shadow.png │ │ │ │ │ │ ├── texture.png │ │ │ │ │ │ ├── toolbarButton-bookmark.png │ │ │ │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ │ │ │ ├── toolbarButton-download.png │ │ │ │ │ │ ├── toolbarButton-download@2x.png │ │ │ │ │ │ ├── toolbarButton-menuArrows.png │ │ │ │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ │ │ │ ├── toolbarButton-openFile.png │ │ │ │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ │ │ │ ├── toolbarButton-pageDown.png │ │ │ │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ │ │ │ ├── toolbarButton-pageUp.png │ │ │ │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ │ │ │ ├── toolbarButton-presentationMode.png │ │ │ │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ │ │ │ ├── toolbarButton-print.png │ │ │ │ │ │ ├── toolbarButton-print@2x.png │ │ │ │ │ │ ├── toolbarButton-search.png │ │ │ │ │ │ ├── toolbarButton-search@2x.png │ │ │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ │ │ │ ├── toolbarButton-viewAttachments@2x.png │ │ │ │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ │ │ │ ├── toolbarButton-viewOutline.png │ │ │ │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ │ │ │ ├── toolbarButton-zoomIn.png │ │ │ │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ │ │ │ ├── toolbarButton-zoomOut.png │ │ │ │ │ │ └── toolbarButton-zoomOut@2x.png │ │ │ │ │ │ ├── l10n.js │ │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── locale.properties │ │ │ │ │ │ └── zh-CN │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── viewer.css │ │ │ │ │ │ ├── viewer.html │ │ │ │ │ │ └── viewer.js │ │ │ │ └── view │ │ │ │ │ └── userlist.html │ │ │ │ └── templates │ │ │ │ ├── demo3.ftl │ │ │ │ ├── pdfPreviewIframe.ftl │ │ │ │ └── thirdLogin.ftl │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jeecg │ │ │ ├── SampleTest.java │ │ │ ├── SecurityToolsTest.java │ │ │ └── modules │ │ │ ├── online │ │ │ └── desform │ │ │ │ └── test │ │ │ │ ├── DesformApiTest.java │ │ │ │ └── OnlineApiTest.java │ │ │ └── system │ │ │ └── test │ │ │ └── SysUserTest.java │ ├── jeecg-boot-starter │ │ ├── jeecg-boot-starter-cloud │ │ │ ├── nacos │ │ │ │ ├── jeecg-dev.yaml │ │ │ │ ├── jeecg-gateway-router.json │ │ │ │ └── jeecg.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ ├── config │ │ │ │ │ └── FeignConfig.java │ │ │ │ │ └── starter │ │ │ │ │ └── cloud │ │ │ │ │ ├── config │ │ │ │ │ └── PersonBeanConfiguration.java │ │ │ │ │ └── feign │ │ │ │ │ ├── IJeecgFeignService.java │ │ │ │ │ └── impl │ │ │ │ │ └── JeecgFeignService.java │ │ │ │ └── resources │ │ │ │ └── bootstrap.yml │ │ ├── jeecg-boot-starter-job │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── xxl │ │ │ │ │ │ └── job │ │ │ │ │ │ └── core │ │ │ │ │ │ └── executor │ │ │ │ │ │ └── XxlJobExecutor.java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ └── boot │ │ │ │ │ └── starter │ │ │ │ │ └── job │ │ │ │ │ ├── config │ │ │ │ │ └── XxlJobConfiguration.java │ │ │ │ │ └── prop │ │ │ │ │ └── XxlJobProperties.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring.factories │ │ ├── jeecg-boot-starter-lock │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jeecg │ │ │ │ │ │ └── boot │ │ │ │ │ │ └── starter │ │ │ │ │ │ └── lock │ │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── JLock.java │ │ │ │ │ │ ├── JRepeat.java │ │ │ │ │ │ └── LockConstant.java │ │ │ │ │ │ ├── aspect │ │ │ │ │ │ ├── BaseAspect.java │ │ │ │ │ │ ├── DistributedLockHandler.java │ │ │ │ │ │ └── RepeatSubmitAspect.java │ │ │ │ │ │ ├── client │ │ │ │ │ │ └── RedissonLockClient.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── RedissonConfiguration.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── RedissonManager.java │ │ │ │ │ │ └── strategy │ │ │ │ │ │ │ ├── RedissonConfigStrategy.java │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── ClusterRedissonConfigStrategyImpl.java │ │ │ │ │ │ │ ├── MasterslaveRedissonConfigStrategyImpl.java │ │ │ │ │ │ │ ├── SentinelRedissonConfigStrategyImpl.java │ │ │ │ │ │ │ └── StandaloneRedissonConfigStrategyImpl.java │ │ │ │ │ │ ├── enums │ │ │ │ │ │ ├── GlobalConstant.java │ │ │ │ │ │ ├── LockModel.java │ │ │ │ │ │ └── RedisConnectionType.java │ │ │ │ │ │ └── prop │ │ │ │ │ │ └── RedissonProperties.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── spring.factories │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ └── boot │ │ │ │ │ └── starter │ │ │ │ │ └── lock │ │ │ │ │ └── test │ │ │ │ │ ├── LockService.java │ │ │ │ │ ├── LockTest.java │ │ │ │ │ ├── LockTestApplication.java │ │ │ │ │ └── TestUser.java │ │ │ │ └── resources │ │ │ │ └── application.yml │ │ ├── jeecg-boot-starter-rabbitmq │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jeecg │ │ │ │ └── boot │ │ │ │ └── starter │ │ │ │ └── rabbitmq │ │ │ │ ├── client │ │ │ │ └── RabbitMqClient.java │ │ │ │ ├── config │ │ │ │ └── RabbitMqConfig.java │ │ │ │ ├── core │ │ │ │ ├── BaseRabbiMqHandler.java │ │ │ │ └── MapMessageConverter.java │ │ │ │ ├── event │ │ │ │ ├── BaseApplicationEvent.java │ │ │ │ ├── EventObj.java │ │ │ │ ├── JeecgBusEventHandler.java │ │ │ │ └── JeecgRemoteApplicationEvent.java │ │ │ │ ├── exchange │ │ │ │ └── DelayExchangeBuilder.java │ │ │ │ └── listenter │ │ │ │ └── MqListener.java │ │ └── pom.xml │ ├── jeecg-cloud-module │ │ ├── docker-compose.yml │ │ ├── jeecg-cloud-gateway │ │ │ ├── Dockerfile │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ ├── JeecgGatewayApplication.java │ │ │ │ │ ├── config │ │ │ │ │ ├── GatewayRoutersConfiguration.java │ │ │ │ │ ├── RateLimiterConfiguration.java │ │ │ │ │ └── RouterDataType.java │ │ │ │ │ ├── fallback │ │ │ │ │ └── FallbackController.java │ │ │ │ │ ├── filter │ │ │ │ │ └── GlobalAccessTokenFilter.java │ │ │ │ │ ├── handler │ │ │ │ │ ├── HystrixFallbackHandler.java │ │ │ │ │ ├── LoderRouderHandler.java │ │ │ │ │ ├── MySwaggerResourceProvider.java │ │ │ │ │ └── SwaggerResourceController.java │ │ │ │ │ └── loader │ │ │ │ │ ├── DynamicRouteLoader.java │ │ │ │ │ ├── DynamicRouteService.java │ │ │ │ │ └── GatewayRouteVo.java │ │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ └── logback-spring.xml │ │ ├── jeecg-cloud-monitor │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ └── monitor │ │ │ │ │ ├── JeecgMonitorApplication.java │ │ │ │ │ └── config │ │ │ │ │ └── SecuritySecureConfig.java │ │ │ │ └── resources │ │ │ │ └── application.yml │ │ ├── jeecg-cloud-nacos │ │ │ ├── Dockerfile │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── alibaba │ │ │ │ │ └── nacos │ │ │ │ │ └── JeecgNacosApplication.java │ │ │ │ └── resources │ │ │ │ └── application.yml │ │ ├── jeecg-cloud-system-start │ │ │ ├── Dockerfile │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jeecg │ │ │ │ │ ├── JeecgSystemCloudApplication.java │ │ │ │ │ └── modules │ │ │ │ │ └── cloud │ │ │ │ │ ├── constant │ │ │ │ │ └── CloudConstant.java │ │ │ │ │ ├── ebus │ │ │ │ │ └── DemoBusEvent.java │ │ │ │ │ ├── feign │ │ │ │ │ ├── controller │ │ │ │ │ │ └── JeecgTestFeignController.java │ │ │ │ │ └── feign │ │ │ │ │ │ ├── JeecgTestClient.java │ │ │ │ │ │ ├── JeecgTestClientDyn.java │ │ │ │ │ │ └── fallback │ │ │ │ │ │ └── JeecgTestClientFallback.java │ │ │ │ │ ├── lock │ │ │ │ │ └── DemoLockTest.java │ │ │ │ │ ├── rabbitmq │ │ │ │ │ ├── HelloReceiver1.java │ │ │ │ │ ├── HelloReceiver2.java │ │ │ │ │ ├── HelloReceiver3.java │ │ │ │ │ └── HelloTimeReceiver.java │ │ │ │ │ └── xxljob │ │ │ │ │ └── DemoJobHandler.java │ │ │ │ └── resources │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application.yml │ │ │ │ └── logback-spring.xml │ │ ├── jeecg-cloud-xxljob │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── db │ │ │ │ │ └── tables_xxl_job.sql │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── xxl │ │ │ │ │ └── job │ │ │ │ │ └── admin │ │ │ │ │ ├── XxlJobAdminApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── IndexController.java │ │ │ │ │ ├── JobApiController.java │ │ │ │ │ ├── JobCodeController.java │ │ │ │ │ ├── JobGroupController.java │ │ │ │ │ ├── JobInfoController.java │ │ │ │ │ ├── JobLogController.java │ │ │ │ │ ├── UserController.java │ │ │ │ │ ├── annotation │ │ │ │ │ │ └── PermissionLimit.java │ │ │ │ │ ├── interceptor │ │ │ │ │ │ ├── CookieInterceptor.java │ │ │ │ │ │ ├── PermissionInterceptor.java │ │ │ │ │ │ └── WebMvcConfig.java │ │ │ │ │ └── resolver │ │ │ │ │ │ └── WebExceptionResolver.java │ │ │ │ │ ├── core │ │ │ │ │ ├── alarm │ │ │ │ │ │ ├── JobAlarm.java │ │ │ │ │ │ ├── JobAlarmer.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── EmailJobAlarm.java │ │ │ │ │ ├── conf │ │ │ │ │ │ └── XxlJobAdminConfig.java │ │ │ │ │ ├── cron │ │ │ │ │ │ └── CronExpression.java │ │ │ │ │ ├── exception │ │ │ │ │ │ └── XxlJobException.java │ │ │ │ │ ├── model │ │ │ │ │ │ ├── XxlJobGroup.java │ │ │ │ │ │ ├── XxlJobInfo.java │ │ │ │ │ │ ├── XxlJobLog.java │ │ │ │ │ │ ├── XxlJobLogGlue.java │ │ │ │ │ │ ├── XxlJobLogReport.java │ │ │ │ │ │ ├── XxlJobRegistry.java │ │ │ │ │ │ └── XxlJobUser.java │ │ │ │ │ ├── old │ │ │ │ │ │ ├── RemoteHttpJobBean.java │ │ │ │ │ │ ├── XxlJobDynamicScheduler.java │ │ │ │ │ │ └── XxlJobThreadPool.java │ │ │ │ │ ├── route │ │ │ │ │ │ ├── ExecutorRouteStrategyEnum.java │ │ │ │ │ │ ├── ExecutorRouter.java │ │ │ │ │ │ └── strategy │ │ │ │ │ │ │ ├── ExecutorRouteBusyover.java │ │ │ │ │ │ │ ├── ExecutorRouteConsistentHash.java │ │ │ │ │ │ │ ├── ExecutorRouteFailover.java │ │ │ │ │ │ │ ├── ExecutorRouteFirst.java │ │ │ │ │ │ │ ├── ExecutorRouteLFU.java │ │ │ │ │ │ │ ├── ExecutorRouteLRU.java │ │ │ │ │ │ │ ├── ExecutorRouteLast.java │ │ │ │ │ │ │ ├── ExecutorRouteRandom.java │ │ │ │ │ │ │ └── ExecutorRouteRound.java │ │ │ │ │ ├── scheduler │ │ │ │ │ │ └── XxlJobScheduler.java │ │ │ │ │ ├── thread │ │ │ │ │ │ ├── JobFailMonitorHelper.java │ │ │ │ │ │ ├── JobLogReportHelper.java │ │ │ │ │ │ ├── JobLosedMonitorHelper.java │ │ │ │ │ │ ├── JobRegistryMonitorHelper.java │ │ │ │ │ │ ├── JobScheduleHelper.java │ │ │ │ │ │ └── JobTriggerPoolHelper.java │ │ │ │ │ ├── trigger │ │ │ │ │ │ ├── TriggerTypeEnum.java │ │ │ │ │ │ └── XxlJobTrigger.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── CookieUtil.java │ │ │ │ │ │ ├── FtlUtil.java │ │ │ │ │ │ ├── I18nUtil.java │ │ │ │ │ │ ├── JacksonUtil.java │ │ │ │ │ │ └── LocalCacheUtil.java │ │ │ │ │ ├── dao │ │ │ │ │ ├── XxlJobGroupDao.java │ │ │ │ │ ├── XxlJobInfoDao.java │ │ │ │ │ ├── XxlJobLogDao.java │ │ │ │ │ ├── XxlJobLogGlueDao.java │ │ │ │ │ ├── XxlJobLogReportDao.java │ │ │ │ │ ├── XxlJobRegistryDao.java │ │ │ │ │ └── XxlJobUserDao.java │ │ │ │ │ └── service │ │ │ │ │ ├── LoginService.java │ │ │ │ │ ├── XxlJobService.java │ │ │ │ │ └── impl │ │ │ │ │ ├── AdminBizImpl.java │ │ │ │ │ └── XxlJobServiceImpl.java │ │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ ├── i18n │ │ │ │ ├── message_en.properties │ │ │ │ ├── message_zh_CN.properties │ │ │ │ └── message_zh_TC.properties │ │ │ │ ├── logback.xml │ │ │ │ ├── mybatis-mapper │ │ │ │ ├── XxlJobGroupMapper.xml │ │ │ │ ├── XxlJobInfoMapper.xml │ │ │ │ ├── XxlJobLogGlueMapper.xml │ │ │ │ ├── XxlJobLogMapper.xml │ │ │ │ ├── XxlJobLogReportMapper.xml │ │ │ │ ├── XxlJobRegistryMapper.xml │ │ │ │ └── XxlJobUserMapper.xml │ │ │ │ ├── static │ │ │ │ ├── adminlte │ │ │ │ │ ├── bower_components │ │ │ │ │ │ ├── Ionicons │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── ionicons.min.css │ │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ │ │ │ ├── ionicons.svg │ │ │ │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ │ │ │ └── ionicons.woff │ │ │ │ │ │ ├── PACE │ │ │ │ │ │ │ ├── pace.min.js │ │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ │ └── blue │ │ │ │ │ │ │ │ └── pace-theme-flash.css │ │ │ │ │ │ ├── bootstrap-daterangepicker │ │ │ │ │ │ │ ├── daterangepicker.css │ │ │ │ │ │ │ └── daterangepicker.js │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ │ │ ├── datatables.net-bs │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── dataTables.bootstrap.min.js │ │ │ │ │ │ ├── datatables.net │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── jquery.dataTables.min.js │ │ │ │ │ │ ├── fastclick │ │ │ │ │ │ │ └── fastclick.js │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ │ ├── jquery-slimscroll │ │ │ │ │ │ │ └── jquery.slimscroll.min.js │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── moment │ │ │ │ │ │ │ └── moment.min.js │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── AdminLTE.min.css │ │ │ │ │ │ │ └── skins │ │ │ │ │ │ │ │ └── _all-skins.min.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── adminlte.min.js │ │ │ │ │ └── plugins │ │ │ │ │ │ └── iCheck │ │ │ │ │ │ ├── icheck.min.js │ │ │ │ │ │ └── square │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ └── blue@2x.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ │ ├── common.1.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── jobcode.index.1.js │ │ │ │ │ ├── jobgroup.index.1.js │ │ │ │ │ ├── jobinfo.index.1.js │ │ │ │ │ ├── joblog.detail.1.js │ │ │ │ │ ├── joblog.index.1.js │ │ │ │ │ ├── login.1.js │ │ │ │ │ └── user.index.1.js │ │ │ │ └── plugins │ │ │ │ │ ├── codemirror │ │ │ │ │ ├── addon │ │ │ │ │ │ └── hint │ │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ │ └── show-hint.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ └── codemirror.js │ │ │ │ │ └── mode │ │ │ │ │ │ ├── clike │ │ │ │ │ │ └── clike.js │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ └── javascript.js │ │ │ │ │ │ ├── php │ │ │ │ │ │ └── php.js │ │ │ │ │ │ ├── powershell │ │ │ │ │ │ └── powershell.js │ │ │ │ │ │ ├── python │ │ │ │ │ │ └── python.js │ │ │ │ │ │ └── shell │ │ │ │ │ │ └── shell.js │ │ │ │ │ ├── cronGen │ │ │ │ │ ├── cronGen.js │ │ │ │ │ └── cronGen_en.js │ │ │ │ │ ├── echarts │ │ │ │ │ └── echarts.common.min.js │ │ │ │ │ ├── jquery │ │ │ │ │ ├── jquery.cookie.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ └── layer │ │ │ │ │ ├── layer.js │ │ │ │ │ └── theme │ │ │ │ │ └── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ │ └── templates │ │ │ │ ├── common │ │ │ │ ├── common.exception.ftl │ │ │ │ └── common.macro.ftl │ │ │ │ ├── help.ftl │ │ │ │ ├── index.ftl │ │ │ │ ├── jobcode │ │ │ │ └── jobcode.index.ftl │ │ │ │ ├── jobgroup │ │ │ │ └── jobgroup.index.ftl │ │ │ │ ├── jobinfo │ │ │ │ └── jobinfo.index.ftl │ │ │ │ ├── joblog │ │ │ │ ├── joblog.detail.ftl │ │ │ │ └── joblog.index.ftl │ │ │ │ ├── login.ftl │ │ │ │ └── user │ │ │ │ └── user.index.ftl │ │ └── pom.xml │ └── pom.xml ├── wise-hexo │ ├── .github │ │ └── dependabot.yml │ ├── .npmignore │ ├── _config.landscape.yml │ ├── _config.yml │ ├── package-lock.json │ ├── package.json │ ├── scaffolds │ │ ├── draft.md │ │ ├── page.md │ │ └── post.md │ ├── source │ │ └── _posts │ │ │ └── hello-world.md │ └── themes │ │ ├── .gitkeep │ │ └── landscape │ │ ├── .npmignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _config.yml │ │ ├── languages │ │ ├── de.yml │ │ ├── default.yml │ │ ├── es.yml │ │ ├── fr.yml │ │ ├── ja.yml │ │ ├── ko.yml │ │ ├── nl.yml │ │ ├── no.yml │ │ ├── pt.yml │ │ ├── ru.yml │ │ ├── zh-CN.yml │ │ └── zh-TW.yml │ │ ├── layout │ │ ├── _partial │ │ │ ├── after-footer.ejs │ │ │ ├── archive-post.ejs │ │ │ ├── archive.ejs │ │ │ ├── article.ejs │ │ │ ├── footer.ejs │ │ │ ├── gauges-analytics.ejs │ │ │ ├── google-analytics.ejs │ │ │ ├── head.ejs │ │ │ ├── header.ejs │ │ │ ├── mobile-nav.ejs │ │ │ ├── post │ │ │ │ ├── category.ejs │ │ │ │ ├── date.ejs │ │ │ │ ├── gallery.ejs │ │ │ │ ├── nav.ejs │ │ │ │ ├── tag.ejs │ │ │ │ └── title.ejs │ │ │ └── sidebar.ejs │ │ ├── _widget │ │ │ ├── archive.ejs │ │ │ ├── category.ejs │ │ │ ├── recent_posts.ejs │ │ │ ├── tag.ejs │ │ │ └── tagcloud.ejs │ │ ├── archive.ejs │ │ ├── category.ejs │ │ ├── index.ejs │ │ ├── layout.ejs │ │ ├── page.ejs │ │ ├── post.ejs │ │ └── tag.ejs │ │ ├── package.json │ │ ├── scripts │ │ └── fancybox.js │ │ └── source │ │ ├── css │ │ ├── _extend.styl │ │ ├── _partial │ │ │ ├── archive.styl │ │ │ ├── article.styl │ │ │ ├── comment.styl │ │ │ ├── footer.styl │ │ │ ├── header.styl │ │ │ ├── highlight.styl │ │ │ ├── mobile.styl │ │ │ ├── sidebar-aside.styl │ │ │ ├── sidebar-bottom.styl │ │ │ └── sidebar.styl │ │ ├── _util │ │ │ ├── grid.styl │ │ │ └── mixin.styl │ │ ├── _variables.styl │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── images │ │ │ └── banner.jpg │ │ └── style.styl │ │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancybox_loading.gif │ │ ├── fancybox_loading@2x.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ ├── fancybox_sprite@2x.png │ │ ├── helpers │ │ │ ├── fancybox_buttons.png │ │ │ ├── jquery.fancybox-buttons.css │ │ │ ├── jquery.fancybox-buttons.js │ │ │ ├── jquery.fancybox-media.js │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ └── jquery.fancybox-thumbs.js │ │ ├── jquery.fancybox.css │ │ ├── jquery.fancybox.js │ │ └── jquery.fancybox.pack.js │ │ └── js │ │ └── script.js └── 后台管理系统和后台java服务.txt ├── WISE-Mini ├── app.js ├── app.json ├── app.wxss ├── cloudfunctions │ └── getOpenData │ │ ├── config.json │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── colorui │ ├── animation.wxss │ ├── components │ │ ├── cu-custom.js │ │ ├── cu-custom.json │ │ ├── cu-custom.wxml │ │ └── cu-custom.wxss │ ├── icon.wxss │ └── main.wxss ├── depend │ ├── mp-html │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── node │ │ │ ├── node.js │ │ │ ├── node.json │ │ │ ├── node.wxml │ │ │ └── node.wxss │ │ └── parser.js │ └── wux-weapp │ │ ├── cell-group │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── cell │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── circle │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── config.json │ │ ├── fab-button │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── helpers │ │ ├── arrayTreeFilter.js │ │ ├── baseComponent.js │ │ ├── checkIPhoneX.js │ │ ├── classNames.js │ │ ├── colors.js │ │ ├── compareVersion.js │ │ ├── computedBehavior.js │ │ ├── createFieldsStore.js │ │ ├── debounce.js │ │ ├── eventsMixin.js │ │ ├── funcBehavior.js │ │ ├── gestures.js │ │ ├── isEmpty.js │ │ ├── mergeOptionsToData.js │ │ ├── popupMixin.js │ │ ├── relationsBehavior.js │ │ ├── safeAreaBehavior.js │ │ ├── safeSetDataBehavior.js │ │ ├── shallowEqual.js │ │ └── styleToCssString.js │ │ ├── index.js │ │ └── styles │ │ └── index.wxss ├── package-lock.json ├── package.json ├── packageA │ ├── activity │ │ ├── activity.js │ │ ├── activity.json │ │ ├── activity.wxml │ │ └── activity.wxss │ ├── activitydetail │ │ ├── activitydetail.js │ │ ├── activitydetail.json │ │ ├── activitydetail.wxml │ │ └── activitydetail.wxss │ └── utils │ │ └── formatutil.js ├── pages │ ├── chat │ │ ├── chat.js │ │ ├── chat.json │ │ ├── chat.wxml │ │ └── chat.wxss │ ├── components │ │ ├── animation │ │ │ ├── animation.js │ │ │ ├── animation.json │ │ │ ├── animation.wxml │ │ │ └── animation.wxss │ │ ├── button │ │ │ ├── button.js │ │ │ ├── button.json │ │ │ ├── button.wxml │ │ │ ├── button.wxss │ │ │ ├── design.js │ │ │ ├── design.json │ │ │ ├── design.wxml │ │ │ └── design.wxss │ │ ├── chat │ │ │ └── chatdetail │ │ │ │ ├── chatdetail.js │ │ │ │ ├── chatdetail.json │ │ │ │ ├── chatdetail.wxml │ │ │ │ └── chatdetail.wxss │ │ ├── drawer │ │ │ ├── drawer.js │ │ │ ├── drawer.json │ │ │ ├── drawer.wxml │ │ │ └── drawer.wxss │ │ ├── fabbutton │ │ │ ├── fabbutton.js │ │ │ ├── fabbutton.json │ │ │ ├── fabbutton.wxml │ │ │ └── fabbutton.wxss │ │ ├── feedback │ │ │ ├── feedback.js │ │ │ ├── feedback.json │ │ │ ├── feedback.wxml │ │ │ └── feedback.wxss │ │ ├── feedbackform │ │ │ ├── feedbackform.js │ │ │ ├── feedbackform.json │ │ │ ├── feedbackform.wxml │ │ │ └── feedbackform.wxss │ │ ├── issue │ │ │ ├── issue.js │ │ │ ├── issue.json │ │ │ ├── issue.wxml │ │ │ └── issue.wxss │ │ ├── list │ │ │ ├── list.js │ │ │ ├── list.json │ │ │ ├── list.wxml │ │ │ └── list.wxss │ │ ├── mine │ │ │ ├── admin │ │ │ │ ├── admin.js │ │ │ │ ├── admin.json │ │ │ │ ├── admin.wxml │ │ │ │ └── admin.wxss │ │ │ ├── circlefriends │ │ │ │ ├── circlefriends.js │ │ │ │ ├── circlefriends.json │ │ │ │ ├── circlefriends.wxml │ │ │ │ └── circlefriends.wxss │ │ │ ├── joinour │ │ │ │ ├── joinour.js │ │ │ │ ├── joinour.json │ │ │ │ ├── joinour.wxml │ │ │ │ └── joinour.wxss │ │ │ ├── officialaccounts │ │ │ │ ├── officialaccounts.js │ │ │ │ ├── officialaccounts.json │ │ │ │ ├── officialaccounts.wxml │ │ │ │ └── officialaccounts.wxss │ │ │ ├── publishtopics │ │ │ │ ├── publishtopics.js │ │ │ │ ├── publishtopics.json │ │ │ │ ├── publishtopics.wxml │ │ │ │ └── publishtopics.wxss │ │ │ ├── regionclaim │ │ │ │ ├── regionclaim.js │ │ │ │ ├── regionclaim.json │ │ │ │ ├── regionclaim.wxml │ │ │ │ └── regionclaim.wxss │ │ │ ├── scanntopics │ │ │ │ ├── scanntopics.js │ │ │ │ ├── scanntopics.json │ │ │ │ ├── scanntopics.wxml │ │ │ │ └── scanntopics.wxss │ │ │ ├── star │ │ │ │ ├── star.js │ │ │ │ ├── star.json │ │ │ │ ├── star.wxml │ │ │ │ └── star.wxss │ │ │ ├── store │ │ │ │ ├── store.js │ │ │ │ ├── store.json │ │ │ │ ├── store.wxml │ │ │ │ └── store.wxss │ │ │ ├── support │ │ │ │ ├── support.js │ │ │ │ ├── support.json │ │ │ │ ├── support.wxml │ │ │ │ └── support.wxss │ │ │ └── userinfo │ │ │ │ ├── userinfo.js │ │ │ │ ├── userinfo.json │ │ │ │ ├── userinfo.wxml │ │ │ │ └── userinfo.wxss │ │ ├── msg │ │ │ ├── savemoney │ │ │ │ ├── pinduoduo │ │ │ │ │ ├── pinduoduo.js │ │ │ │ │ ├── pinduoduo.json │ │ │ │ │ ├── pinduoduo.wxml │ │ │ │ │ └── pinduoduo.wxss │ │ │ │ ├── savemoney.js │ │ │ │ ├── savemoney.json │ │ │ │ ├── savemoney.wxml │ │ │ │ └── savemoney.wxss │ │ │ ├── sysmessage │ │ │ │ ├── sysmessage.js │ │ │ │ ├── sysmessage.json │ │ │ │ ├── sysmessage.wxml │ │ │ │ └── sysmessage.wxss │ │ │ └── usermessage │ │ │ │ ├── usermessage.js │ │ │ │ ├── usermessage.json │ │ │ │ ├── usermessage.wxml │ │ │ │ └── usermessage.wxss │ │ ├── site │ │ │ ├── site.js │ │ │ ├── site.json │ │ │ ├── site.wxml │ │ │ └── site.wxss │ │ ├── test │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ ├── test.wxml │ │ │ └── test.wxss │ │ ├── timeline │ │ │ ├── timeline.js │ │ │ ├── timeline.json │ │ │ ├── timeline.wxml │ │ │ └── timeline.wxss │ │ ├── topic │ │ │ ├── cell │ │ │ │ ├── cell.js │ │ │ │ ├── cell.json │ │ │ │ ├── cell.wxml │ │ │ │ └── cell.wxss │ │ │ ├── cells │ │ │ │ ├── cells.js │ │ │ │ ├── cells.json │ │ │ │ ├── cells.wxml │ │ │ │ └── cells.wxss │ │ │ ├── searchbar │ │ │ │ ├── searchbar.js │ │ │ │ ├── searchbar.json │ │ │ │ ├── searchbar.wxml │ │ │ │ └── searchbar.wxss │ │ │ ├── topicdetails │ │ │ │ ├── topicdetails.js │ │ │ │ ├── topicdetails.json │ │ │ │ ├── topicdetails.wxml │ │ │ │ └── topicdetails.wxss │ │ │ ├── topicsearch │ │ │ │ ├── topicsearch.js │ │ │ │ ├── topicsearch.json │ │ │ │ ├── topicsearch.wxml │ │ │ │ └── topicsearch.wxss │ │ │ └── topicsearchlist │ │ │ │ ├── topicsearchlist.js │ │ │ │ ├── topicsearchlist.json │ │ │ │ ├── topicsearchlist.wxml │ │ │ │ └── topicsearchlist.wxss │ │ ├── tui-fab │ │ │ ├── tui-fab.js │ │ │ ├── tui-fab.json │ │ │ ├── tui-fab.wxml │ │ │ └── tui-fab.wxss │ │ └── wisecomponents │ │ │ └── topic │ │ │ ├── card-image │ │ │ ├── topiccardimage.js │ │ │ ├── topiccardimage.json │ │ │ ├── topiccardimage.wxml │ │ │ └── topiccardimage.wxss │ │ │ ├── topic-reply │ │ │ ├── topicreply.js │ │ │ ├── topicreply.json │ │ │ ├── topicreply.wxml │ │ │ └── topicreply.wxss │ │ │ ├── topiccard.js │ │ │ ├── topiccard.json │ │ │ ├── topiccard.wxml │ │ │ └── topiccard.wxss │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.skeleton.wxml │ │ ├── index.skeleton.wxss │ │ ├── index.wxml │ │ └── index.wxss │ ├── mine │ │ ├── mine.js │ │ ├── mine.json │ │ ├── mine.wxml │ │ └── mine.wxss │ └── msg │ │ ├── msg.js │ │ ├── msg.json │ │ ├── msg.skeleton.wxml │ │ ├── msg.skeleton.wxss │ │ ├── msg.wxml │ │ └── msg.wxss ├── project.config.json ├── project.private.config.json ├── sitemap.json ├── static │ ├── icons │ │ ├── 9.png │ │ ├── iconfont.wxss │ │ ├── location32_32.png │ │ ├── location32_32_1.png │ │ ├── location32_32_2.png │ │ ├── location48_48.png │ │ ├── yuque-mono │ │ │ ├── chat1.png │ │ │ ├── chat2.png │ │ │ ├── home1.png │ │ │ ├── home2.png │ │ │ ├── mine1.png │ │ │ ├── mine2.png │ │ │ ├── msg1.png │ │ │ ├── msg2.png │ │ │ ├── star.png │ │ │ ├── star1.png │ │ │ └── 选中颜色:#9e41f6.txt │ │ └── yuque │ │ │ ├── chat1.png │ │ │ ├── chat2.png │ │ │ ├── home1.png │ │ │ ├── home2.png │ │ │ ├── mine1.png │ │ │ ├── mine2.png │ │ │ ├── msg1.png │ │ │ ├── msg2.png │ │ │ ├── star.png │ │ │ └── star1.png │ └── images │ │ ├── fabu.png │ │ └── nodata.png ├── template │ └── login │ │ └── index.wxml ├── thorui │ ├── tui-actionsheet │ │ ├── tui-actionsheet.js │ │ ├── tui-actionsheet.json │ │ ├── tui-actionsheet.wxml │ │ └── tui-actionsheet.wxss │ ├── tui-alert │ │ ├── tui-alert.js │ │ ├── tui-alert.json │ │ ├── tui-alert.wxml │ │ └── tui-alert.wxss │ ├── tui-badge │ │ ├── tui-badge.js │ │ ├── tui-badge.json │ │ ├── tui-badge.wxml │ │ └── tui-badge.wxss │ ├── tui-bottom-navigation │ │ ├── tui-bottom-navigation.js │ │ ├── tui-bottom-navigation.json │ │ ├── tui-bottom-navigation.wxml │ │ └── tui-bottom-navigation.wxss │ ├── tui-bottom-popup │ │ ├── tui-bottom-popup.js │ │ ├── tui-bottom-popup.json │ │ ├── tui-bottom-popup.wxml │ │ └── tui-bottom-popup.wxss │ ├── tui-button │ │ ├── tui-button.js │ │ ├── tui-button.json │ │ ├── tui-button.wxml │ │ └── tui-button.wxss │ ├── tui-card │ │ ├── tui-card.js │ │ ├── tui-card.json │ │ ├── tui-card.wxml │ │ └── tui-card.wxss │ ├── tui-collapse │ │ ├── tui-collapse.js │ │ ├── tui-collapse.json │ │ ├── tui-collapse.wxml │ │ └── tui-collapse.wxss │ ├── tui-countdown │ │ ├── tui-countdown.js │ │ ├── tui-countdown.json │ │ ├── tui-countdown.wxml │ │ └── tui-countdown.wxss │ ├── tui-datetime │ │ ├── tui-datetime.js │ │ ├── tui-datetime.json │ │ ├── tui-datetime.wxml │ │ └── tui-datetime.wxss │ ├── tui-divider │ │ ├── tui-divider.js │ │ ├── tui-divider.json │ │ ├── tui-divider.wxml │ │ └── tui-divider.wxss │ ├── tui-drawer │ │ ├── tui-drawer.js │ │ ├── tui-drawer.json │ │ ├── tui-drawer.wxml │ │ └── tui-drawer.wxss │ ├── tui-dropdown-list │ │ ├── tui-dropdown-list.js │ │ ├── tui-dropdown-list.json │ │ ├── tui-dropdown-list.wxml │ │ └── tui-dropdown-list.wxss │ ├── tui-fab │ │ ├── tui-fab.js │ │ ├── tui-fab.json │ │ ├── tui-fab.wxml │ │ └── tui-fab.wxss │ ├── tui-footer │ │ ├── tui-footer.js │ │ ├── tui-footer.json │ │ ├── tui-footer.wxml │ │ └── tui-footer.wxss │ ├── tui-grid-item │ │ ├── tui-grid-item.js │ │ ├── tui-grid-item.json │ │ ├── tui-grid-item.wxml │ │ └── tui-grid-item.wxss │ ├── tui-grid │ │ ├── tui-grid.js │ │ ├── tui-grid.json │ │ ├── tui-grid.wxml │ │ └── tui-grid.wxss │ ├── tui-icon │ │ ├── tui-icon.js │ │ ├── tui-icon.json │ │ ├── tui-icon.wxml │ │ └── tui-icon.wxss │ ├── tui-keyboard-input │ │ ├── tui-keyboard-input.js │ │ ├── tui-keyboard-input.json │ │ ├── tui-keyboard-input.wxml │ │ └── tui-keyboard-input.wxss │ ├── tui-keyboard │ │ ├── tui-keyboard.js │ │ ├── tui-keyboard.json │ │ ├── tui-keyboard.wxml │ │ └── tui-keyboard.wxss │ ├── tui-list-cell │ │ ├── tui-list-cell.js │ │ ├── tui-list-cell.json │ │ ├── tui-list-cell.wxml │ │ └── tui-list-cell.wxss │ ├── tui-list-view │ │ ├── tui-list-view.js │ │ ├── tui-list-view.json │ │ ├── tui-list-view.wxml │ │ └── tui-list-view.wxss │ ├── tui-loading │ │ ├── tui-loading.js │ │ ├── tui-loading.json │ │ ├── tui-loading.wxml │ │ └── tui-loading.wxss │ ├── tui-loadmore │ │ ├── tui-loadmore.js │ │ ├── tui-loadmore.json │ │ ├── tui-loadmore.wxml │ │ └── tui-loadmore.wxss │ ├── tui-modal │ │ ├── tui-modal.js │ │ ├── tui-modal.json │ │ ├── tui-modal.wxml │ │ └── tui-modal.wxss │ ├── tui-navigation-bar │ │ ├── tui-navigation-bar.js │ │ ├── tui-navigation-bar.json │ │ ├── tui-navigation-bar.wxml │ │ └── tui-navigation-bar.wxss │ ├── tui-no-data │ │ ├── tui-no-data.js │ │ ├── tui-no-data.json │ │ ├── tui-no-data.wxml │ │ └── tui-no-data.wxss │ ├── tui-nomore │ │ ├── tui-nomore.js │ │ ├── tui-nomore.json │ │ ├── tui-nomore.wxml │ │ └── tui-nomore.wxss │ ├── tui-numberbox │ │ ├── tui-numberbox.js │ │ ├── tui-numberbox.json │ │ ├── tui-numberbox.wxml │ │ └── tui-numberbox.wxss │ ├── tui-rate │ │ ├── tui-rate.js │ │ ├── tui-rate.json │ │ ├── tui-rate.wxml │ │ └── tui-rate.wxss │ ├── tui-scroll-top │ │ ├── tui-scroll-top.js │ │ ├── tui-scroll-top.json │ │ ├── tui-scroll-top.wxml │ │ └── tui-scroll-top.wxss │ ├── tui-sticky │ │ ├── tui-sticky.js │ │ ├── tui-sticky.json │ │ ├── tui-sticky.wxml │ │ ├── tui-sticky.wxs │ │ └── tui-sticky.wxss │ ├── tui-swipe-action │ │ ├── tui-swipe-action.js │ │ ├── tui-swipe-action.json │ │ ├── tui-swipe-action.wxml │ │ └── tui-swipe-action.wxss │ ├── tui-tabs │ │ ├── tui-tabs.js │ │ ├── tui-tabs.json │ │ ├── tui-tabs.wxml │ │ └── tui-tabs.wxss │ ├── tui-tag │ │ ├── tui-tag.js │ │ ├── tui-tag.json │ │ ├── tui-tag.wxml │ │ └── tui-tag.wxss │ ├── tui-time-axis │ │ ├── tui-time-axis.js │ │ ├── tui-time-axis.json │ │ ├── tui-time-axis.wxml │ │ └── tui-time-axis.wxss │ ├── tui-timeaxis-item │ │ ├── tui-timeaxis-item.js │ │ ├── tui-timeaxis-item.json │ │ ├── tui-timeaxis-item.wxml │ │ └── tui-timeaxis-item.wxss │ ├── tui-tips │ │ ├── tui-tips.js │ │ ├── tui-tips.json │ │ ├── tui-tips.wxml │ │ └── tui-tips.wxss │ ├── tui-toast │ │ ├── tui-toast.js │ │ ├── tui-toast.json │ │ ├── tui-toast.wxml │ │ └── tui-toast.wxss │ ├── tui-top-dropdown │ │ ├── tui-top-dropdown.js │ │ ├── tui-top-dropdown.json │ │ ├── tui-top-dropdown.wxml │ │ └── tui-top-dropdown.wxss │ └── tui-upload │ │ ├── tui-upload.js │ │ ├── tui-upload.json │ │ ├── tui-upload.wxml │ │ └── tui-upload.wxss ├── utils │ ├── API.js │ ├── formatutil.js │ ├── objectutil.js │ └── qiniuUploader.js └── 微信小程序根目录.txt └── 数据库脚本(在mysql中执行即可) ├── wised.sql └── 数据库自动备份脚本.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/.dockerignore -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/.editorconfig -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/.env -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/.env.development -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/.env.production -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/.env.test -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.eslintignore: -------------------------------------------------------------------------------- 1 | /src -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/.prettierrc -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/Dockerfile -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/babel.config.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/idea.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/idea.config.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/package-lock.json -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/package.json -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/avatar2.jpg -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/color.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/color.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/goright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/goright.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/index.html -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/logo-jeecg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/logo-jeecg.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/logo.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/logo_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/logo_original.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/tinymce/langs/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/tinymce/langs/zh_CN.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/public/v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/public/v2.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/App.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/api/GroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/api/GroupRequest.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/api/api.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/api/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/api/login.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/api/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/api/manage.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/background.svg -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/checkcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/checkcode.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/daiban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/daiban.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/duban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/duban.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/guaz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/guaz.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/less/JAreaLinkage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/less/JAreaLinkage.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/less/TableExpand.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/less/TableExpand.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/less/codemirror_idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/less/codemirror_idea.css -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/less/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/less/common.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/less/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/less/index.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/logo-jeecgboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/logo-jeecgboot.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/logo-white copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/logo-white copy.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/logo.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/logo.svg -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/nodata.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/pdf4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/pdf4.jpg -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/assets/zaiban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/assets/zaiban.png -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/cas/sso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/cas/sso.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/Item.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/List.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/AvatarList/index.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/ChartCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/ChartCard.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/CountDown/CountDown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/CountDown/CountDown.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/CountDown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/CountDown/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/Ellipsis/Ellipsis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/Ellipsis/Ellipsis.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/Ellipsis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/Ellipsis/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/JVxeCells/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/JVxeCells/install.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/NumberInfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/NumberInfo/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/NumberInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/NumberInfo/index.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/Trend/Trend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/Trend/Trend.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/Trend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/Trend/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/Trend/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/Trend/index.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/_util/Area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/_util/Area.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/_util/StringUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/_util/StringUtil.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/_util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/_util/util.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/AreaChartTy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/AreaChartTy.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/Bar.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/BarAndLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/BarAndLine.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/BarMultid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/BarMultid.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/DashChartDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/DashChartDemo.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/IndexBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/IndexBar.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/Liquid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/Liquid.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/MiniArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/MiniArea.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/MiniBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/MiniBar.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/MiniProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/MiniProgress.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/Pie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/Pie.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/Radar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/Radar.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/RankList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/RankList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/StackBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/StackBar.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/TransferBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/TransferBar.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/Trend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/Trend.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/chart/chart.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/chart/chart.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/dict/JDictSelectTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/dict/JDictSelectTag.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/dict/JDictSelectUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/dict/JDictSelectUtil.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/dict/JMultiSelectTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/dict/JMultiSelectTag.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/dict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/dict/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/dict/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/dict/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/index.less -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JAreaLinkage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JAreaLinkage.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JCheckbox.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JCodeEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JCodeEditor.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JCron.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JCron.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JDate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JDate.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JEditableTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JEditableTable.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JEditor.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JEllipsis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JEllipsis.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JFormContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JFormContainer.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JImageUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JImageUpload.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JImportModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JImportModal.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JInput.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JModal/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JModal/index.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JPopup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JPopup.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JSlider.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JSuperQuery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JSuperQuery.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JSwitch.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTime.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTreeDict.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTreeDict.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTreeSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTreeSelect.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTreeTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JTreeTable.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JUpload.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JVxeTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/JVxeTable/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/README_JPopup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/README_JPopup.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecg/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecgbiz/JSelectRole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecgbiz/JSelectRole.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/jeecgbiz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/jeecgbiz/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/layouts/BasicLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/layouts/BasicLayout.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/layouts/BlankLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/layouts/BlankLayout.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/layouts/PageView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/layouts/PageView.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/layouts/RouteView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/layouts/RouteView.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/layouts/TabLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/layouts/TabLayout.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/layouts/UserLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/layouts/UserLayout.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/layouts/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/lazy_antd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/lazy_antd.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/menu/Contextmenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/menu/Contextmenu.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/menu/SideMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/menu/SideMenu.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/menu/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/page/GlobalFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/page/GlobalFooter.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/page/GlobalHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/page/GlobalHeader.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/page/GlobalLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/page/GlobalLayout.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/page/PageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/page/PageHeader.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/page/PageLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/page/PageLayout.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/page/SHeaderNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/page/SHeaderNotice.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/setting/SettingItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/setting/SettingItem.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/table/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/table/StandardTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/table/StandardTable.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/table/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/Breadcrumb.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/DepartSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/DepartSelect.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/DetailList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/DetailList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/DynamicNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/DynamicNotice.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/FooterToolBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/FooterToolBar.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/HeadInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/HeadInfo.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/HeaderNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/HeaderNotice.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/Logo.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/TwoStepCaptcha.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/TwoStepCaptcha.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/UserMenu.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/UserPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/UserPassword.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/components/tools/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/components/tools/setting.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/config/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/config/router.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/config/router.config.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/defaultSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/defaultSettings.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/icons.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/main.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/DisabledAuthFilterMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/DisabledAuthFilterMixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/JEditableTableMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/JEditableTableMixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/JEditableTableModelMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/JEditableTableModelMixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/JVxeTableMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/JVxeTableMixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/JVxeTableModelMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/JVxeTableModelMixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/JeecgListMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/JeecgListMixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/OnlineCommonUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/OnlineCommonUtil.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/mixins/WebsocketMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/mixins/WebsocketMixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/permission.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/router/README.md -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/router/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/getters.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/index.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/modules/app.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/modules/enhance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/modules/enhance.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/modules/online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/modules/online.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/modules/permission.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/modules/user.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/store/mutation-types.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/JEditableTableUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/JEditableTableUtil.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/LunarFullCalendarUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/LunarFullCalendarUtil.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/auth.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/authFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/authFilter.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/axios.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/browser.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/commonUploadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/commonUploadFile.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/device.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/encryption/aesEncrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/encryption/aesEncrypt.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/filter.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/hasPermission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/hasPermission.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/mixin.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/permissions.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/portal/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/portal/constant.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/props-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/props-util.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/request.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/rules.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/storage.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/util.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/validate.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/utils/vueBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/utils/vueBus.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/Home.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/account/center/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/account/center/Index.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/account/settings/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/account/settings/Index.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/Analysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/Analysis.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/IndexBdc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/IndexBdc.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/IndexChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/IndexChart.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/IndexTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/IndexTask.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/Monitor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/Monitor.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/Workplace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/dashboard/Workplace.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/examples/list/CardList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/examples/list/CardList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/examples/list/RoleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/examples/list/RoleList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/examples/list/UserList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/examples/list/UserList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/exception/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/exception/403.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/exception/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/exception/404.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/exception/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/exception/500.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/exception/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/exception/type.js -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImagCropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImagCropper.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImagPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImagPreview.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImgDragSort.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImgDragSort.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImgTurnPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/ImgTurnPage.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/InterfaceTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/InterfaceTest.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JVXETableDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JVXETableDemo.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JeecgDemoList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JeecgDemoList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JeecgPdfView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JeecgPdfView.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JeecgTreeTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/JeecgTreeTable.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/PrintDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/PrintDemo.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/RowspanTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/RowspanTable.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/SelectDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/SelectDemo.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/SplitPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/SplitPanel.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/TableExpandeSub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/TableExpandeSub.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/TableTotal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/TableTotal.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/helloworld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/helloworld.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/helloworld2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/helloworld2.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/report/Analysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/jeecg/report/Analysis.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/result/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/result/Error.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/result/Result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/result/Result.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/result/Success.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/result/Success.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/AddressList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/AddressList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DataLogList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DataLogList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartList2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartList2.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartListSync.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartListSync.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartUserList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DepartUserList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DictDeleteList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DictDeleteList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DictItemList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DictItemList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/DictList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/DictList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/LogList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/LogList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/PermissionList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/PermissionList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/QuartzJobList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/QuartzJobList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/RoleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/RoleList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/RoleUserList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/RoleUserList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/SysCategoryList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/SysCategoryList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/SysFillRuleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/SysFillRuleList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/SysPositionList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/SysPositionList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/TenantList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/TenantList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/system/UserList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/system/UserList.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/Login.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/LoginSelectTenant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/LoginSelectTenant.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step1.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step2.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step3.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/alteration/Step4.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/register/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/register/Register.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/src/views/user/third/ThirdLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/src/views/user/third/ThirdLogin.vue -------------------------------------------------------------------------------- /WISE-Fork/ant-design-vue-jeecg/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/ant-design-vue-jeecg/vue.config.js -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/docker-compose-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/docker-compose-server.yml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/docker-compose.yml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-base/jeecg-boot-base-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-base/jeecg-boot-base-api/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-base/jeecg-boot-base-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-base/jeecg-boot-base-core/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-base/jeecg-boot-base-tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-base/jeecg-boot-base-tools/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-base/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/.gitignore -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/mvnw -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/mvnw.cmd -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-bbs/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-demo/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-demo/src/main/resources/static/bigscreen/template2/js/data/city.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-demo/src/main/resources/static/bigscreen/template2/js/pop_base.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-system/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-system/.gitattributes -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-system/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-system/Dockerfile -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-system/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-module-system/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-module-system/src/main/resources/static/demo1.html: -------------------------------------------------------------------------------- 1 | demo1 -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-boot-starter/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-cloud-module/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-cloud-module/docker-compose.yml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-gateway/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-monitor/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-nacos/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-nacos/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-xxljob/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-cloud-module/jeecg-cloud-xxljob/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/jeecg-cloud-module/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/jeecg-cloud-module/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/jeecg-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/jeecg-boot/pom.xml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/.github/dependabot.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | *.log 5 | node_modules/ 6 | public/ 7 | .deploy*/ -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/_config.landscape.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/_config.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/package-lock.json -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/package.json -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/scaffolds/draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/scaffolds/draft.md -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/scaffolds/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/scaffolds/page.md -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/scaffolds/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/scaffolds/post.md -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/source/_posts/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/source/_posts/hello-world.md -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | tmp -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/Gruntfile.js -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/LICENSE -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/README.md -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/_config.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/de.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/default.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/es.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/fr.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/ja.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/ko.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/nl.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/no.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/pt.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/ru.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/zh-CN.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/languages/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/languages/zh-TW.yml -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/archive.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/article.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/article.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/footer.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/head.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/header.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/mobile-nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/mobile-nav.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/date.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/date.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/nav.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/tag.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/title.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/post/title.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_partial/sidebar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_partial/sidebar.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_widget/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_widget/archive.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_widget/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_widget/category.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_widget/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_widget/tag.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/_widget/tagcloud.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/_widget/tagcloud.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/archive.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/category.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/index.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/layout.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/page.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/page.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/post.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/layout/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/layout/tag.ejs -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/package.json -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/scripts/fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/scripts/fancybox.js -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/css/_extend.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/css/_extend.styl -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/css/_util/grid.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/css/_util/grid.styl -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/css/_util/mixin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/css/_util/mixin.styl -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/css/_variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/css/_variables.styl -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/css/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/css/images/banner.jpg -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/css/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/css/style.styl -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/fancybox/blank.gif -------------------------------------------------------------------------------- /WISE-Fork/wise-hexo/themes/landscape/source/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Fork/wise-hexo/themes/landscape/source/js/script.js -------------------------------------------------------------------------------- /WISE-Fork/后台管理系统和后台java服务.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/app.js -------------------------------------------------------------------------------- /WISE-Mini/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/app.json -------------------------------------------------------------------------------- /WISE-Mini/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/app.wxss -------------------------------------------------------------------------------- /WISE-Mini/cloudfunctions/getOpenData/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/cloudfunctions/getOpenData/config.json -------------------------------------------------------------------------------- /WISE-Mini/cloudfunctions/getOpenData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/cloudfunctions/getOpenData/index.js -------------------------------------------------------------------------------- /WISE-Mini/cloudfunctions/getOpenData/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/cloudfunctions/getOpenData/package-lock.json -------------------------------------------------------------------------------- /WISE-Mini/cloudfunctions/getOpenData/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/cloudfunctions/getOpenData/package.json -------------------------------------------------------------------------------- /WISE-Mini/colorui/animation.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/colorui/animation.wxss -------------------------------------------------------------------------------- /WISE-Mini/colorui/components/cu-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/colorui/components/cu-custom.js -------------------------------------------------------------------------------- /WISE-Mini/colorui/components/cu-custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/colorui/components/cu-custom.json -------------------------------------------------------------------------------- /WISE-Mini/colorui/components/cu-custom.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/colorui/components/cu-custom.wxml -------------------------------------------------------------------------------- /WISE-Mini/colorui/components/cu-custom.wxss: -------------------------------------------------------------------------------- 1 | /* colorui/components/cu-custom.wxss */ -------------------------------------------------------------------------------- /WISE-Mini/colorui/icon.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/colorui/icon.wxss -------------------------------------------------------------------------------- /WISE-Mini/colorui/main.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/colorui/main.wxss -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/index.js -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/index.json -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/index.wxml -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/index.wxss -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/node/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/node/node.js -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/node/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/node/node.json -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/node/node.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/node/node.wxml -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/node/node.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/node/node.wxss -------------------------------------------------------------------------------- /WISE-Mini/depend/mp-html/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/mp-html/parser.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell-group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/cell-group/index.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell-group/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/cell-group/index.wxml -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell-group/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/cell-group/index.wxss -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/cell/index.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/cell/index.wxml -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/cell/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/cell/index.wxss -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/circle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/circle/index.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/circle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/circle/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/circle/index.wxml -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/circle/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/circle/index.wxss -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/config.json -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/fab-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/fab-button/index.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/fab-button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/fab-button/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/fab-button/index.wxml -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/fab-button/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/fab-button/index.wxss -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/arrayTreeFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/arrayTreeFilter.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/baseComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/baseComponent.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/checkIPhoneX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/checkIPhoneX.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/classNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/classNames.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/colors.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/compareVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/compareVersion.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/computedBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/computedBehavior.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/createFieldsStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/createFieldsStore.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/debounce.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/eventsMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/eventsMixin.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/funcBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/funcBehavior.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/gestures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/gestures.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/isEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/isEmpty.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/mergeOptionsToData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/mergeOptionsToData.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/popupMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/popupMixin.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/relationsBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/relationsBehavior.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/safeAreaBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/safeAreaBehavior.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/safeSetDataBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/safeSetDataBehavior.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/shallowEqual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/shallowEqual.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/helpers/styleToCssString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/helpers/styleToCssString.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/index.js -------------------------------------------------------------------------------- /WISE-Mini/depend/wux-weapp/styles/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/depend/wux-weapp/styles/index.wxss -------------------------------------------------------------------------------- /WISE-Mini/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/package-lock.json -------------------------------------------------------------------------------- /WISE-Mini/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/package.json -------------------------------------------------------------------------------- /WISE-Mini/packageA/activity/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/activity/activity.js -------------------------------------------------------------------------------- /WISE-Mini/packageA/activity/activity.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/packageA/activity/activity.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/activity/activity.wxml -------------------------------------------------------------------------------- /WISE-Mini/packageA/activity/activity.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/activity/activity.wxss -------------------------------------------------------------------------------- /WISE-Mini/packageA/activitydetail/activitydetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/activitydetail/activitydetail.js -------------------------------------------------------------------------------- /WISE-Mini/packageA/activitydetail/activitydetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/activitydetail/activitydetail.json -------------------------------------------------------------------------------- /WISE-Mini/packageA/activitydetail/activitydetail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/activitydetail/activitydetail.wxml -------------------------------------------------------------------------------- /WISE-Mini/packageA/activitydetail/activitydetail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/activitydetail/activitydetail.wxss -------------------------------------------------------------------------------- /WISE-Mini/packageA/utils/formatutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/packageA/utils/formatutil.js -------------------------------------------------------------------------------- /WISE-Mini/pages/chat/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/chat/chat.js -------------------------------------------------------------------------------- /WISE-Mini/pages/chat/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/chat/chat.json -------------------------------------------------------------------------------- /WISE-Mini/pages/chat/chat.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/chat/chat.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/chat/chat.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/chat/chat.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/animation/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/animation/animation.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/animation/animation.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WISE-Mini/pages/components/animation/animation.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/animation/animation.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/animation/animation.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/animation/animation.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/button/button.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/button.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/button.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/button/button.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/button.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/button/design.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/design.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/design.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/button/design.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/button/design.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/button/design.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/chat/chatdetail/chatdetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/chat/chatdetail/chatdetail.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/chat/chatdetail/chatdetail.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WISE-Mini/pages/components/chat/chatdetail/chatdetail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/chat/chatdetail/chatdetail.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/chat/chatdetail/chatdetail.wxss: -------------------------------------------------------------------------------- 1 | page{ 2 | padding-bottom: 100rpx; 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/drawer/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/drawer/drawer.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/drawer/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/drawer/drawer.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/drawer/drawer.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/drawer/drawer.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/drawer/drawer.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/fabbutton/fabbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/fabbutton/fabbutton.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/fabbutton/fabbutton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/fabbutton/fabbutton.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/fabbutton/fabbutton.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/fabbutton/fabbutton.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/fabbutton/fabbutton.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/fabbutton/fabbutton.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedback/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/feedback/feedback.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedback/feedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/feedback/feedback.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedback/feedback.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/feedback/feedback.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedback/feedback.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/feedback/feedback.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedbackform/feedbackform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/feedbackform/feedbackform.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedbackform/feedbackform.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedbackform/feedbackform.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/feedbackform/feedbackform.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/feedbackform/feedbackform.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/feedbackform/feedbackform.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/issue/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/issue/issue.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/issue/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/issue/issue.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/issue/issue.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/issue/issue.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/issue/issue.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/issue/issue.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/list/list.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/list/list.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WISE-Mini/pages/components/list/list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/list/list.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/list/list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/list/list.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/admin/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/admin/admin.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/admin/admin.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/admin/admin.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/admin/admin.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/admin/admin.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/admin/admin.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/circlefriends/circlefriends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/circlefriends/circlefriends.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/circlefriends/circlefriends.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/circlefriends/circlefriends.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/circlefriends/circlefriends.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/circlefriends/circlefriends.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/circlefriends/circlefriends.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/joinour/joinour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/joinour/joinour.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/joinour/joinour.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/joinour/joinour.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/joinour/joinour.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/joinour/joinour.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/joinour/joinour.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/officialaccounts/officialaccounts.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/publishtopics/publishtopics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/publishtopics/publishtopics.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/publishtopics/publishtopics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/publishtopics/publishtopics.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/publishtopics/publishtopics.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/publishtopics/publishtopics.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/publishtopics/publishtopics.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/regionclaim/regionclaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/regionclaim/regionclaim.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/regionclaim/regionclaim.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/regionclaim/regionclaim.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/regionclaim/regionclaim.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/regionclaim/regionclaim.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/regionclaim/regionclaim.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/scanntopics/scanntopics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/scanntopics/scanntopics.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/scanntopics/scanntopics.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/scanntopics/scanntopics.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/scanntopics/scanntopics.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/scanntopics/scanntopics.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/scanntopics/scanntopics.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/star/star.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/star/star.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/star/star.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/star/star.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/star/star.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/star/star.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/store/store.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/store/store.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/store/store.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/store/store.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/store/store.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/store/store.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/support/support.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/support/support.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/support/support.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/support/support.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/support/support.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/support/support.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/userinfo/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/userinfo/userinfo.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/userinfo/userinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/userinfo/userinfo.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/userinfo/userinfo.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/mine/userinfo/userinfo.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/mine/userinfo/userinfo.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/pinduoduo/pinduoduo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/savemoney/pinduoduo/pinduoduo.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/pinduoduo/pinduoduo.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/pinduoduo/pinduoduo.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/savemoney/pinduoduo/pinduoduo.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/pinduoduo/pinduoduo.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/savemoney/pinduoduo/pinduoduo.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/savemoney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/savemoney/savemoney.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/savemoney.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/savemoney.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/savemoney/savemoney.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/savemoney/savemoney.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/sysmessage/sysmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/sysmessage/sysmessage.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/sysmessage/sysmessage.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/sysmessage/sysmessage.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/sysmessage/sysmessage.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/sysmessage/sysmessage.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/sysmessage/sysmessage.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/usermessage/usermessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/usermessage/usermessage.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/usermessage/usermessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/usermessage/usermessage.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/usermessage/usermessage.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/msg/usermessage/usermessage.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/msg/usermessage/usermessage.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/pages/components/site/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/site/site.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/site/site.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/site/site.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/site/site.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/site/site.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/site/site.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/test/test.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/test/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/test/test.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/test/test.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/test/test.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/test/test.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/timeline/timeline.js: -------------------------------------------------------------------------------- 1 | Page({}); 2 | -------------------------------------------------------------------------------- /WISE-Mini/pages/components/timeline/timeline.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WISE-Mini/pages/components/timeline/timeline.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/timeline/timeline.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/timeline/timeline.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cell/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cell/cell.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cell/cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cell/cell.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cell/cell.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cell/cell.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cell/cell.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cell/cell.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cells/cells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cells/cells.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cells/cells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cells/cells.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cells/cells.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cells/cells.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/cells/cells.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/cells/cells.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/searchbar/searchbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/searchbar/searchbar.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/searchbar/searchbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/searchbar/searchbar.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/searchbar/searchbar.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/searchbar/searchbar.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/searchbar/searchbar.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/searchbar/searchbar.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicdetails/topicdetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicdetails/topicdetails.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicdetails/topicdetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicdetails/topicdetails.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicdetails/topicdetails.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicdetails/topicdetails.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicdetails/topicdetails.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicdetails/topicdetails.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicsearch/topicsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicsearch/topicsearch.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicsearch/topicsearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicsearch/topicsearch.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicsearch/topicsearch.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicsearch/topicsearch.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicsearch/topicsearch.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicsearch/topicsearch.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/topic/topicsearchlist/topicsearchlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/topic/topicsearchlist/topicsearchlist.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/tui-fab/tui-fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/tui-fab/tui-fab.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/tui-fab/tui-fab.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/pages/components/tui-fab/tui-fab.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/tui-fab/tui-fab.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/tui-fab/tui-fab.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/tui-fab/tui-fab.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/components/wisecomponents/topic/topiccard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/wisecomponents/topic/topiccard.js -------------------------------------------------------------------------------- /WISE-Mini/pages/components/wisecomponents/topic/topiccard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/wisecomponents/topic/topiccard.json -------------------------------------------------------------------------------- /WISE-Mini/pages/components/wisecomponents/topic/topiccard.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/wisecomponents/topic/topiccard.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/components/wisecomponents/topic/topiccard.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/components/wisecomponents/topic/topiccard.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/index/index.js -------------------------------------------------------------------------------- /WISE-Mini/pages/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/index/index.json -------------------------------------------------------------------------------- /WISE-Mini/pages/index/index.skeleton.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/index/index.skeleton.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/index/index.skeleton.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/index/index.skeleton.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/index/index.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/index/index.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/mine/mine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/mine/mine.js -------------------------------------------------------------------------------- /WISE-Mini/pages/mine/mine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/mine/mine.json -------------------------------------------------------------------------------- /WISE-Mini/pages/mine/mine.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/mine/mine.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/mine/mine.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/mine/mine.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/msg/msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/msg/msg.js -------------------------------------------------------------------------------- /WISE-Mini/pages/msg/msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/msg/msg.json -------------------------------------------------------------------------------- /WISE-Mini/pages/msg/msg.skeleton.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/msg/msg.skeleton.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/msg/msg.skeleton.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/msg/msg.skeleton.wxss -------------------------------------------------------------------------------- /WISE-Mini/pages/msg/msg.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/msg/msg.wxml -------------------------------------------------------------------------------- /WISE-Mini/pages/msg/msg.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/pages/msg/msg.wxss -------------------------------------------------------------------------------- /WISE-Mini/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/project.config.json -------------------------------------------------------------------------------- /WISE-Mini/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/project.private.config.json -------------------------------------------------------------------------------- /WISE-Mini/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/sitemap.json -------------------------------------------------------------------------------- /WISE-Mini/static/icons/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/9.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/iconfont.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/iconfont.wxss -------------------------------------------------------------------------------- /WISE-Mini/static/icons/location32_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/location32_32.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/location32_32_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/location32_32_1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/location32_32_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/location32_32_2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/location48_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/location48_48.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/chat1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/chat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/chat2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/home1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/home2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/mine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/mine1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/mine2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/mine2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/msg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/msg1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/msg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/msg2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/star.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque-mono/star1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque-mono/选中颜色:#9e41f6.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/chat1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/chat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/chat2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/home1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/home2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/mine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/mine1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/mine2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/mine2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/msg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/msg1.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/msg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/msg2.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/star.png -------------------------------------------------------------------------------- /WISE-Mini/static/icons/yuque/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/icons/yuque/star1.png -------------------------------------------------------------------------------- /WISE-Mini/static/images/fabu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/images/fabu.png -------------------------------------------------------------------------------- /WISE-Mini/static/images/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/static/images/nodata.png -------------------------------------------------------------------------------- /WISE-Mini/template/login/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/template/login/index.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-actionsheet/tui-actionsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-actionsheet/tui-actionsheet.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-actionsheet/tui-actionsheet.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-actionsheet/tui-actionsheet.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-actionsheet/tui-actionsheet.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-actionsheet/tui-actionsheet.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-actionsheet/tui-actionsheet.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-alert/tui-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-alert/tui-alert.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-alert/tui-alert.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-alert/tui-alert.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-alert/tui-alert.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-alert/tui-alert.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-alert/tui-alert.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-badge/tui-badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-badge/tui-badge.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-badge/tui-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-badge/tui-badge.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-badge/tui-badge.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-badge/tui-badge.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-badge/tui-badge.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-navigation/tui-bottom-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-bottom-navigation/tui-bottom-navigation.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-navigation/tui-bottom-navigation.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-navigation/tui-bottom-navigation.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-bottom-navigation/tui-bottom-navigation.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-navigation/tui-bottom-navigation.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-bottom-navigation/tui-bottom-navigation.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-popup/tui-bottom-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-bottom-popup/tui-bottom-popup.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-popup/tui-bottom-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-popup/tui-bottom-popup.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-bottom-popup/tui-bottom-popup.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-bottom-popup/tui-bottom-popup.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-bottom-popup/tui-bottom-popup.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-button/tui-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-button/tui-button.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-button/tui-button.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-button/tui-button.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-button/tui-button.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-button/tui-button.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-button/tui-button.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-card/tui-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-card/tui-card.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-card/tui-card.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-card/tui-card.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-card/tui-card.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-card/tui-card.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-card/tui-card.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-collapse/tui-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-collapse/tui-collapse.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-collapse/tui-collapse.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-collapse/tui-collapse.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-collapse/tui-collapse.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-collapse/tui-collapse.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-collapse/tui-collapse.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-countdown/tui-countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-countdown/tui-countdown.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-countdown/tui-countdown.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-countdown/tui-countdown.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-countdown/tui-countdown.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-countdown/tui-countdown.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-countdown/tui-countdown.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-datetime/tui-datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-datetime/tui-datetime.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-datetime/tui-datetime.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-datetime/tui-datetime.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-datetime/tui-datetime.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-datetime/tui-datetime.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-datetime/tui-datetime.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-divider/tui-divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-divider/tui-divider.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-divider/tui-divider.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-divider/tui-divider.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-divider/tui-divider.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-divider/tui-divider.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-divider/tui-divider.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-drawer/tui-drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-drawer/tui-drawer.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-drawer/tui-drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-drawer/tui-drawer.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-drawer/tui-drawer.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-drawer/tui-drawer.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-drawer/tui-drawer.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-dropdown-list/tui-dropdown-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-dropdown-list/tui-dropdown-list.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-dropdown-list/tui-dropdown-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-dropdown-list/tui-dropdown-list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-dropdown-list/tui-dropdown-list.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-dropdown-list/tui-dropdown-list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-dropdown-list/tui-dropdown-list.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-fab/tui-fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-fab/tui-fab.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-fab/tui-fab.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-fab/tui-fab.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-fab/tui-fab.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-fab/tui-fab.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-fab/tui-fab.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-footer/tui-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-footer/tui-footer.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-footer/tui-footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-footer/tui-footer.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-footer/tui-footer.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-footer/tui-footer.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-footer/tui-footer.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid-item/tui-grid-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-grid-item/tui-grid-item.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid-item/tui-grid-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid-item/tui-grid-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-grid-item/tui-grid-item.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid-item/tui-grid-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-grid-item/tui-grid-item.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid/tui-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-grid/tui-grid.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid/tui-grid.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid/tui-grid.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-grid/tui-grid.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-grid/tui-grid.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-grid/tui-grid.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-icon/tui-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-icon/tui-icon.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-icon/tui-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-icon/tui-icon.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-icon/tui-icon.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-icon/tui-icon.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-icon/tui-icon.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard-input/tui-keyboard-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-keyboard-input/tui-keyboard-input.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard-input/tui-keyboard-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard-input/tui-keyboard-input.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-keyboard-input/tui-keyboard-input.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard-input/tui-keyboard-input.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-keyboard-input/tui-keyboard-input.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard/tui-keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-keyboard/tui-keyboard.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard/tui-keyboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard/tui-keyboard.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-keyboard/tui-keyboard.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-keyboard/tui-keyboard.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-keyboard/tui-keyboard.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-cell/tui-list-cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-list-cell/tui-list-cell.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-cell/tui-list-cell.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-cell/tui-list-cell.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-list-cell/tui-list-cell.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-cell/tui-list-cell.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-list-cell/tui-list-cell.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-view/tui-list-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-list-view/tui-list-view.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-view/tui-list-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-view/tui-list-view.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-list-view/tui-list-view.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-list-view/tui-list-view.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-list-view/tui-list-view.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loading/tui-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-loading/tui-loading.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loading/tui-loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loading/tui-loading.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-loading/tui-loading.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loading/tui-loading.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-loading/tui-loading.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loadmore/tui-loadmore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-loadmore/tui-loadmore.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loadmore/tui-loadmore.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loadmore/tui-loadmore.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-loadmore/tui-loadmore.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-loadmore/tui-loadmore.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-loadmore/tui-loadmore.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-modal/tui-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-modal/tui-modal.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-modal/tui-modal.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-modal/tui-modal.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-modal/tui-modal.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-modal/tui-modal.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-modal/tui-modal.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-navigation-bar/tui-navigation-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-navigation-bar/tui-navigation-bar.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-navigation-bar/tui-navigation-bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-navigation-bar/tui-navigation-bar.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-navigation-bar/tui-navigation-bar.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-navigation-bar/tui-navigation-bar.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-navigation-bar/tui-navigation-bar.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-no-data/tui-no-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-no-data/tui-no-data.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-no-data/tui-no-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-no-data/tui-no-data.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-no-data/tui-no-data.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-no-data/tui-no-data.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-no-data/tui-no-data.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-nomore/tui-nomore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-nomore/tui-nomore.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-nomore/tui-nomore.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-nomore/tui-nomore.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-nomore/tui-nomore.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-nomore/tui-nomore.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-nomore/tui-nomore.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-numberbox/tui-numberbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-numberbox/tui-numberbox.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-numberbox/tui-numberbox.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-numberbox/tui-numberbox.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-numberbox/tui-numberbox.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-numberbox/tui-numberbox.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-numberbox/tui-numberbox.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-rate/tui-rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-rate/tui-rate.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-rate/tui-rate.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-rate/tui-rate.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-rate/tui-rate.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-rate/tui-rate.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-rate/tui-rate.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-scroll-top/tui-scroll-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-scroll-top/tui-scroll-top.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-scroll-top/tui-scroll-top.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-scroll-top/tui-scroll-top.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-scroll-top/tui-scroll-top.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-scroll-top/tui-scroll-top.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-scroll-top/tui-scroll-top.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-sticky/tui-sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-sticky/tui-sticky.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-sticky/tui-sticky.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-sticky/tui-sticky.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-sticky/tui-sticky.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-sticky/tui-sticky.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-sticky/tui-sticky.wxs -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-sticky/tui-sticky.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-sticky/tui-sticky.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-swipe-action/tui-swipe-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-swipe-action/tui-swipe-action.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-swipe-action/tui-swipe-action.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-swipe-action/tui-swipe-action.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-swipe-action/tui-swipe-action.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-swipe-action/tui-swipe-action.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-swipe-action/tui-swipe-action.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tabs/tui-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tabs/tui-tabs.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tabs/tui-tabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tabs/tui-tabs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tabs/tui-tabs.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tabs/tui-tabs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tabs/tui-tabs.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tag/tui-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tag/tui-tag.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tag/tui-tag.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tag/tui-tag.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tag/tui-tag.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tag/tui-tag.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tag/tui-tag.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-time-axis/tui-time-axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-time-axis/tui-time-axis.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-time-axis/tui-time-axis.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-time-axis/tui-time-axis.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-time-axis/tui-time-axis.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-time-axis/tui-time-axis.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-time-axis/tui-time-axis.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-timeaxis-item/tui-timeaxis-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-timeaxis-item/tui-timeaxis-item.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-timeaxis-item/tui-timeaxis-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-timeaxis-item/tui-timeaxis-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-timeaxis-item/tui-timeaxis-item.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-timeaxis-item/tui-timeaxis-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-timeaxis-item/tui-timeaxis-item.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tips/tui-tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tips/tui-tips.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tips/tui-tips.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tips/tui-tips.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tips/tui-tips.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-tips/tui-tips.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-tips/tui-tips.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-toast/tui-toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-toast/tui-toast.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-toast/tui-toast.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-toast/tui-toast.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-toast/tui-toast.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-toast/tui-toast.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-toast/tui-toast.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-top-dropdown/tui-top-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-top-dropdown/tui-top-dropdown.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-top-dropdown/tui-top-dropdown.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-top-dropdown/tui-top-dropdown.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-top-dropdown/tui-top-dropdown.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-top-dropdown/tui-top-dropdown.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-top-dropdown/tui-top-dropdown.wxss -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-upload/tui-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-upload/tui-upload.js -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-upload/tui-upload.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-upload/tui-upload.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-upload/tui-upload.wxml -------------------------------------------------------------------------------- /WISE-Mini/thorui/tui-upload/tui-upload.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/thorui/tui-upload/tui-upload.wxss -------------------------------------------------------------------------------- /WISE-Mini/utils/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/utils/API.js -------------------------------------------------------------------------------- /WISE-Mini/utils/formatutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/utils/formatutil.js -------------------------------------------------------------------------------- /WISE-Mini/utils/objectutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/utils/objectutil.js -------------------------------------------------------------------------------- /WISE-Mini/utils/qiniuUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/WISE-Mini/utils/qiniuUploader.js -------------------------------------------------------------------------------- /WISE-Mini/微信小程序根目录.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /数据库脚本(在mysql中执行即可)/wised.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/数据库脚本(在mysql中执行即可)/wised.sql -------------------------------------------------------------------------------- /数据库脚本(在mysql中执行即可)/数据库自动备份脚本.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeeo/WISE-OS/HEAD/数据库脚本(在mysql中执行即可)/数据库自动备份脚本.sh --------------------------------------------------------------------------------