├── .gitattributes ├── .gitignore ├── README.md ├── VueAntDesignAdmin.sln ├── VueAntDesignAdmin ├── .babelrc ├── ClientApp │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── HelloWorld.vue │ │ ├── analysis │ │ │ ├── HotSearch.vue │ │ │ └── SalesData.vue │ │ ├── card │ │ │ └── ChartCard.vue │ │ ├── chart │ │ │ ├── Bar.vue │ │ │ ├── MiniArea.vue │ │ │ ├── MiniBar.vue │ │ │ ├── MiniProgress.vue │ │ │ ├── Radar.vue │ │ │ ├── RankingList.vue │ │ │ ├── Trend.vue │ │ │ └── index.less │ │ ├── checkbox │ │ │ ├── ColorCheckbox.vue │ │ │ └── ImgCheckbox.vue │ │ ├── exception │ │ │ ├── ExceptionPage.vue │ │ │ └── typeConfig.js │ │ ├── form │ │ │ └── FormRow.vue │ │ ├── menu │ │ │ ├── Contextmenu.vue │ │ │ ├── SiderMenu.vue │ │ │ └── menu.js │ │ ├── page │ │ │ └── PageHeader.vue │ │ ├── result │ │ │ └── Result.vue │ │ ├── setting │ │ │ ├── Setting.vue │ │ │ ├── SettingItem.vue │ │ │ └── StyleItem.vue │ │ ├── table │ │ │ └── StandardTable.vue │ │ ├── task │ │ │ ├── TaskGroup.vue │ │ │ └── TaskItem.vue │ │ └── tool │ │ │ ├── AStepItem.vue │ │ │ ├── AvatarList.vue │ │ │ ├── DetailList.vue │ │ │ ├── Drawer.vue │ │ │ ├── FooterToolBar.vue │ │ │ ├── HeadInfo.vue │ │ │ ├── TagSelect.vue │ │ │ └── TagSelectOption.vue │ ├── index.js │ ├── layouts │ │ ├── GlobalFooter.vue │ │ ├── GlobalHeader.vue │ │ ├── GlobalLayout.vue │ │ ├── HeaderNotice.vue │ │ ├── HeaderSearch.vue │ │ ├── HeaderlAvatar.vue │ │ ├── MenuView.vue │ │ ├── PageLayout.vue │ │ ├── PageView.vue │ │ └── RouteView.vue │ ├── mock │ │ ├── common │ │ │ ├── activityData.js │ │ │ ├── index.js │ │ │ └── tableData.js │ │ ├── extend │ │ │ └── index.js │ │ ├── index.js │ │ ├── project │ │ │ └── index.js │ │ ├── user │ │ │ ├── current.js │ │ │ └── login.js │ │ └── workplace │ │ │ └── index.js │ ├── pages │ │ ├── components │ │ │ ├── Palette.vue │ │ │ └── TaskCard.vue │ │ ├── dashboard │ │ │ ├── Analysis.vue │ │ │ └── WorkPlace.vue │ │ ├── detail │ │ │ ├── AdvancedDetail.vue │ │ │ └── BasicDetail.vue │ │ ├── exception │ │ │ ├── 403.vue │ │ │ ├── 404.vue │ │ │ └── 500.vue │ │ ├── form │ │ │ ├── BasicForm.vue │ │ │ ├── advancedForm │ │ │ │ ├── AdvancedForm.vue │ │ │ │ ├── RepositoryForm.vue │ │ │ │ ├── TableForm.vue │ │ │ │ └── TaskForm.vue │ │ │ └── stepForm │ │ │ │ ├── Step1.vue │ │ │ │ ├── Step2.vue │ │ │ │ ├── Step3.vue │ │ │ │ └── StepForm.vue │ │ ├── list │ │ │ ├── CardList.vue │ │ │ ├── QueryList.vue │ │ │ ├── StandardList.vue │ │ │ └── search │ │ │ │ ├── ApplicationList.vue │ │ │ │ ├── ArticleList.vue │ │ │ │ ├── ProjectList.vue │ │ │ │ ├── SearchForm.vue │ │ │ │ └── SearchLayout.vue │ │ ├── login │ │ │ └── Login.vue │ │ └── result │ │ │ ├── Error.vue │ │ │ └── Success.vue │ ├── router │ │ ├── index.js │ │ └── lazy.js │ ├── store │ │ ├── index.js │ │ └── modules │ │ │ ├── account.js │ │ │ └── setting.js │ └── utils │ │ ├── device.js │ │ └── utils.less ├── Controllers │ └── HomeController.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ └── Error.cshtml │ └── _ViewImports.cshtml ├── VueAntDesignAdmin.csproj ├── appsettings.Development.json ├── appsettings.json ├── package-lock.json ├── package.json ├── webpack.config.js └── wwwroot │ ├── index.html │ └── static │ ├── .gitkeep │ ├── favicon.icon │ └── img │ ├── preview.jpg │ └── vue-antd-logo.png └── docs ├── 20190915152644.png ├── 20190915152728.png ├── 20190915152800.png ├── 20190915155328.png ├── 20190915155909.png ├── 20190915160730.png └── 20190915161032.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/README.md -------------------------------------------------------------------------------- /VueAntDesignAdmin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin.sln -------------------------------------------------------------------------------- /VueAntDesignAdmin/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/.babelrc -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/App.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/assets/logo.png -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/HelloWorld.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/analysis/HotSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/analysis/HotSearch.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/analysis/SalesData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/analysis/SalesData.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/card/ChartCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/card/ChartCard.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/Bar.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/MiniArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/MiniArea.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/MiniBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/MiniBar.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/MiniProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/MiniProgress.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/Radar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/Radar.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/RankingList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/RankingList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/Trend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/Trend.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/chart/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/chart/index.less -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/checkbox/ColorCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/checkbox/ColorCheckbox.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/checkbox/ImgCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/checkbox/ImgCheckbox.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/exception/ExceptionPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/exception/ExceptionPage.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/exception/typeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/exception/typeConfig.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/form/FormRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/form/FormRow.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/menu/Contextmenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/menu/Contextmenu.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/menu/SiderMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/menu/SiderMenu.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/menu/menu.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/page/PageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/page/PageHeader.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/result/Result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/result/Result.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/setting/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/setting/Setting.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/setting/SettingItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/setting/SettingItem.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/setting/StyleItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/setting/StyleItem.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/table/StandardTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/table/StandardTable.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/task/TaskGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/task/TaskGroup.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/task/TaskItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/task/TaskItem.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/AStepItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/AStepItem.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/AvatarList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/AvatarList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/DetailList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/DetailList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/Drawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/Drawer.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/FooterToolBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/FooterToolBar.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/HeadInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/HeadInfo.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/TagSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/TagSelect.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/components/tool/TagSelectOption.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/components/tool/TagSelectOption.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/GlobalFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/GlobalFooter.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/GlobalHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/GlobalHeader.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/GlobalLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/GlobalLayout.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/HeaderNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/HeaderNotice.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/HeaderSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/HeaderSearch.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/HeaderlAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/HeaderlAvatar.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/MenuView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/MenuView.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/PageLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/PageLayout.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/PageView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/PageView.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/layouts/RouteView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/layouts/RouteView.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/common/activityData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/common/activityData.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/common/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/common/tableData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/common/tableData.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/extend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/extend/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/project/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/project/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/user/current.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/user/current.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/user/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/user/login.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/mock/workplace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/mock/workplace/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/components/Palette.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/components/Palette.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/components/TaskCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/components/TaskCard.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/dashboard/Analysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/dashboard/Analysis.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/dashboard/WorkPlace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/dashboard/WorkPlace.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/detail/AdvancedDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/detail/AdvancedDetail.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/detail/BasicDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/detail/BasicDetail.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/exception/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/exception/403.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/exception/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/exception/404.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/exception/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/exception/500.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/BasicForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/BasicForm.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/advancedForm/AdvancedForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/advancedForm/AdvancedForm.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/advancedForm/RepositoryForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/advancedForm/RepositoryForm.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/advancedForm/TableForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/advancedForm/TableForm.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/advancedForm/TaskForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/advancedForm/TaskForm.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/stepForm/Step1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/stepForm/Step1.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/stepForm/Step2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/stepForm/Step2.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/stepForm/Step3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/stepForm/Step3.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/form/stepForm/StepForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/form/stepForm/StepForm.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/CardList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/CardList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/QueryList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/QueryList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/StandardList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/StandardList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/search/ApplicationList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/search/ApplicationList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/search/ArticleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/search/ArticleList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/search/ProjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/search/ProjectList.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/search/SearchForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/search/SearchForm.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/list/search/SearchLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/list/search/SearchLayout.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/login/Login.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/result/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/result/Error.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/pages/result/Success.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/pages/result/Success.vue -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/router/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/router/lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/router/lazy.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/store/index.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/store/modules/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/store/modules/account.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/store/modules/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/store/modules/setting.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/utils/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/utils/device.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/ClientApp/utils/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/ClientApp/utils/utils.less -------------------------------------------------------------------------------- /VueAntDesignAdmin/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Controllers/HomeController.cs -------------------------------------------------------------------------------- /VueAntDesignAdmin/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /VueAntDesignAdmin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Program.cs -------------------------------------------------------------------------------- /VueAntDesignAdmin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Properties/launchSettings.json -------------------------------------------------------------------------------- /VueAntDesignAdmin/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Startup.cs -------------------------------------------------------------------------------- /VueAntDesignAdmin/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /VueAntDesignAdmin/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /VueAntDesignAdmin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /VueAntDesignAdmin/VueAntDesignAdmin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/VueAntDesignAdmin.csproj -------------------------------------------------------------------------------- /VueAntDesignAdmin/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/appsettings.Development.json -------------------------------------------------------------------------------- /VueAntDesignAdmin/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/appsettings.json -------------------------------------------------------------------------------- /VueAntDesignAdmin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/package-lock.json -------------------------------------------------------------------------------- /VueAntDesignAdmin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/package.json -------------------------------------------------------------------------------- /VueAntDesignAdmin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/webpack.config.js -------------------------------------------------------------------------------- /VueAntDesignAdmin/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/wwwroot/index.html -------------------------------------------------------------------------------- /VueAntDesignAdmin/wwwroot/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VueAntDesignAdmin/wwwroot/static/favicon.icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/wwwroot/static/favicon.icon -------------------------------------------------------------------------------- /VueAntDesignAdmin/wwwroot/static/img/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/wwwroot/static/img/preview.jpg -------------------------------------------------------------------------------- /VueAntDesignAdmin/wwwroot/static/img/vue-antd-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/VueAntDesignAdmin/wwwroot/static/img/vue-antd-logo.png -------------------------------------------------------------------------------- /docs/20190915152644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/docs/20190915152644.png -------------------------------------------------------------------------------- /docs/20190915152728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/docs/20190915152728.png -------------------------------------------------------------------------------- /docs/20190915152800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/docs/20190915152800.png -------------------------------------------------------------------------------- /docs/20190915155328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/docs/20190915155328.png -------------------------------------------------------------------------------- /docs/20190915155909.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/docs/20190915155909.png -------------------------------------------------------------------------------- /docs/20190915160730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/docs/20190915160730.png -------------------------------------------------------------------------------- /docs/20190915161032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Run2948/VueAntDesignAdmin/HEAD/docs/20190915161032.png --------------------------------------------------------------------------------