├── README.md ├── legao-desktop ├── . jsbeautifyrc ├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── local.test.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ └── prod.env.js ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── api │ │ ├── asset.js │ │ ├── bak.js │ │ ├── inventory.js │ │ ├── login.js │ │ ├── member-sell.js │ │ ├── member.js │ │ ├── order.js │ │ ├── pay.js │ │ └── shop.js │ ├── components │ │ ├── Breadcrumb │ │ │ └── index.vue │ │ ├── Hamburger │ │ │ └── index.vue │ │ ├── ScrollPane │ │ │ └── index.vue │ │ └── SvgIcon │ │ │ └── index.vue │ ├── config │ │ ├── flex.js │ │ ├── index.js │ │ └── rem.js │ ├── images │ │ ├── common │ │ │ ├── background.png │ │ │ └── logo.png │ │ ├── home │ │ │ ├── asset.png │ │ │ ├── destroy.png │ │ │ ├── inventory.png │ │ │ ├── logo.png │ │ │ ├── man.png │ │ │ ├── member.png │ │ │ ├── order.png │ │ │ ├── plane.png │ │ │ ├── query.png │ │ │ ├── return.png │ │ │ ├── sell.png │ │ │ ├── shop.png │ │ │ └── statistics.png │ │ ├── login │ │ │ ├── Icon.png │ │ │ ├── Landing.png │ │ │ ├── background-test.jpg │ │ │ ├── background.png │ │ │ ├── button.png │ │ │ └── icon2.png │ │ ├── member-sell │ │ │ ├── 1-1.png │ │ │ ├── 1-2.png │ │ │ ├── 1-3.png │ │ │ ├── 2-1.png │ │ │ ├── 2-2.png │ │ │ ├── 2-3.png │ │ │ ├── 3-1.png │ │ │ ├── 3-2.png │ │ │ ├── 3-3.png │ │ │ ├── 4-1.png │ │ │ └── button.png │ │ └── member │ │ │ ├── code.png │ │ │ ├── fail.png │ │ │ └── success.png │ ├── lang │ │ ├── en.js │ │ ├── index.js │ │ └── zh.js │ ├── main.js │ ├── mock │ │ ├── index.js │ │ ├── inventory.js │ │ ├── login.js │ │ ├── member.js │ │ └── order.js │ ├── plugins │ │ └── swiper.min.js │ ├── router │ │ ├── defaultMap.js │ │ ├── index.js │ │ ├── mainMap.js │ │ ├── permission.js │ │ └── staticMap.js │ ├── store │ │ ├── getters.js │ │ ├── index.js │ │ └── modules │ │ │ ├── app.js │ │ │ ├── limit.js │ │ │ ├── member.js │ │ │ ├── pay.js │ │ │ ├── permission.js │ │ │ └── user.js │ ├── styles │ │ ├── 1200screen.scss │ │ ├── common.scss │ │ ├── container.scss │ │ ├── dialog.scss │ │ ├── element-ui.scss │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── swiper.min.css │ ├── svg │ │ ├── 404.svg │ │ ├── asset.svg │ │ ├── clipboard.svg │ │ ├── destroy.svg │ │ ├── eye.svg │ │ ├── home.svg │ │ ├── icon.svg │ │ ├── inventory.svg │ │ ├── lock.svg │ │ ├── member.svg │ │ ├── message.svg │ │ ├── order.svg │ │ ├── password.svg │ │ ├── people.svg │ │ ├── peoples.svg │ │ ├── query.svg │ │ ├── return.svg │ │ ├── sell.svg │ │ ├── shop.svg │ │ ├── shoppingCard.svg │ │ ├── star.svg │ │ ├── statistics.svg │ │ ├── theme.svg │ │ └── user.svg │ ├── utils │ │ ├── cookie.js │ │ ├── fetch.js │ │ ├── i18n.js │ │ ├── index.js │ │ ├── request.js │ │ ├── status.js │ │ └── validate.js │ └── views │ │ ├── asset │ │ ├── index.vue │ │ └── list.vue │ │ ├── common │ │ ├── 401.vue │ │ ├── 404.vue │ │ ├── Header │ │ │ ├── breadcrumb.vue │ │ │ └── index.vue │ │ ├── dialog.vue │ │ ├── filter.vue │ │ ├── member │ │ │ ├── list.vue │ │ │ ├── manage.vue │ │ │ └── query.vue │ │ ├── pagination.vue │ │ ├── pay.vue │ │ └── qr.vue │ │ ├── home │ │ └── index.vue │ │ ├── index.js │ │ ├── inventory │ │ └── index.vue │ │ ├── layout │ │ ├── Header │ │ │ ├── breadcrumb.vue │ │ │ └── index.vue │ │ ├── Main.vue │ │ ├── Sidebar │ │ │ ├── MainBar.vue │ │ │ ├── SidebarItem.vue │ │ │ ├── StaticBar.vue │ │ │ ├── bak.vue │ │ │ └── index.vue │ │ └── index.vue │ │ ├── login │ │ └── index.vue │ │ ├── member-sell │ │ └── index.vue │ │ ├── member │ │ └── index.vue │ │ ├── order │ │ ├── details.vue │ │ ├── find-parts.vue │ │ ├── index.vue │ │ ├── type-in.vue │ │ └── type-in123.vue │ │ ├── product-destroy │ │ └── index.vue │ │ ├── product-return │ │ └── index.vue │ │ ├── shop │ │ └── index.vue │ │ └── statistics │ │ └── index.vue └── static │ └── .gitkeep └── legao-mobile ├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── build ├── build.js ├── check-versions.js ├── local.test.js ├── logo.png ├── utils.js ├── vue-loader.conf.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── api │ ├── bak.js │ ├── home.js │ ├── inventory.js │ ├── login.js │ ├── member-sell.js │ ├── member.js │ ├── order.js │ └── shop.js ├── assets │ └── logo.png ├── config │ ├── index.js │ └── rem.js ├── images │ ├── details │ │ ├── cover-bottom.png │ │ └── cover-top.png │ ├── home │ │ ├── arrows.png │ │ ├── card.png │ │ ├── icon.png │ │ ├── indicator.png │ │ ├── location.png │ │ ├── order.png │ │ ├── popup.png │ │ ├── qr.png │ │ ├── query.png │ │ └── type.png │ ├── notice │ │ ├── indicator.png │ │ └── notice.png │ └── share │ │ ├── copy.png │ │ ├── kongjian.png │ │ ├── pyq.png │ │ ├── qq.png │ │ ├── weixin.png │ │ └── xinlang.png ├── main.js ├── router │ └── index.js ├── store │ ├── getters.js │ ├── index.js │ └── modules │ │ ├── app.js │ │ ├── head.js │ │ ├── permission.js │ │ └── user.js ├── styles │ ├── common.scss │ └── mixin.scss ├── theme.styl ├── utils │ ├── cookie.js │ ├── fetch.js │ ├── i18n.js │ ├── index.js │ ├── request.js │ ├── status.js │ └── validate.js ├── vant │ └── index.js └── views │ ├── common │ ├── head.vue │ └── headMenu.vue │ ├── details.vue │ ├── home.vue │ └── notice.vue └── static └── .gitkeep /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/README.md -------------------------------------------------------------------------------- /legao-desktop/. jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/. jsbeautifyrc -------------------------------------------------------------------------------- /legao-desktop/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/.babelrc -------------------------------------------------------------------------------- /legao-desktop/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/.editorconfig -------------------------------------------------------------------------------- /legao-desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/.gitignore -------------------------------------------------------------------------------- /legao-desktop/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/.postcssrc.js -------------------------------------------------------------------------------- /legao-desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/README.md -------------------------------------------------------------------------------- /legao-desktop/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/build.js -------------------------------------------------------------------------------- /legao-desktop/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/check-versions.js -------------------------------------------------------------------------------- /legao-desktop/build/local.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/local.test.js -------------------------------------------------------------------------------- /legao-desktop/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/utils.js -------------------------------------------------------------------------------- /legao-desktop/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/vue-loader.conf.js -------------------------------------------------------------------------------- /legao-desktop/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/webpack.base.conf.js -------------------------------------------------------------------------------- /legao-desktop/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /legao-desktop/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /legao-desktop/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/config/dev.env.js -------------------------------------------------------------------------------- /legao-desktop/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/config/index.js -------------------------------------------------------------------------------- /legao-desktop/config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/config/prod.env.js -------------------------------------------------------------------------------- /legao-desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/index.html -------------------------------------------------------------------------------- /legao-desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/package.json -------------------------------------------------------------------------------- /legao-desktop/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/App.vue -------------------------------------------------------------------------------- /legao-desktop/src/api/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/asset.js -------------------------------------------------------------------------------- /legao-desktop/src/api/bak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/bak.js -------------------------------------------------------------------------------- /legao-desktop/src/api/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/inventory.js -------------------------------------------------------------------------------- /legao-desktop/src/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/login.js -------------------------------------------------------------------------------- /legao-desktop/src/api/member-sell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/member-sell.js -------------------------------------------------------------------------------- /legao-desktop/src/api/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/member.js -------------------------------------------------------------------------------- /legao-desktop/src/api/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/order.js -------------------------------------------------------------------------------- /legao-desktop/src/api/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/pay.js -------------------------------------------------------------------------------- /legao-desktop/src/api/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/api/shop.js -------------------------------------------------------------------------------- /legao-desktop/src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/components/ScrollPane/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/components/ScrollPane/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/config/flex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/config/flex.js -------------------------------------------------------------------------------- /legao-desktop/src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/config/index.js -------------------------------------------------------------------------------- /legao-desktop/src/config/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/config/rem.js -------------------------------------------------------------------------------- /legao-desktop/src/images/common/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/common/background.png -------------------------------------------------------------------------------- /legao-desktop/src/images/common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/common/logo.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/asset.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/destroy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/destroy.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/inventory.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/logo.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/man.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/member.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/order.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/plane.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/query.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/return.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/sell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/sell.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/shop.png -------------------------------------------------------------------------------- /legao-desktop/src/images/home/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/home/statistics.png -------------------------------------------------------------------------------- /legao-desktop/src/images/login/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/login/Icon.png -------------------------------------------------------------------------------- /legao-desktop/src/images/login/Landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/login/Landing.png -------------------------------------------------------------------------------- /legao-desktop/src/images/login/background-test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/login/background-test.jpg -------------------------------------------------------------------------------- /legao-desktop/src/images/login/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/login/background.png -------------------------------------------------------------------------------- /legao-desktop/src/images/login/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/login/button.png -------------------------------------------------------------------------------- /legao-desktop/src/images/login/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/login/icon2.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/1-1.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/1-2.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/1-3.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/2-1.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/2-2.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/2-3.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/3-1.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/3-2.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/3-3.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/4-1.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member-sell/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member-sell/button.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member/code.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member/fail.png -------------------------------------------------------------------------------- /legao-desktop/src/images/member/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/images/member/success.png -------------------------------------------------------------------------------- /legao-desktop/src/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/lang/en.js -------------------------------------------------------------------------------- /legao-desktop/src/lang/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/lang/index.js -------------------------------------------------------------------------------- /legao-desktop/src/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/lang/zh.js -------------------------------------------------------------------------------- /legao-desktop/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/main.js -------------------------------------------------------------------------------- /legao-desktop/src/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/mock/index.js -------------------------------------------------------------------------------- /legao-desktop/src/mock/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/mock/inventory.js -------------------------------------------------------------------------------- /legao-desktop/src/mock/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/mock/login.js -------------------------------------------------------------------------------- /legao-desktop/src/mock/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/mock/member.js -------------------------------------------------------------------------------- /legao-desktop/src/mock/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/mock/order.js -------------------------------------------------------------------------------- /legao-desktop/src/plugins/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/plugins/swiper.min.js -------------------------------------------------------------------------------- /legao-desktop/src/router/defaultMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/router/defaultMap.js -------------------------------------------------------------------------------- /legao-desktop/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/router/index.js -------------------------------------------------------------------------------- /legao-desktop/src/router/mainMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/router/mainMap.js -------------------------------------------------------------------------------- /legao-desktop/src/router/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/router/permission.js -------------------------------------------------------------------------------- /legao-desktop/src/router/staticMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/router/staticMap.js -------------------------------------------------------------------------------- /legao-desktop/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/getters.js -------------------------------------------------------------------------------- /legao-desktop/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/index.js -------------------------------------------------------------------------------- /legao-desktop/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/modules/app.js -------------------------------------------------------------------------------- /legao-desktop/src/store/modules/limit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/modules/limit.js -------------------------------------------------------------------------------- /legao-desktop/src/store/modules/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/modules/member.js -------------------------------------------------------------------------------- /legao-desktop/src/store/modules/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/modules/pay.js -------------------------------------------------------------------------------- /legao-desktop/src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/modules/permission.js -------------------------------------------------------------------------------- /legao-desktop/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/store/modules/user.js -------------------------------------------------------------------------------- /legao-desktop/src/styles/1200screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/1200screen.scss -------------------------------------------------------------------------------- /legao-desktop/src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/common.scss -------------------------------------------------------------------------------- /legao-desktop/src/styles/container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/container.scss -------------------------------------------------------------------------------- /legao-desktop/src/styles/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/dialog.scss -------------------------------------------------------------------------------- /legao-desktop/src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/element-ui.scss -------------------------------------------------------------------------------- /legao-desktop/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/index.scss -------------------------------------------------------------------------------- /legao-desktop/src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/mixin.scss -------------------------------------------------------------------------------- /legao-desktop/src/styles/swiper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/styles/swiper.min.css -------------------------------------------------------------------------------- /legao-desktop/src/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/404.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/asset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/asset.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/clipboard.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/destroy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/destroy.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/eye.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/home.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/icon.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/inventory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/inventory.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/lock.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/member.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/member.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/message.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/order.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/password.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/people.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/peoples.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/query.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/query.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/return.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/sell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/sell.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/shop.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/shoppingCard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/shoppingCard.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/star.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/statistics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/statistics.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/theme.svg -------------------------------------------------------------------------------- /legao-desktop/src/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/svg/user.svg -------------------------------------------------------------------------------- /legao-desktop/src/utils/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/utils/cookie.js -------------------------------------------------------------------------------- /legao-desktop/src/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/utils/fetch.js -------------------------------------------------------------------------------- /legao-desktop/src/utils/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/utils/i18n.js -------------------------------------------------------------------------------- /legao-desktop/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/utils/index.js -------------------------------------------------------------------------------- /legao-desktop/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/utils/request.js -------------------------------------------------------------------------------- /legao-desktop/src/utils/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/utils/status.js -------------------------------------------------------------------------------- /legao-desktop/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/utils/validate.js -------------------------------------------------------------------------------- /legao-desktop/src/views/asset/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/asset/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/asset/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/asset/list.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/401.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/404.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/Header/breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/Header/breadcrumb.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/Header/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/Header/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/dialog.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/filter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/filter.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/member/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/member/list.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/member/manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/member/manage.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/member/query.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/member/query.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/pagination.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/pay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/pay.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/common/qr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/common/qr.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/home/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/index.js -------------------------------------------------------------------------------- /legao-desktop/src/views/inventory/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/inventory/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Header/breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Header/breadcrumb.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Header/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Header/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Main.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Sidebar/MainBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Sidebar/MainBar.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Sidebar/StaticBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Sidebar/StaticBar.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Sidebar/bak.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Sidebar/bak.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/Sidebar/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/layout/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/login/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/member-sell/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/member-sell/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/member/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/member/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/order/details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/order/details.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/order/find-parts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/order/find-parts.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/order/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/order/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/order/type-in.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/order/type-in.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/order/type-in123.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/order/type-in123.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/product-destroy/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/product-destroy/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/product-return/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/product-return/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/shop/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/shop/index.vue -------------------------------------------------------------------------------- /legao-desktop/src/views/statistics/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-desktop/src/views/statistics/index.vue -------------------------------------------------------------------------------- /legao-desktop/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legao-mobile/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/.babelrc -------------------------------------------------------------------------------- /legao-mobile/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/.editorconfig -------------------------------------------------------------------------------- /legao-mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/.gitignore -------------------------------------------------------------------------------- /legao-mobile/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/.postcssrc.js -------------------------------------------------------------------------------- /legao-mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/README.md -------------------------------------------------------------------------------- /legao-mobile/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/build.js -------------------------------------------------------------------------------- /legao-mobile/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/check-versions.js -------------------------------------------------------------------------------- /legao-mobile/build/local.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/local.test.js -------------------------------------------------------------------------------- /legao-mobile/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/logo.png -------------------------------------------------------------------------------- /legao-mobile/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/utils.js -------------------------------------------------------------------------------- /legao-mobile/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/vue-loader.conf.js -------------------------------------------------------------------------------- /legao-mobile/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/webpack.base.conf.js -------------------------------------------------------------------------------- /legao-mobile/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /legao-mobile/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /legao-mobile/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/config/dev.env.js -------------------------------------------------------------------------------- /legao-mobile/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/config/index.js -------------------------------------------------------------------------------- /legao-mobile/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /legao-mobile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/index.html -------------------------------------------------------------------------------- /legao-mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/package.json -------------------------------------------------------------------------------- /legao-mobile/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/App.vue -------------------------------------------------------------------------------- /legao-mobile/src/api/bak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/bak.js -------------------------------------------------------------------------------- /legao-mobile/src/api/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/home.js -------------------------------------------------------------------------------- /legao-mobile/src/api/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/inventory.js -------------------------------------------------------------------------------- /legao-mobile/src/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/login.js -------------------------------------------------------------------------------- /legao-mobile/src/api/member-sell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/member-sell.js -------------------------------------------------------------------------------- /legao-mobile/src/api/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/member.js -------------------------------------------------------------------------------- /legao-mobile/src/api/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/order.js -------------------------------------------------------------------------------- /legao-mobile/src/api/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/api/shop.js -------------------------------------------------------------------------------- /legao-mobile/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/assets/logo.png -------------------------------------------------------------------------------- /legao-mobile/src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/config/index.js -------------------------------------------------------------------------------- /legao-mobile/src/config/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/config/rem.js -------------------------------------------------------------------------------- /legao-mobile/src/images/details/cover-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/details/cover-bottom.png -------------------------------------------------------------------------------- /legao-mobile/src/images/details/cover-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/details/cover-top.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/arrows.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/card.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/icon.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/indicator.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/location.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/order.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/popup.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/qr.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/query.png -------------------------------------------------------------------------------- /legao-mobile/src/images/home/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/home/type.png -------------------------------------------------------------------------------- /legao-mobile/src/images/notice/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/notice/indicator.png -------------------------------------------------------------------------------- /legao-mobile/src/images/notice/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/notice/notice.png -------------------------------------------------------------------------------- /legao-mobile/src/images/share/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/share/copy.png -------------------------------------------------------------------------------- /legao-mobile/src/images/share/kongjian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/share/kongjian.png -------------------------------------------------------------------------------- /legao-mobile/src/images/share/pyq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/share/pyq.png -------------------------------------------------------------------------------- /legao-mobile/src/images/share/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/share/qq.png -------------------------------------------------------------------------------- /legao-mobile/src/images/share/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/share/weixin.png -------------------------------------------------------------------------------- /legao-mobile/src/images/share/xinlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/images/share/xinlang.png -------------------------------------------------------------------------------- /legao-mobile/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/main.js -------------------------------------------------------------------------------- /legao-mobile/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/router/index.js -------------------------------------------------------------------------------- /legao-mobile/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/store/getters.js -------------------------------------------------------------------------------- /legao-mobile/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/store/index.js -------------------------------------------------------------------------------- /legao-mobile/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/store/modules/app.js -------------------------------------------------------------------------------- /legao-mobile/src/store/modules/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/store/modules/head.js -------------------------------------------------------------------------------- /legao-mobile/src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/store/modules/permission.js -------------------------------------------------------------------------------- /legao-mobile/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/store/modules/user.js -------------------------------------------------------------------------------- /legao-mobile/src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/styles/common.scss -------------------------------------------------------------------------------- /legao-mobile/src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/styles/mixin.scss -------------------------------------------------------------------------------- /legao-mobile/src/theme.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legao-mobile/src/utils/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/utils/cookie.js -------------------------------------------------------------------------------- /legao-mobile/src/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/utils/fetch.js -------------------------------------------------------------------------------- /legao-mobile/src/utils/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/utils/i18n.js -------------------------------------------------------------------------------- /legao-mobile/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/utils/index.js -------------------------------------------------------------------------------- /legao-mobile/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/utils/request.js -------------------------------------------------------------------------------- /legao-mobile/src/utils/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/utils/status.js -------------------------------------------------------------------------------- /legao-mobile/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/utils/validate.js -------------------------------------------------------------------------------- /legao-mobile/src/vant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/vant/index.js -------------------------------------------------------------------------------- /legao-mobile/src/views/common/head.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/views/common/head.vue -------------------------------------------------------------------------------- /legao-mobile/src/views/common/headMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/views/common/headMenu.vue -------------------------------------------------------------------------------- /legao-mobile/src/views/details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/views/details.vue -------------------------------------------------------------------------------- /legao-mobile/src/views/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/views/home.vue -------------------------------------------------------------------------------- /legao-mobile/src/views/notice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsAaron/vue2-legao-shops/HEAD/legao-mobile/src/views/notice.vue -------------------------------------------------------------------------------- /legao-mobile/static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------