├── .editorconfig ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config ├── dev.js ├── index.js └── prod.js ├── package.json ├── project.config.json ├── src ├── actions │ ├── cart.js │ ├── cate.js │ ├── home.js │ ├── item.js │ └── user.js ├── app.js ├── app.scss ├── assets │ ├── default-avatar.png │ └── tab-bar │ │ ├── cart-active.png │ │ ├── cart.png │ │ ├── cate-active.png │ │ ├── cate.png │ │ ├── home-active.png │ │ ├── home.png │ │ ├── user-active.png │ │ └── user.png ├── components │ ├── button │ │ ├── index.js │ │ └── index.scss │ ├── checkbox │ │ ├── assets │ │ │ ├── checked.png │ │ │ └── un-checked.png │ │ ├── index.js │ │ └── index.scss │ ├── home-title │ │ ├── aseets │ │ │ └── arrow-right.png │ │ ├── index.js │ │ └── index.scss │ ├── index.js │ ├── input-item │ │ ├── assets │ │ │ └── clear.png │ │ ├── index.js │ │ └── index.scss │ ├── input-number │ │ ├── assets │ │ │ ├── minus-disabled.png │ │ │ ├── minus.png │ │ │ └── plus.png │ │ ├── index.js │ │ └── index.scss │ ├── item-list │ │ ├── index.js │ │ └── index.scss │ ├── loading │ │ ├── assets │ │ │ └── loading.gif │ │ ├── index.js │ │ └── index.scss │ ├── popup │ │ ├── assets │ │ │ └── close.png │ │ ├── index.js │ │ └── index.scss │ └── tag │ │ ├── index.js │ │ └── index.scss ├── constants │ ├── api.js │ ├── cart.js │ ├── cate.js │ ├── home.js │ ├── item.js │ └── user.js ├── index.html ├── pages │ ├── cart │ │ ├── cart.js │ │ ├── cart.scss │ │ ├── empty │ │ │ ├── assets │ │ │ │ └── empty.png │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── footer │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── gift │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── list │ │ │ ├── index.js │ │ │ └── index.scss │ │ └── tip │ │ │ ├── assets │ │ │ └── tip-icon.png │ │ │ ├── index.js │ │ │ └── index.scss │ ├── cate-sub │ │ ├── cate-sub.js │ │ ├── cate-sub.scss │ │ └── tab │ │ │ ├── index.js │ │ │ └── index.scss │ ├── cate │ │ ├── banner │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── cate.js │ │ ├── cate.scss │ │ ├── list │ │ │ ├── index.js │ │ │ └── index.scss │ │ └── menu │ │ │ ├── index.js │ │ │ └── index.scss │ ├── home │ │ ├── assets │ │ │ └── search.png │ │ ├── banner │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── category │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── flash-sale │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── home.js │ │ ├── home.scss │ │ ├── manufactory │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── operation │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── pin │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── policy │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── popular │ │ │ ├── assets │ │ │ │ └── img-bg.png │ │ │ ├── index.js │ │ │ └── index.scss │ │ └── recommend │ │ │ ├── index.js │ │ │ └── index.scss │ ├── item │ │ ├── detail │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── footer │ │ │ ├── assets │ │ │ │ ├── cart.png │ │ │ │ ├── home.png │ │ │ │ └── service.png │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── gallery │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── info-base │ │ │ ├── assets │ │ │ │ └── right-arrow.png │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── info-param │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── item.js │ │ ├── item.scss │ │ └── spec │ │ │ ├── index.js │ │ │ └── index.scss │ ├── user-login-email │ │ ├── user-login-email.js │ │ └── user-login-email.scss │ ├── user-login │ │ ├── auth │ │ │ ├── index.alipay.js │ │ │ ├── index.js │ │ │ └── index.weapp.js │ │ ├── user-login.js │ │ └── user-login.scss │ ├── user │ │ ├── activity │ │ │ ├── assets │ │ │ │ ├── activity-active.png │ │ │ │ └── activity.png │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── menu │ │ │ ├── assets │ │ │ │ ├── allowance.png │ │ │ │ ├── bargain.png │ │ │ │ ├── contact.png │ │ │ │ ├── coupon.png │ │ │ │ ├── credit.png │ │ │ │ ├── feedback.png │ │ │ │ ├── gif-card.png │ │ │ │ ├── help.png │ │ │ │ ├── location.png │ │ │ │ ├── order.png │ │ │ │ ├── pin.png │ │ │ │ ├── red-packet.png │ │ │ │ ├── right.png │ │ │ │ ├── safe.png │ │ │ │ └── service.png │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── profile │ │ │ ├── assets │ │ │ │ ├── bg.png │ │ │ │ ├── level-01.png │ │ │ │ └── qr-code.png │ │ │ ├── index.js │ │ │ ├── index.scss │ │ │ └── vip │ │ │ │ ├── assets │ │ │ │ ├── gift.png │ │ │ │ └── right.png │ │ │ │ ├── index.js │ │ │ │ └── index.scss │ │ ├── user.js │ │ └── user.scss │ └── webview │ │ ├── rn │ │ └── index.js │ │ ├── webview.js │ │ └── webview.scss ├── reducers │ ├── cart.js │ ├── cate.js │ ├── home.js │ ├── index.js │ ├── item.js │ └── user.js ├── store │ └── index.js ├── styles │ ├── mixins.scss │ ├── reset.scss │ └── theme.scss └── utils │ ├── jump.js │ ├── redux.js │ ├── request.js │ ├── style.js │ └── taro.alipay.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/config/dev.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/config/prod.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/package.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/project.config.json -------------------------------------------------------------------------------- /src/actions/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/actions/cart.js -------------------------------------------------------------------------------- /src/actions/cate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/actions/cate.js -------------------------------------------------------------------------------- /src/actions/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/actions/home.js -------------------------------------------------------------------------------- /src/actions/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/actions/item.js -------------------------------------------------------------------------------- /src/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/actions/user.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/app.js -------------------------------------------------------------------------------- /src/app.scss: -------------------------------------------------------------------------------- 1 | @import '@styles/reset.scss'; 2 | -------------------------------------------------------------------------------- /src/assets/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/default-avatar.png -------------------------------------------------------------------------------- /src/assets/tab-bar/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/cart-active.png -------------------------------------------------------------------------------- /src/assets/tab-bar/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/cart.png -------------------------------------------------------------------------------- /src/assets/tab-bar/cate-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/cate-active.png -------------------------------------------------------------------------------- /src/assets/tab-bar/cate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/cate.png -------------------------------------------------------------------------------- /src/assets/tab-bar/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/home-active.png -------------------------------------------------------------------------------- /src/assets/tab-bar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/home.png -------------------------------------------------------------------------------- /src/assets/tab-bar/user-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/user-active.png -------------------------------------------------------------------------------- /src/assets/tab-bar/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/assets/tab-bar/user.png -------------------------------------------------------------------------------- /src/components/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/button/index.js -------------------------------------------------------------------------------- /src/components/button/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/button/index.scss -------------------------------------------------------------------------------- /src/components/checkbox/assets/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/checkbox/assets/checked.png -------------------------------------------------------------------------------- /src/components/checkbox/assets/un-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/checkbox/assets/un-checked.png -------------------------------------------------------------------------------- /src/components/checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/checkbox/index.js -------------------------------------------------------------------------------- /src/components/checkbox/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/checkbox/index.scss -------------------------------------------------------------------------------- /src/components/home-title/aseets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/home-title/aseets/arrow-right.png -------------------------------------------------------------------------------- /src/components/home-title/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/home-title/index.js -------------------------------------------------------------------------------- /src/components/home-title/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/home-title/index.scss -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/input-item/assets/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-item/assets/clear.png -------------------------------------------------------------------------------- /src/components/input-item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-item/index.js -------------------------------------------------------------------------------- /src/components/input-item/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-item/index.scss -------------------------------------------------------------------------------- /src/components/input-number/assets/minus-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-number/assets/minus-disabled.png -------------------------------------------------------------------------------- /src/components/input-number/assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-number/assets/minus.png -------------------------------------------------------------------------------- /src/components/input-number/assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-number/assets/plus.png -------------------------------------------------------------------------------- /src/components/input-number/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-number/index.js -------------------------------------------------------------------------------- /src/components/input-number/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/input-number/index.scss -------------------------------------------------------------------------------- /src/components/item-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/item-list/index.js -------------------------------------------------------------------------------- /src/components/item-list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/item-list/index.scss -------------------------------------------------------------------------------- /src/components/loading/assets/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/loading/assets/loading.gif -------------------------------------------------------------------------------- /src/components/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/loading/index.js -------------------------------------------------------------------------------- /src/components/loading/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/loading/index.scss -------------------------------------------------------------------------------- /src/components/popup/assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/popup/assets/close.png -------------------------------------------------------------------------------- /src/components/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/popup/index.js -------------------------------------------------------------------------------- /src/components/popup/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/popup/index.scss -------------------------------------------------------------------------------- /src/components/tag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/tag/index.js -------------------------------------------------------------------------------- /src/components/tag/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/components/tag/index.scss -------------------------------------------------------------------------------- /src/constants/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/constants/api.js -------------------------------------------------------------------------------- /src/constants/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/constants/cart.js -------------------------------------------------------------------------------- /src/constants/cate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/constants/cate.js -------------------------------------------------------------------------------- /src/constants/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/constants/home.js -------------------------------------------------------------------------------- /src/constants/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/constants/item.js -------------------------------------------------------------------------------- /src/constants/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/constants/user.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/cart/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/cart.js -------------------------------------------------------------------------------- /src/pages/cart/cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/cart.scss -------------------------------------------------------------------------------- /src/pages/cart/empty/assets/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/empty/assets/empty.png -------------------------------------------------------------------------------- /src/pages/cart/empty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/empty/index.js -------------------------------------------------------------------------------- /src/pages/cart/empty/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/empty/index.scss -------------------------------------------------------------------------------- /src/pages/cart/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/footer/index.js -------------------------------------------------------------------------------- /src/pages/cart/footer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/footer/index.scss -------------------------------------------------------------------------------- /src/pages/cart/gift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/gift/index.js -------------------------------------------------------------------------------- /src/pages/cart/gift/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/gift/index.scss -------------------------------------------------------------------------------- /src/pages/cart/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/list/index.js -------------------------------------------------------------------------------- /src/pages/cart/list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/list/index.scss -------------------------------------------------------------------------------- /src/pages/cart/tip/assets/tip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/tip/assets/tip-icon.png -------------------------------------------------------------------------------- /src/pages/cart/tip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/tip/index.js -------------------------------------------------------------------------------- /src/pages/cart/tip/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cart/tip/index.scss -------------------------------------------------------------------------------- /src/pages/cate-sub/cate-sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate-sub/cate-sub.js -------------------------------------------------------------------------------- /src/pages/cate-sub/cate-sub.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate-sub/cate-sub.scss -------------------------------------------------------------------------------- /src/pages/cate-sub/tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate-sub/tab/index.js -------------------------------------------------------------------------------- /src/pages/cate-sub/tab/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate-sub/tab/index.scss -------------------------------------------------------------------------------- /src/pages/cate/banner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/banner/index.js -------------------------------------------------------------------------------- /src/pages/cate/banner/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/banner/index.scss -------------------------------------------------------------------------------- /src/pages/cate/cate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/cate.js -------------------------------------------------------------------------------- /src/pages/cate/cate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/cate.scss -------------------------------------------------------------------------------- /src/pages/cate/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/list/index.js -------------------------------------------------------------------------------- /src/pages/cate/list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/list/index.scss -------------------------------------------------------------------------------- /src/pages/cate/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/menu/index.js -------------------------------------------------------------------------------- /src/pages/cate/menu/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/cate/menu/index.scss -------------------------------------------------------------------------------- /src/pages/home/assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/assets/search.png -------------------------------------------------------------------------------- /src/pages/home/banner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/banner/index.js -------------------------------------------------------------------------------- /src/pages/home/banner/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/banner/index.scss -------------------------------------------------------------------------------- /src/pages/home/category/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/category/index.js -------------------------------------------------------------------------------- /src/pages/home/category/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/category/index.scss -------------------------------------------------------------------------------- /src/pages/home/flash-sale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/flash-sale/index.js -------------------------------------------------------------------------------- /src/pages/home/flash-sale/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/flash-sale/index.scss -------------------------------------------------------------------------------- /src/pages/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/home.js -------------------------------------------------------------------------------- /src/pages/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/home.scss -------------------------------------------------------------------------------- /src/pages/home/manufactory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/manufactory/index.js -------------------------------------------------------------------------------- /src/pages/home/manufactory/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/manufactory/index.scss -------------------------------------------------------------------------------- /src/pages/home/operation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/operation/index.js -------------------------------------------------------------------------------- /src/pages/home/operation/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/operation/index.scss -------------------------------------------------------------------------------- /src/pages/home/pin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/pin/index.js -------------------------------------------------------------------------------- /src/pages/home/pin/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/pin/index.scss -------------------------------------------------------------------------------- /src/pages/home/policy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/policy/index.js -------------------------------------------------------------------------------- /src/pages/home/policy/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/policy/index.scss -------------------------------------------------------------------------------- /src/pages/home/popular/assets/img-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/popular/assets/img-bg.png -------------------------------------------------------------------------------- /src/pages/home/popular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/popular/index.js -------------------------------------------------------------------------------- /src/pages/home/popular/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/popular/index.scss -------------------------------------------------------------------------------- /src/pages/home/recommend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/recommend/index.js -------------------------------------------------------------------------------- /src/pages/home/recommend/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/home/recommend/index.scss -------------------------------------------------------------------------------- /src/pages/item/detail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/detail/index.js -------------------------------------------------------------------------------- /src/pages/item/detail/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/detail/index.scss -------------------------------------------------------------------------------- /src/pages/item/footer/assets/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/footer/assets/cart.png -------------------------------------------------------------------------------- /src/pages/item/footer/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/footer/assets/home.png -------------------------------------------------------------------------------- /src/pages/item/footer/assets/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/footer/assets/service.png -------------------------------------------------------------------------------- /src/pages/item/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/footer/index.js -------------------------------------------------------------------------------- /src/pages/item/footer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/footer/index.scss -------------------------------------------------------------------------------- /src/pages/item/gallery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/gallery/index.js -------------------------------------------------------------------------------- /src/pages/item/gallery/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/gallery/index.scss -------------------------------------------------------------------------------- /src/pages/item/info-base/assets/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/info-base/assets/right-arrow.png -------------------------------------------------------------------------------- /src/pages/item/info-base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/info-base/index.js -------------------------------------------------------------------------------- /src/pages/item/info-base/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/info-base/index.scss -------------------------------------------------------------------------------- /src/pages/item/info-param/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/info-param/index.js -------------------------------------------------------------------------------- /src/pages/item/info-param/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/info-param/index.scss -------------------------------------------------------------------------------- /src/pages/item/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/item.js -------------------------------------------------------------------------------- /src/pages/item/item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/item.scss -------------------------------------------------------------------------------- /src/pages/item/spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/spec/index.js -------------------------------------------------------------------------------- /src/pages/item/spec/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/item/spec/index.scss -------------------------------------------------------------------------------- /src/pages/user-login-email/user-login-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user-login-email/user-login-email.js -------------------------------------------------------------------------------- /src/pages/user-login-email/user-login-email.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user-login-email/user-login-email.scss -------------------------------------------------------------------------------- /src/pages/user-login/auth/index.alipay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user-login/auth/index.alipay.js -------------------------------------------------------------------------------- /src/pages/user-login/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user-login/auth/index.js -------------------------------------------------------------------------------- /src/pages/user-login/auth/index.weapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user-login/auth/index.weapp.js -------------------------------------------------------------------------------- /src/pages/user-login/user-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user-login/user-login.js -------------------------------------------------------------------------------- /src/pages/user-login/user-login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user-login/user-login.scss -------------------------------------------------------------------------------- /src/pages/user/activity/assets/activity-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/activity/assets/activity-active.png -------------------------------------------------------------------------------- /src/pages/user/activity/assets/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/activity/assets/activity.png -------------------------------------------------------------------------------- /src/pages/user/activity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/activity/index.js -------------------------------------------------------------------------------- /src/pages/user/activity/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/activity/index.scss -------------------------------------------------------------------------------- /src/pages/user/menu/assets/allowance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/allowance.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/bargain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/bargain.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/contact.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/coupon.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/credit.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/feedback.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/gif-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/gif-card.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/help.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/location.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/order.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/pin.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/red-packet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/red-packet.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/right.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/safe.png -------------------------------------------------------------------------------- /src/pages/user/menu/assets/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/assets/service.png -------------------------------------------------------------------------------- /src/pages/user/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/index.js -------------------------------------------------------------------------------- /src/pages/user/menu/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/menu/index.scss -------------------------------------------------------------------------------- /src/pages/user/profile/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/assets/bg.png -------------------------------------------------------------------------------- /src/pages/user/profile/assets/level-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/assets/level-01.png -------------------------------------------------------------------------------- /src/pages/user/profile/assets/qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/assets/qr-code.png -------------------------------------------------------------------------------- /src/pages/user/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/index.js -------------------------------------------------------------------------------- /src/pages/user/profile/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/index.scss -------------------------------------------------------------------------------- /src/pages/user/profile/vip/assets/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/vip/assets/gift.png -------------------------------------------------------------------------------- /src/pages/user/profile/vip/assets/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/vip/assets/right.png -------------------------------------------------------------------------------- /src/pages/user/profile/vip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/vip/index.js -------------------------------------------------------------------------------- /src/pages/user/profile/vip/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/profile/vip/index.scss -------------------------------------------------------------------------------- /src/pages/user/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/user.js -------------------------------------------------------------------------------- /src/pages/user/user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/user/user.scss -------------------------------------------------------------------------------- /src/pages/webview/rn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/webview/rn/index.js -------------------------------------------------------------------------------- /src/pages/webview/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/pages/webview/webview.js -------------------------------------------------------------------------------- /src/pages/webview/webview.scss: -------------------------------------------------------------------------------- 1 | .webview { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/reducers/cart.js -------------------------------------------------------------------------------- /src/reducers/cate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/reducers/cate.js -------------------------------------------------------------------------------- /src/reducers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/reducers/home.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/reducers/item.js -------------------------------------------------------------------------------- /src/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/reducers/user.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/styles/mixins.scss -------------------------------------------------------------------------------- /src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/styles/reset.scss -------------------------------------------------------------------------------- /src/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/styles/theme.scss -------------------------------------------------------------------------------- /src/utils/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/utils/jump.js -------------------------------------------------------------------------------- /src/utils/redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/utils/redux.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/utils/style.js -------------------------------------------------------------------------------- /src/utils/taro.alipay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/src/utils/taro.alipay.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/js-newbee/taro-yanxuan/HEAD/yarn.lock --------------------------------------------------------------------------------