├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── jest.config.js ├── jsconfig.json ├── mock ├── index.js ├── mock-server.js ├── table.js ├── user.js └── utils.js ├── package.json ├── postcss.config.js ├── public ├── css │ └── font-awesome.min.css ├── favicon.ico ├── fonts │ └── fontawesome-webfont.woff ├── index.html └── static │ └── images │ ├── avatar.png │ └── loading.gif ├── src ├── App.vue ├── api │ ├── table.js │ └── user.js ├── assets │ ├── 404_images │ │ ├── 404.png │ │ └── 404_cloud.png │ └── favicon.ico ├── components │ ├── Ad │ │ ├── AdAddPage.vue │ │ └── AdPage.vue │ ├── Admin │ │ ├── AdminAddPage.vue │ │ └── AdminPage.vue │ ├── Category │ │ ├── CategoryAddPage.vue │ │ └── CategoryPage.vue │ ├── Common │ │ ├── Countdown.vue │ │ ├── Navbar.vue │ │ └── Sidebar.vue │ ├── DashboardPage.vue │ ├── Freight │ │ ├── ExceptAreaAddPage.vue │ │ ├── ExceptAreaPage.vue │ │ ├── FreightAddPage.vue │ │ └── FreightPage.vue │ ├── Goods │ │ ├── GoodsAddPage.vue │ │ ├── GoodsPage.vue │ │ └── new_file.vue │ ├── GoodsGallery │ │ └── GoodsGalleryEditPage.vue │ ├── Keywords │ │ ├── KeywordsAddPage.vue │ │ └── KeywordsPage.vue │ ├── LoginPage.vue │ ├── Nature │ │ └── NaturePage.vue │ ├── Order │ │ ├── OrderDetailPage.vue │ │ └── OrderPage.vue │ ├── Settings │ │ └── NoticePage.vue │ ├── Shipper │ │ ├── ShipperAddPage.vue │ │ ├── ShipperListPage.vue │ │ └── ShipperPage.vue │ ├── ShopCart │ │ └── ShopCartPage.vue │ ├── Showset │ │ └── ShowSetPage.vue │ ├── Specification │ │ └── SpecificationAddPage.vue │ ├── User │ │ ├── UserAddPage.vue │ │ └── UserPage.vue │ ├── Wap │ │ ├── CenterPage.vue │ │ ├── Footerbar.vue │ │ ├── GoodsPage.vue │ │ ├── OrderPage.vue │ │ ├── Topbar.vue │ │ └── WapPage.vue │ ├── WapPage.vue │ └── WelcomePage.vue ├── config │ └── api.js ├── main.js ├── permission.js ├── router │ └── index.js ├── settings.js ├── store │ ├── index.js │ └── modules │ │ └── index.js └── styles │ ├── element-ui.scss │ ├── index.scss │ ├── mixin.scss │ ├── sidebar.scss │ ├── transition.scss │ └── variables.scss └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/jsconfig.json -------------------------------------------------------------------------------- /mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/mock/index.js -------------------------------------------------------------------------------- /mock/mock-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/mock/mock-server.js -------------------------------------------------------------------------------- /mock/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/mock/table.js -------------------------------------------------------------------------------- /mock/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/mock/user.js -------------------------------------------------------------------------------- /mock/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/mock/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/public/css/font-awesome.min.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/public/index.html -------------------------------------------------------------------------------- /public/static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/public/static/images/avatar.png -------------------------------------------------------------------------------- /public/static/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/public/static/images/loading.gif -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/api/table.js -------------------------------------------------------------------------------- /src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/api/user.js -------------------------------------------------------------------------------- /src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/assets/404_images/404.png -------------------------------------------------------------------------------- /src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/components/Ad/AdAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Ad/AdAddPage.vue -------------------------------------------------------------------------------- /src/components/Ad/AdPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Ad/AdPage.vue -------------------------------------------------------------------------------- /src/components/Admin/AdminAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Admin/AdminAddPage.vue -------------------------------------------------------------------------------- /src/components/Admin/AdminPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Admin/AdminPage.vue -------------------------------------------------------------------------------- /src/components/Category/CategoryAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Category/CategoryAddPage.vue -------------------------------------------------------------------------------- /src/components/Category/CategoryPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Category/CategoryPage.vue -------------------------------------------------------------------------------- /src/components/Common/Countdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Common/Countdown.vue -------------------------------------------------------------------------------- /src/components/Common/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Common/Navbar.vue -------------------------------------------------------------------------------- /src/components/Common/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Common/Sidebar.vue -------------------------------------------------------------------------------- /src/components/DashboardPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/DashboardPage.vue -------------------------------------------------------------------------------- /src/components/Freight/ExceptAreaAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Freight/ExceptAreaAddPage.vue -------------------------------------------------------------------------------- /src/components/Freight/ExceptAreaPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Freight/ExceptAreaPage.vue -------------------------------------------------------------------------------- /src/components/Freight/FreightAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Freight/FreightAddPage.vue -------------------------------------------------------------------------------- /src/components/Freight/FreightPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Freight/FreightPage.vue -------------------------------------------------------------------------------- /src/components/Goods/GoodsAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Goods/GoodsAddPage.vue -------------------------------------------------------------------------------- /src/components/Goods/GoodsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Goods/GoodsPage.vue -------------------------------------------------------------------------------- /src/components/Goods/new_file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Goods/new_file.vue -------------------------------------------------------------------------------- /src/components/GoodsGallery/GoodsGalleryEditPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/GoodsGallery/GoodsGalleryEditPage.vue -------------------------------------------------------------------------------- /src/components/Keywords/KeywordsAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Keywords/KeywordsAddPage.vue -------------------------------------------------------------------------------- /src/components/Keywords/KeywordsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Keywords/KeywordsPage.vue -------------------------------------------------------------------------------- /src/components/LoginPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/LoginPage.vue -------------------------------------------------------------------------------- /src/components/Nature/NaturePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Nature/NaturePage.vue -------------------------------------------------------------------------------- /src/components/Order/OrderDetailPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Order/OrderDetailPage.vue -------------------------------------------------------------------------------- /src/components/Order/OrderPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Order/OrderPage.vue -------------------------------------------------------------------------------- /src/components/Settings/NoticePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Settings/NoticePage.vue -------------------------------------------------------------------------------- /src/components/Shipper/ShipperAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Shipper/ShipperAddPage.vue -------------------------------------------------------------------------------- /src/components/Shipper/ShipperListPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Shipper/ShipperListPage.vue -------------------------------------------------------------------------------- /src/components/Shipper/ShipperPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Shipper/ShipperPage.vue -------------------------------------------------------------------------------- /src/components/ShopCart/ShopCartPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/ShopCart/ShopCartPage.vue -------------------------------------------------------------------------------- /src/components/Showset/ShowSetPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Showset/ShowSetPage.vue -------------------------------------------------------------------------------- /src/components/Specification/SpecificationAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Specification/SpecificationAddPage.vue -------------------------------------------------------------------------------- /src/components/User/UserAddPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/User/UserAddPage.vue -------------------------------------------------------------------------------- /src/components/User/UserPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/User/UserPage.vue -------------------------------------------------------------------------------- /src/components/Wap/CenterPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Wap/CenterPage.vue -------------------------------------------------------------------------------- /src/components/Wap/Footerbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Wap/Footerbar.vue -------------------------------------------------------------------------------- /src/components/Wap/GoodsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Wap/GoodsPage.vue -------------------------------------------------------------------------------- /src/components/Wap/OrderPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Wap/OrderPage.vue -------------------------------------------------------------------------------- /src/components/Wap/Topbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Wap/Topbar.vue -------------------------------------------------------------------------------- /src/components/Wap/WapPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/Wap/WapPage.vue -------------------------------------------------------------------------------- /src/components/WapPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/WapPage.vue -------------------------------------------------------------------------------- /src/components/WelcomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/components/WelcomePage.vue -------------------------------------------------------------------------------- /src/config/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/config/api.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/main.js -------------------------------------------------------------------------------- /src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/permission.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/settings.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/store/modules/index.js -------------------------------------------------------------------------------- /src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/styles/element-ui.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/styles/mixin.scss -------------------------------------------------------------------------------- /src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/styles/sidebar.scss -------------------------------------------------------------------------------- /src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/styles/transition.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamdarcy/hioshop-admin-web/HEAD/vue.config.js --------------------------------------------------------------------------------