├── .DS_Store ├── README.md ├── app.js ├── app.json ├── app.wxss ├── config.js ├── image ├── .DS_Store ├── 1.gif ├── 1.jpg ├── 11.png ├── 12.png ├── 2.jpg ├── 21.png ├── 22.png ├── 3.jpg ├── 31.png ├── 32.png ├── 4.jpg ├── 41.png ├── 42.png ├── 5.jpg ├── 6.jpg ├── b1.jpg ├── b2.jpg ├── b3.jpg ├── bk.png ├── bk │ ├── .DS_Store │ ├── banner.png │ ├── c1.png │ ├── c10.png │ ├── c11.png │ ├── c12.png │ ├── c13.png │ ├── c2.png │ ├── c3.png │ ├── c4.png │ ├── c5.png │ ├── c6.png │ ├── c7.png │ ├── c8.png │ └── c9.png ├── c1.png ├── c2.png ├── c3.png ├── c4.png ├── cart1.png ├── cart2.png ├── category │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── 8.png ├── cx │ ├── .DS_Store │ ├── banner.jpeg │ ├── c1.jpeg │ ├── c2.jpeg │ └── c3.jpeg ├── dj.jpg ├── goods1.png ├── hdl.png ├── hdl │ ├── banner.jpeg │ ├── c1.jpeg │ ├── c2.jpeg │ └── c3.jpeg ├── icon │ ├── .DS_Store │ ├── recommend.png │ ├── 准.png │ ├── 减.png │ ├── 折.png │ ├── 特.png │ ├── 票.png │ ├── 赠.png │ └── 返.png ├── icon3.png ├── list1.png ├── ry.png ├── ry │ ├── .DS_Store │ ├── banner.jpg │ ├── c1.jpg │ ├── c2.jpg │ └── c3.jpg ├── s4.png ├── s6.png ├── xyx.jpg ├── ycyk │ ├── .DS_Store │ ├── banner.jpg │ ├── c1.jpg │ ├── c2.jpg │ └── c3.jpg └── ye.png ├── page ├── common │ ├── common.wxss │ ├── shop.wxml │ ├── shop.wxss │ ├── star-rate.wxml │ └── star-rate.wxss ├── component │ ├── address │ │ ├── address.js │ │ ├── address.json │ │ ├── address.wxml │ │ └── address.wxss │ ├── cart │ │ ├── cart.js │ │ ├── cart.json │ │ ├── cart.wxml │ │ └── cart.wxss │ ├── category │ │ ├── category.js │ │ ├── category.json │ │ ├── category.wxml │ │ └── category.wxss │ ├── details │ │ ├── details.js │ │ ├── details.json │ │ ├── details.wxml │ │ └── details.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── list │ │ ├── list.js │ │ ├── list.json │ │ ├── list.wxml │ │ └── list.wxss │ ├── orders │ │ ├── orders.js │ │ ├── orders.json │ │ ├── orders.wxml │ │ └── orders.wxss │ └── user │ │ ├── user.js │ │ ├── user.json │ │ ├── user.wxml │ │ └── user.wxss └── utils │ ├── apis.js │ ├── coordtransform.js │ ├── dateformat.js │ ├── distance.js │ ├── qqmap-wx-jssdk.min.js │ ├── timeago.min.js │ └── util.js ├── project.config.json └── weui.wxss /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 微信外卖小程序 2 | 3 | ## 需求 4 | * 该小程序有三端(客户端,骑手端,商户端) 5 | * 客户端是核心端,主要功能用户在该小程序选择物品下单。 6 | * 骑手根据客户下单获取任务进行配送 7 | * 商户获取客户订单,准备餐品 8 | 9 | ## 使用方法 10 | * 将代码克隆下去后用微信开发工具打开 11 | 12 | ## 如果觉得有参考价值 请给star 谢谢支持 13 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | App({ 2 | onLaunch: function () { 3 | console.log('App Launch') 4 | }, 5 | onShow: function () { 6 | console.log('App Show') 7 | }, 8 | onHide: function () { 9 | console.log('App Hide') 10 | }, 11 | globalData: { 12 | hasLogin: false 13 | } 14 | }) 15 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "page/component/index", 4 | "page/component/category/category", 5 | "page/component/cart/cart", 6 | "page/component/user/user", 7 | "page/component/address/address", 8 | "page/component/orders/orders", 9 | "page/component/details/details", 10 | "page/component/list/list" 11 | ], 12 | "window": { 13 | "navigationBarTextStyle": "#ffffff", 14 | "navigationBarTitleText": "外卖栈", 15 | "navigationBarBackgroundColor": "#AB956D", 16 | "backgroundColor": "#eeeeee", 17 | "enablePullDownRefresh": true 18 | }, 19 | "tabBar": { 20 | "color": "#b7b7b7", 21 | "selectedColor": "#AB956D", 22 | "borderStyle": "#f5f5f5", 23 | "backgroundColor": "#f5f5f5", 24 | "list": [{ 25 | "pagePath": "page/component/index", 26 | "iconPath": "image/12.png", 27 | "selectedIconPath": "image/11.png", 28 | "text": "主页" 29 | }, { 30 | "pagePath": "page/component/cart/cart", 31 | "iconPath": "image/32.png", 32 | "selectedIconPath": "image/31.png", 33 | "text": "购物车" 34 | }, { 35 | "pagePath": "page/component/user/user", 36 | "iconPath": "image/42.png", 37 | "selectedIconPath": "image/41.png", 38 | "text": "我的" 39 | }] 40 | }, 41 | "networkTimeout": { 42 | "request": 10000, 43 | "connectSocket": 10000, 44 | "uploadFile": 10000, 45 | "downloadFile": 10000 46 | }, 47 | "debug": false 48 | } 49 | -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- 1 | @import './weui.wxss'; 2 | page { 3 | background-color: #fbf9fe; 4 | height: 100%; 5 | } 6 | .container { 7 | display: flex; 8 | flex-direction: column; 9 | min-height: 100%; 10 | justify-content: space-between; 11 | } 12 | .page-header { 13 | display: flex; 14 | font-size: 32rpx; 15 | color: #aaa; 16 | justify-content: center; 17 | margin-top: 50rpx; 18 | } 19 | .page-header-text { 20 | padding: 20rpx 40rpx; 21 | border-bottom: 1px solid #ccc; 22 | } 23 | 24 | .page-body { 25 | width: 100%; 26 | display: flex; 27 | flex-direction: column; 28 | align-items: center; 29 | flex-grow: 1; 30 | overflow-x: hidden; 31 | } 32 | .page-body-wrapper { 33 | margin-top: 100rpx; 34 | display: flex; 35 | flex-direction: column; 36 | align-items: center; 37 | width: 100%; 38 | } 39 | .page-body-wrapper form { 40 | width: 100%; 41 | } 42 | .page-body-wording { 43 | text-align: center; 44 | padding: 200rpx 100rpx; 45 | } 46 | .page-body-info { 47 | display: flex; 48 | flex-direction: column; 49 | align-items: center; 50 | background-color: #fff; 51 | margin-bottom: 50rpx; 52 | width: 100%; 53 | padding: 50rpx 0 150rpx 0; 54 | } 55 | .page-body-title { 56 | margin-bottom: 100rpx; 57 | font-size: 32rpx; 58 | } 59 | .page-body-text { 60 | font-size: 30rpx; 61 | line-height: 26px; 62 | color: #ccc; 63 | } 64 | .page-body-text-small { 65 | font-size: 24rpx; 66 | color: #000; 67 | margin-bottom: 100rpx; 68 | } 69 | .page-body-form { 70 | width: 100%; 71 | background-color: #fff; 72 | display: flex; 73 | flex-direction: column; 74 | width: 100%; 75 | border: 1px solid #eee; 76 | } 77 | .page-body-form-item { 78 | display: flex; 79 | align-items: center; 80 | margin-left: 10rpx; 81 | border-bottom: 1px solid #eee; 82 | height: 80rpx; 83 | } 84 | .page-body-form-key { 85 | width: 180rpx; 86 | } 87 | .page-body-form-value { 88 | flex-grow: 1; 89 | } 90 | 91 | .page-body-form-picker { 92 | display: flex; 93 | justify-content: space-between; 94 | height: 100rpx; 95 | align-items: center; 96 | font-size: 36rpx; 97 | margin-left: 20rpx; 98 | padding-right: 20rpx; 99 | border-bottom: 1px solid #eee; 100 | } 101 | .page-body-form-picker-value { 102 | color: #ccc; 103 | } 104 | 105 | .page-body-buttons { 106 | width: 100%; 107 | } 108 | .page-body-button { 109 | margin: 25rpx; 110 | } 111 | .page-body-button image { 112 | width: 150rpx; 113 | height: 150rpx; 114 | } 115 | .page-footer { 116 | text-align: center; 117 | color: #1aad19; 118 | font-size: 24rpx; 119 | margin: 20rpx 0; 120 | } 121 | 122 | .green{ 123 | color: #09BB07; 124 | } 125 | .red{ 126 | color: #F76260; 127 | } 128 | .blue{ 129 | color: #10AEFF; 130 | } 131 | .yellow{ 132 | color: #FFBE00; 133 | } 134 | .gray{ 135 | color: #C9C9C9; 136 | } 137 | 138 | .strong{ 139 | font-weight: bold; 140 | } 141 | 142 | .bc_green{ 143 | background-color: #09BB07; 144 | } 145 | .bc_red{ 146 | background-color: #F76260; 147 | } 148 | .bc_blue{ 149 | background-color: #10AEFF; 150 | } 151 | .bc_yellow{ 152 | background-color: #FFBE00; 153 | } 154 | .bc_gray{ 155 | background-color: #C9C9C9; 156 | } 157 | 158 | .tc{ 159 | text-align: center; 160 | } 161 | 162 | .page input{ 163 | padding: 10px 15px; 164 | background-color: #fff; 165 | } 166 | checkbox, radio{ 167 | margin-right: 5px; 168 | } 169 | 170 | .btn-area{ 171 | padding: 0 15px; 172 | } 173 | .btn-area button{ 174 | margin-top: 10px; 175 | margin-bottom: 10px; 176 | } 177 | 178 | .page { 179 | min-height: 100%; 180 | flex: 1; 181 | background-color: #FBF9FE; 182 | font-size: 16px; 183 | font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; 184 | overflow: hidden; 185 | } 186 | .page__hd{ 187 | padding: 40px; 188 | } 189 | .page__title{ 190 | display: block; 191 | font-size: 20px; 192 | } 193 | .page__desc{ 194 | margin-top: 5px; 195 | font-size: 14px; 196 | color: #888888; 197 | } 198 | 199 | .section{ 200 | margin-bottom: 40px; 201 | } 202 | .section_gap{ 203 | padding: 0 15px; 204 | } 205 | .section__title{ 206 | margin-bottom: 8px; 207 | padding-left: 15px; 208 | padding-right: 15px; 209 | } 210 | .section_gap .section__title{ 211 | padding-left: 0; 212 | padding-right: 0; 213 | } 214 | .section__ctn{ 215 | 216 | } 217 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 小程序配置文件 3 | */ 4 | 5 | // var host = "apitest.ipaotui.com" 6 | var host = "api.ipaotui.com" 7 | const debug = wx.getStorageSync('debug') 8 | if (debug) { 9 | host = "apitest.ipaotui.com" 10 | } 11 | 12 | module.exports = { 13 | host, 14 | qqmapKey: 'FPOBZ-UT2K2-ZFYUC-CX67E-IOOYS-7XFQ6' 15 | } 16 | -------------------------------------------------------------------------------- /image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/.DS_Store -------------------------------------------------------------------------------- /image/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/1.gif -------------------------------------------------------------------------------- /image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/1.jpg -------------------------------------------------------------------------------- /image/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/11.png -------------------------------------------------------------------------------- /image/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/12.png -------------------------------------------------------------------------------- /image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/2.jpg -------------------------------------------------------------------------------- /image/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/21.png -------------------------------------------------------------------------------- /image/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/22.png -------------------------------------------------------------------------------- /image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/3.jpg -------------------------------------------------------------------------------- /image/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/31.png -------------------------------------------------------------------------------- /image/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/32.png -------------------------------------------------------------------------------- /image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/4.jpg -------------------------------------------------------------------------------- /image/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/41.png -------------------------------------------------------------------------------- /image/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/42.png -------------------------------------------------------------------------------- /image/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/5.jpg -------------------------------------------------------------------------------- /image/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/6.jpg -------------------------------------------------------------------------------- /image/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/b1.jpg -------------------------------------------------------------------------------- /image/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/b2.jpg -------------------------------------------------------------------------------- /image/b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/b3.jpg -------------------------------------------------------------------------------- /image/bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk.png -------------------------------------------------------------------------------- /image/bk/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/.DS_Store -------------------------------------------------------------------------------- /image/bk/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/banner.png -------------------------------------------------------------------------------- /image/bk/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c1.png -------------------------------------------------------------------------------- /image/bk/c10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c10.png -------------------------------------------------------------------------------- /image/bk/c11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c11.png -------------------------------------------------------------------------------- /image/bk/c12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c12.png -------------------------------------------------------------------------------- /image/bk/c13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c13.png -------------------------------------------------------------------------------- /image/bk/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c2.png -------------------------------------------------------------------------------- /image/bk/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c3.png -------------------------------------------------------------------------------- /image/bk/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c4.png -------------------------------------------------------------------------------- /image/bk/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c5.png -------------------------------------------------------------------------------- /image/bk/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c6.png -------------------------------------------------------------------------------- /image/bk/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c7.png -------------------------------------------------------------------------------- /image/bk/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c8.png -------------------------------------------------------------------------------- /image/bk/c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/bk/c9.png -------------------------------------------------------------------------------- /image/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/c1.png -------------------------------------------------------------------------------- /image/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/c2.png -------------------------------------------------------------------------------- /image/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/c3.png -------------------------------------------------------------------------------- /image/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/c4.png -------------------------------------------------------------------------------- /image/cart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/cart1.png -------------------------------------------------------------------------------- /image/cart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/cart2.png -------------------------------------------------------------------------------- /image/category/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/1.png -------------------------------------------------------------------------------- /image/category/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/2.png -------------------------------------------------------------------------------- /image/category/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/3.png -------------------------------------------------------------------------------- /image/category/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/4.png -------------------------------------------------------------------------------- /image/category/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/5.png -------------------------------------------------------------------------------- /image/category/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/6.png -------------------------------------------------------------------------------- /image/category/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/7.png -------------------------------------------------------------------------------- /image/category/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/category/8.png -------------------------------------------------------------------------------- /image/cx/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/cx/.DS_Store -------------------------------------------------------------------------------- /image/cx/banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/cx/banner.jpeg -------------------------------------------------------------------------------- /image/cx/c1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/cx/c1.jpeg -------------------------------------------------------------------------------- /image/cx/c2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/cx/c2.jpeg -------------------------------------------------------------------------------- /image/cx/c3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/cx/c3.jpeg -------------------------------------------------------------------------------- /image/dj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/dj.jpg -------------------------------------------------------------------------------- /image/goods1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/goods1.png -------------------------------------------------------------------------------- /image/hdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/hdl.png -------------------------------------------------------------------------------- /image/hdl/banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/hdl/banner.jpeg -------------------------------------------------------------------------------- /image/hdl/c1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/hdl/c1.jpeg -------------------------------------------------------------------------------- /image/hdl/c2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/hdl/c2.jpeg -------------------------------------------------------------------------------- /image/hdl/c3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/hdl/c3.jpeg -------------------------------------------------------------------------------- /image/icon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/.DS_Store -------------------------------------------------------------------------------- /image/icon/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/recommend.png -------------------------------------------------------------------------------- /image/icon/准.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/准.png -------------------------------------------------------------------------------- /image/icon/减.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/减.png -------------------------------------------------------------------------------- /image/icon/折.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/折.png -------------------------------------------------------------------------------- /image/icon/特.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/特.png -------------------------------------------------------------------------------- /image/icon/票.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/票.png -------------------------------------------------------------------------------- /image/icon/赠.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/赠.png -------------------------------------------------------------------------------- /image/icon/返.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon/返.png -------------------------------------------------------------------------------- /image/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/icon3.png -------------------------------------------------------------------------------- /image/list1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/list1.png -------------------------------------------------------------------------------- /image/ry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ry.png -------------------------------------------------------------------------------- /image/ry/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ry/.DS_Store -------------------------------------------------------------------------------- /image/ry/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ry/banner.jpg -------------------------------------------------------------------------------- /image/ry/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ry/c1.jpg -------------------------------------------------------------------------------- /image/ry/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ry/c2.jpg -------------------------------------------------------------------------------- /image/ry/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ry/c3.jpg -------------------------------------------------------------------------------- /image/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/s4.png -------------------------------------------------------------------------------- /image/s6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/s6.png -------------------------------------------------------------------------------- /image/xyx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/xyx.jpg -------------------------------------------------------------------------------- /image/ycyk/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ycyk/.DS_Store -------------------------------------------------------------------------------- /image/ycyk/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ycyk/banner.jpg -------------------------------------------------------------------------------- /image/ycyk/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ycyk/c1.jpg -------------------------------------------------------------------------------- /image/ycyk/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ycyk/c2.jpg -------------------------------------------------------------------------------- /image/ycyk/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ycyk/c3.jpg -------------------------------------------------------------------------------- /image/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locqj/wxapp-waimaishop/6e99e69bf4587cae335aef1e65c1d6e3b63f1c88/image/ye.png -------------------------------------------------------------------------------- /page/common/common.wxss: -------------------------------------------------------------------------------- 1 | page{ 2 | background-color: #ffffff; 3 | font-family: "Helvetica Neue","Hiragino Sans GB","Microsoft YaHei","\9ED1\4F53",Arial,sans-serif; 4 | font-size: 32rpx; 5 | } 6 | .navigator-hover{ 7 | background: none; 8 | } -------------------------------------------------------------------------------- /page/common/shop.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 |