├── .gitignore ├── pages ├── address │ ├── edit │ │ ├── edit.json │ │ └── edit.wxml │ └── index │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss ├── cart │ └── index │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss ├── coupon │ ├── use │ │ ├── use.json │ │ ├── use.wxss │ │ ├── use.wxml │ │ └── use.js │ └── index │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js ├── goods │ ├── index │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── score │ │ ├── score.json │ │ ├── list.json │ │ ├── score.wxml │ │ ├── list.wxml │ │ ├── list.wxss │ │ ├── score.js │ │ ├── score.wxss │ │ └── list.js │ ├── favorite │ │ ├── favorite.json │ │ ├── favorite.wxml │ │ ├── favorite.wxss │ │ └── favorite.js │ └── history │ │ ├── history.json │ │ ├── history.wxml │ │ ├── history.wxss │ │ └── history.js ├── order │ ├── trace │ │ ├── trace.json │ │ ├── trace.js │ │ ├── trace.wxss │ │ └── trace.wxml │ ├── trade │ │ ├── trade.json │ │ ├── trade.wxss │ │ └── trade.wxml │ ├── detail │ │ └── detail.json │ └── index │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss ├── refund │ ├── apply │ │ ├── apply.json │ │ ├── apply.wxss │ │ ├── apply.js │ │ └── apply.wxml │ └── detail │ │ ├── detail.json │ │ ├── detail.wxss │ │ ├── detail.js │ │ └── detail.wxml ├── shop │ ├── detail │ │ ├── detail.json │ │ ├── detail.wxss │ │ ├── detail.wxml │ │ └── detail.js │ ├── contact │ │ ├── contact.json │ │ ├── contact.js │ │ ├── contact.wxml │ │ └── contact.wxss │ └── index │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml └── customer │ ├── index │ ├── index.json │ ├── index.js │ ├── index.wxss │ └── index.wxml │ └── login │ ├── login.json │ ├── login.wxml │ ├── login.wxss │ └── login.js ├── templates ├── shop │ ├── info │ │ ├── shop-info-template.wxss │ │ └── shop-info-template.wxml │ ├── list │ │ ├── shop-list-template.wxss │ │ └── shop-list-template.wxml │ ├── item-white │ │ ├── shop-item-template.wxml │ │ └── shop-item-template.wxss │ └── item │ │ ├── shop-item-template.wxml │ │ └── shop-item-template.wxss ├── steps │ ├── index.wxss │ ├── index.wxml │ └── wxss │ │ ├── vstep.wxss │ │ └── step.wxss ├── order │ ├── list │ │ ├── order-list-template.wxss │ │ └── order-list-template.wxml │ ├── tab │ │ ├── order-tab-template.wxml │ │ └── order-tab-template.wxss │ ├── goods │ │ ├── order-goods-template.wxml │ │ └── order-goods-template.wxss │ ├── detail-item │ │ ├── order-item-template.wxml │ │ └── order-item-template.wxss │ └── list-item │ │ ├── order-item-template.wxss │ │ └── order-item-template.wxml ├── goods │ ├── sku │ │ ├── goods-sku-template.wxss │ │ └── goods-sku-template.wxml │ ├── score │ │ ├── goods-score-template.wxss │ │ └── goods-score-template.wxml │ ├── detail │ │ ├── goods-detail-template.wxss │ │ └── goods-detail-template.wxml │ ├── grid │ │ ├── goods-grid-template.wxss │ │ └── goods-grid-template.wxml │ ├── fav │ │ ├── goods-fav-template.wxml │ │ └── goods-fav-template.wxss │ ├── item │ │ ├── goods-item-template.wxml │ │ └── goods-item-template.wxss │ ├── buy-bar │ │ ├── goods-buy-bar-template.wxml │ │ └── goods-buy-bar-template.wxss │ ├── info │ │ ├── goods-info-template.wxss │ │ └── goods-info-template.wxml │ └── buy-panel │ │ ├── goods-buy-panel-template.wxml │ │ └── goods-buy-panel-template.wxss ├── toptips │ ├── index.wxml │ ├── index.wxss │ └── index.js ├── notice │ └── bar │ │ ├── notice-bar-template.wxss │ │ └── notice-bar-template.wxml ├── coupon │ ├── shelf │ │ ├── coupon-shelf-template.wxss │ │ └── coupon-shelf-template.wxml │ ├── pick-simple │ │ ├── coupon-pick-template.wxml │ │ └── coupon-pick-template.wxss │ ├── pick-color │ │ ├── coupon-pick-template.wxml │ │ └── coupon-pick-template.wxss │ ├── pick-item │ │ ├── coupon-item-template.wxml │ │ └── coupon-item-template.wxss │ ├── shelf-panel │ │ ├── coupon-panel-template.wxml │ │ └── coupon-panel-template.wxss │ └── item │ │ ├── coupon-item-template.wxml │ │ └── coupon-item-template.wxss ├── tab │ ├── index.js │ ├── index.wxss │ └── index.wxml ├── loadmore │ └── index.wxml ├── address │ ├── show │ │ ├── address-show-template.wxml │ │ └── address-show-template.wxss │ ├── item │ │ ├── address-item-template.wxml │ │ └── address-item-template.wxss │ └── mgr │ │ ├── address-item-template.wxml │ │ └── address-item-template.wxss ├── trade │ └── item │ │ ├── order-item-template.wxml │ │ └── order-item-template.wxss ├── quantity │ ├── index.wxss │ ├── index.wxml │ └── index.js └── cart │ └── item │ ├── cart-item-template.wxml │ └── cart-item-template.wxss ├── images ├── icons │ ├── car.png │ ├── new.png │ ├── vip.png │ ├── alert.png │ ├── close.png │ ├── cuppon.png │ ├── delete.png │ ├── down.png │ ├── edit.png │ ├── error.png │ ├── gift.png │ ├── like.png │ ├── more.png │ ├── notice.png │ ├── order.png │ ├── phone.png │ ├── picked.png │ ├── shop.png │ ├── star.png │ ├── used.png │ ├── address.png │ ├── cart-add.png │ ├── cart-btn.png │ ├── customer.png │ ├── expired.png │ ├── expiring.png │ ├── history.png │ ├── like-red.png │ ├── more-dot.png │ ├── status-1.png │ ├── status-2.png │ ├── status-3.png │ ├── status-4.png │ ├── status-5.png │ ├── status-6.png │ ├── status-7.png │ ├── status-8.png │ ├── address-hr.png │ ├── cart-empty.png │ ├── cart-gray.png │ ├── cooperate.png │ ├── like-empty.png │ ├── like-gray.png │ ├── more-gray.png │ ├── more-white.png │ ├── order-empty.png │ ├── plus-square.png │ ├── plus-white.png │ ├── recommend.png │ ├── shop-close.png │ ├── shop-color.png │ ├── shop-gray.png │ ├── star-fill.png │ ├── cart-btn-gray.png │ ├── more -radius.png │ └── wecahrt-white.png ├── mock │ └── img.jpg ├── shop │ ├── shop.png │ └── shop-logo.png ├── tab │ ├── cart.png │ ├── home.png │ ├── order.png │ ├── user.png │ ├── cart-active.png │ ├── home-active.png │ ├── order-active.png │ └── user-active.png └── goods │ └── broken.png ├── class ├── service │ ├── BaseService.js │ ├── LogService.js │ ├── CartService.js │ ├── FavoriteService.js │ ├── AddressService.js │ ├── ShopService.js │ └── ExpressService.js ├── utils │ ├── wxApi.js │ ├── Router.js │ └── Http.js └── entity │ └── Page.js ├── app.js ├── README.md └── app.json /.gitignore: -------------------------------------------------------------------------------- 1 | jsconfig.json 2 | /.vscode 3 | /typings -------------------------------------------------------------------------------- /pages/address/edit/edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "编辑地址" 3 | } -------------------------------------------------------------------------------- /pages/cart/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "购物车" 3 | } -------------------------------------------------------------------------------- /pages/coupon/use/use.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "可用优惠券" 3 | } -------------------------------------------------------------------------------- /pages/goods/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "商品详情" 3 | } -------------------------------------------------------------------------------- /pages/goods/score/score.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "订单评价" 3 | } -------------------------------------------------------------------------------- /pages/order/trace/trace.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "物流详情" 3 | } -------------------------------------------------------------------------------- /pages/order/trade/trade.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "确认订单" 3 | } -------------------------------------------------------------------------------- /pages/refund/apply/apply.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "退款申请" 3 | } -------------------------------------------------------------------------------- /pages/shop/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "店铺详情" 3 | } -------------------------------------------------------------------------------- /pages/customer/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "我的信息" 3 | } -------------------------------------------------------------------------------- /pages/customer/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "用户授权" 3 | } -------------------------------------------------------------------------------- /pages/order/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "订单详情" 3 | } -------------------------------------------------------------------------------- /pages/refund/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "退款详情" 3 | } -------------------------------------------------------------------------------- /templates/shop/info/shop-info-template.wxss: -------------------------------------------------------------------------------- 1 | .address-label{ 2 | min-width: 150rpx; 3 | } -------------------------------------------------------------------------------- /images/icons/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/car.png -------------------------------------------------------------------------------- /images/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/new.png -------------------------------------------------------------------------------- /images/icons/vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/vip.png -------------------------------------------------------------------------------- /images/mock/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/mock/img.jpg -------------------------------------------------------------------------------- /images/shop/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/shop/shop.png -------------------------------------------------------------------------------- /images/tab/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/cart.png -------------------------------------------------------------------------------- /images/tab/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/home.png -------------------------------------------------------------------------------- /images/tab/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/order.png -------------------------------------------------------------------------------- /images/tab/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/user.png -------------------------------------------------------------------------------- /templates/shop/list/shop-list-template.wxss: -------------------------------------------------------------------------------- 1 | @import "/templates/shop/item/shop-item-template.wxss"; 2 | -------------------------------------------------------------------------------- /images/goods/broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/goods/broken.png -------------------------------------------------------------------------------- /images/icons/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/alert.png -------------------------------------------------------------------------------- /images/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/close.png -------------------------------------------------------------------------------- /images/icons/cuppon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/cuppon.png -------------------------------------------------------------------------------- /images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/delete.png -------------------------------------------------------------------------------- /images/icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/down.png -------------------------------------------------------------------------------- /images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/edit.png -------------------------------------------------------------------------------- /images/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/error.png -------------------------------------------------------------------------------- /images/icons/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/gift.png -------------------------------------------------------------------------------- /images/icons/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/like.png -------------------------------------------------------------------------------- /images/icons/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/more.png -------------------------------------------------------------------------------- /images/icons/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/notice.png -------------------------------------------------------------------------------- /images/icons/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/order.png -------------------------------------------------------------------------------- /images/icons/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/phone.png -------------------------------------------------------------------------------- /images/icons/picked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/picked.png -------------------------------------------------------------------------------- /images/icons/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/shop.png -------------------------------------------------------------------------------- /images/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/star.png -------------------------------------------------------------------------------- /images/icons/used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/used.png -------------------------------------------------------------------------------- /images/icons/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/address.png -------------------------------------------------------------------------------- /images/icons/cart-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/cart-add.png -------------------------------------------------------------------------------- /images/icons/cart-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/cart-btn.png -------------------------------------------------------------------------------- /images/icons/customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/customer.png -------------------------------------------------------------------------------- /images/icons/expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/expired.png -------------------------------------------------------------------------------- /images/icons/expiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/expiring.png -------------------------------------------------------------------------------- /images/icons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/history.png -------------------------------------------------------------------------------- /images/icons/like-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/like-red.png -------------------------------------------------------------------------------- /images/icons/more-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/more-dot.png -------------------------------------------------------------------------------- /images/icons/status-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-1.png -------------------------------------------------------------------------------- /images/icons/status-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-2.png -------------------------------------------------------------------------------- /images/icons/status-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-3.png -------------------------------------------------------------------------------- /images/icons/status-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-4.png -------------------------------------------------------------------------------- /images/icons/status-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-5.png -------------------------------------------------------------------------------- /images/icons/status-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-6.png -------------------------------------------------------------------------------- /images/icons/status-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-7.png -------------------------------------------------------------------------------- /images/icons/status-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/status-8.png -------------------------------------------------------------------------------- /images/shop/shop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/shop/shop-logo.png -------------------------------------------------------------------------------- /images/icons/address-hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/address-hr.png -------------------------------------------------------------------------------- /images/icons/cart-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/cart-empty.png -------------------------------------------------------------------------------- /images/icons/cart-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/cart-gray.png -------------------------------------------------------------------------------- /images/icons/cooperate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/cooperate.png -------------------------------------------------------------------------------- /images/icons/like-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/like-empty.png -------------------------------------------------------------------------------- /images/icons/like-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/like-gray.png -------------------------------------------------------------------------------- /images/icons/more-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/more-gray.png -------------------------------------------------------------------------------- /images/icons/more-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/more-white.png -------------------------------------------------------------------------------- /images/icons/order-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/order-empty.png -------------------------------------------------------------------------------- /images/icons/plus-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/plus-square.png -------------------------------------------------------------------------------- /images/icons/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/plus-white.png -------------------------------------------------------------------------------- /images/icons/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/recommend.png -------------------------------------------------------------------------------- /images/icons/shop-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/shop-close.png -------------------------------------------------------------------------------- /images/icons/shop-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/shop-color.png -------------------------------------------------------------------------------- /images/icons/shop-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/shop-gray.png -------------------------------------------------------------------------------- /images/icons/star-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/star-fill.png -------------------------------------------------------------------------------- /images/tab/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/cart-active.png -------------------------------------------------------------------------------- /images/tab/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/home-active.png -------------------------------------------------------------------------------- /images/tab/order-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/order-active.png -------------------------------------------------------------------------------- /images/tab/user-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/tab/user-active.png -------------------------------------------------------------------------------- /pages/goods/score/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "商品评价", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/order/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText" : "我的订单", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /images/icons/cart-btn-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/cart-btn-gray.png -------------------------------------------------------------------------------- /images/icons/more -radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/more -radius.png -------------------------------------------------------------------------------- /images/icons/wecahrt-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolhwm/leshare-shop-weapp/HEAD/images/icons/wecahrt-white.png -------------------------------------------------------------------------------- /pages/goods/favorite/favorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "收藏商品", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/goods/history/history.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "浏览历史", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/coupon/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "优惠券", 3 | "enablePullDownRefresh": "true" 4 | } -------------------------------------------------------------------------------- /pages/shop/contact/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "联系我们", 3 | "navigationBarBackgroundColor": "#11ca6f" 4 | } -------------------------------------------------------------------------------- /pages/shop/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#1296db", 3 | "navigationBarTitleText": " " 4 | } -------------------------------------------------------------------------------- /templates/steps/index.wxss: -------------------------------------------------------------------------------- 1 | @import "wxss/step.wxss"; 2 | @import "wxss/vstep.wxss"; 3 | 4 | .zan-steps { 5 | position: relative; 6 | } 7 | -------------------------------------------------------------------------------- /templates/order/list/order-list-template.wxss: -------------------------------------------------------------------------------- 1 | @import "/templates/order/list-item/order-item-template.wxss"; 2 | @import "/templates/loadmore/index.wxss"; -------------------------------------------------------------------------------- /pages/coupon/use/use.wxss: -------------------------------------------------------------------------------- 1 | @import "/templates/coupon/item/coupon-item-template.wxss"; 2 | page{ 3 | height: 100%; 4 | background-color: #f2f2f2; 5 | } -------------------------------------------------------------------------------- /templates/goods/sku/goods-sku-template.wxss: -------------------------------------------------------------------------------- 1 | .goods-sku-selector{ 2 | margin-top: 0rpx; 3 | } 4 | .goods-sku-selector text{ 5 | font-size: 28rpx; 6 | } -------------------------------------------------------------------------------- /pages/address/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "管理收货地址", 3 | "enablePullDownRefresh": true, 4 | "backgroundTextStyle": "light" 5 | } -------------------------------------------------------------------------------- /templates/goods/score/goods-score-template.wxss: -------------------------------------------------------------------------------- 1 | .goods-sku-selector{ 2 | margin-top: 0rpx; 3 | } 4 | .goods-sku-selector text{ 5 | font-size: 28rpx; 6 | } 7 | -------------------------------------------------------------------------------- /templates/toptips/index.wxml: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pages/shop/contact/contact.js: -------------------------------------------------------------------------------- 1 | // pages/shop/contact/contact.js 2 | Page({ 3 | 4 | data: { 5 | 6 | }, 7 | 8 | onLoad: function (options) { 9 | 10 | }, 11 | call: function () { 12 | wx.makePhoneCall({ 13 | phoneNumber: '059187519835' 14 | }); 15 | }, 16 | }) -------------------------------------------------------------------------------- /templates/notice/bar/notice-bar-template.wxss: -------------------------------------------------------------------------------- 1 | .notice-bar-container{ 2 | padding: 10rpx; 3 | display: flex; 4 | flex-direction: row; 5 | } 6 | 7 | .notice-bar-image{ 8 | height: 32rpx; 9 | width: 32rpx; 10 | } 11 | 12 | 13 | .notice-bar-content{ 14 | margin-left: 10rpx; 15 | } -------------------------------------------------------------------------------- /pages/coupon/use/use.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /templates/notice/bar/notice-bar-template.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/shop/list/shop-list-template.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |