├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── app.json ├── app.wxss ├── components └── navigation │ ├── img │ ├── home.png │ ├── left.png │ └── search.png │ ├── navigation.js │ ├── navigation.json │ ├── navigation.wxml │ └── navigation.wxss ├── config.js ├── general └── start │ ├── first.js │ ├── first.json │ ├── first.wxml │ └── first.wxss ├── images ├── add-addr.png ├── addr-active.png ├── addr-edit.png ├── addr-line.png ├── address_add.png ├── address_empty.png ├── arrow-right.png ├── coupon_button.png ├── coupon_empty.png ├── coupons-pic.jpg ├── default_avatar.png ├── del.png ├── empty_collection.png ├── empty_comment.png ├── empty_goods.png ├── empty_order.png ├── goback.png ├── gohome.png ├── gonggao.png ├── goods_collect.png ├── goods_collect_checked.png ├── goods_service.png ├── icon │ ├── kanjia.png │ ├── liquan.png │ ├── qiandao.png │ └── zhuanlan.png ├── jifen.png ├── kanjia │ ├── close.png │ ├── kanjia.png │ ├── kjico.png │ ├── share_img.png │ └── share_user.png ├── nav │ ├── cart-off.png │ ├── cart-on.png │ ├── home-off.png │ ├── home-on.png │ ├── menu-off.png │ ├── menu-on.png │ ├── my-off.png │ ├── my-on.png │ ├── order-off.png │ └── order-on.png ├── none │ └── cart_empty.png ├── order-details │ ├── delivering.png │ ├── icon-address.png │ ├── icon-ddfh.png │ ├── icon-ddfk.png │ ├── icon-ddgb.png │ ├── icon-ddsh.png │ ├── icon-jycg.png │ ├── icon-wuliu.png │ ├── orderform.png │ ├── orderform_pay.png │ └── orderform_ship.png ├── profile_address.png ├── profile_collection.png ├── profile_dfunding.png ├── profile_service.png ├── profile_tegral.png ├── profile_ticket.png ├── score.png ├── score_bg.png ├── search.png ├── search_empty.png ├── share.png ├── shopping.png ├── shopping_cart.png └── withdraw.png ├── pages ├── address-add │ ├── address-add.js │ ├── address-add.json │ ├── address-add.wxml │ └── address-add.wxss ├── address │ ├── address.js │ ├── address.json │ ├── address.wxml │ └── address.wxss ├── cart │ ├── cart.js │ ├── cart.json │ ├── cart.wxml │ └── cart.wxss ├── cate-list │ ├── cate-list.js │ ├── cate-list.json │ ├── cate-list.wxml │ └── cate-list.wxss ├── cate │ ├── cate.js │ ├── cate.json │ ├── cate.wxml │ └── cate.wxss ├── coupons │ ├── coupons.js │ ├── coupons.json │ ├── coupons.wxml │ └── coupons.wxss ├── fav-list │ ├── fav-list.js │ ├── fav-list.json │ ├── fav-list.wxml │ └── fav-list.wxss ├── freshman │ ├── freshman.js │ ├── freshman.json │ ├── freshman.wxml │ └── freshman.wxss ├── goods-detail │ ├── goods-detail.js │ ├── goods-detail.json │ ├── goods-detail.wxml │ └── goods-detail.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── login │ ├── login.js │ ├── login.json │ ├── login.wxml │ └── login.wxss ├── logistics │ ├── logistics.js │ ├── logistics.json │ ├── logistics.wxml │ └── logistics.wxss ├── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── my-coupons │ ├── my-coupons.js │ ├── my-coupons.json │ ├── my-coupons.wxml │ └── my-coupons.wxss ├── my │ ├── my.js │ ├── my.json │ ├── my.wxml │ └── my.wxss ├── notice │ ├── notice.js │ ├── notice.json │ ├── notice.wxml │ └── notice.wxss ├── order-detail │ ├── order-detail.js │ ├── order-detail.json │ ├── order-detail.wxml │ └── order-detail.wxss ├── order-list │ ├── order-list.js │ ├── order-list.json │ ├── order-list.wxml │ └── order-list.wxss ├── pay-order │ ├── pay-order.js │ ├── pay-order.json │ ├── pay-order.wxml │ └── pay-order.wxss ├── score │ ├── score.js │ ├── score.json │ ├── score.wxml │ └── score.wxss ├── search │ ├── search.js │ ├── search.json │ ├── search.wxml │ └── search.wxss ├── start │ ├── start.js │ ├── start.json │ ├── start.wxml │ └── start.wxss ├── success │ ├── success.js │ ├── success.json │ ├── success.wxml │ └── success.wxss ├── template-cart │ ├── template-cart.js │ ├── template-cart.json │ ├── template-cart.wxml │ └── template-cart.wxss ├── topic-list │ ├── topic-list.js │ ├── topic-list.json │ ├── topic-list.wxml │ └── topic-list.wxss ├── topic │ ├── topic.js │ ├── topic.json │ ├── topic.wxml │ └── topic.wxss └── withdraw │ ├── withdraw.js │ ├── withdraw.json │ ├── withdraw.wxml │ └── withdraw.wxss ├── project.config.json ├── sitemap.json ├── utils ├── city.js ├── event.js ├── i18n.js ├── locales.js ├── pay.js └── util.js ├── wxParse ├── emojis │ ├── 00.gif │ ├── 01.gif │ ├── 02.gif │ ├── 03.gif │ ├── 04.gif │ ├── 05.gif │ ├── 06.gif │ ├── 07.gif │ ├── 08.gif │ ├── 09.gif │ ├── 10.gif │ ├── 100.gif │ ├── 101.gif │ ├── 102.gif │ ├── 103.gif │ ├── 104.gif │ ├── 105.gif │ ├── 106.gif │ ├── 107.gif │ ├── 108.gif │ ├── 109.gif │ ├── 11.gif │ ├── 110.gif │ ├── 111.gif │ ├── 112.gif │ ├── 113.gif │ ├── 114.gif │ ├── 115.gif │ ├── 116.gif │ ├── 117.gif │ ├── 118.gif │ ├── 119.gif │ ├── 12.gif │ ├── 120.gif │ ├── 121.gif │ ├── 122.gif │ ├── 123.gif │ ├── 124.gif │ ├── 125.gif │ ├── 126.gif │ ├── 127.gif │ ├── 128.gif │ ├── 129.gif │ ├── 13.gif │ ├── 130.gif │ ├── 131.gif │ ├── 132.gif │ ├── 133.gif │ ├── 134.gif │ ├── 14.gif │ ├── 15.gif │ ├── 16.gif │ ├── 17.gif │ ├── 18.gif │ ├── 19.gif │ ├── 20.gif │ ├── 21.gif │ ├── 22.gif │ ├── 23.gif │ ├── 24.gif │ ├── 25.gif │ ├── 26.gif │ ├── 27.gif │ ├── 28.gif │ ├── 29.gif │ ├── 30.gif │ ├── 31.gif │ ├── 32.gif │ ├── 33.gif │ ├── 34.gif │ ├── 35.gif │ ├── 36.gif │ ├── 37.gif │ ├── 38.gif │ ├── 39.gif │ ├── 40.gif │ ├── 41.gif │ ├── 42.gif │ ├── 43.gif │ ├── 44.gif │ ├── 45.gif │ ├── 46.gif │ ├── 47.gif │ ├── 48.gif │ ├── 49.gif │ ├── 50.gif │ ├── 51.gif │ ├── 52.gif │ ├── 53.gif │ ├── 54.gif │ ├── 55.gif │ ├── 56.gif │ ├── 57.gif │ ├── 58.gif │ ├── 59.gif │ ├── 60.gif │ ├── 61.gif │ ├── 62.gif │ ├── 63.gif │ ├── 64.gif │ ├── 65.gif │ ├── 66.gif │ ├── 67.gif │ ├── 68.gif │ ├── 69.gif │ ├── 70.gif │ ├── 71.gif │ ├── 72.gif │ ├── 73.gif │ ├── 74.gif │ ├── 75.gif │ ├── 76.gif │ ├── 77.gif │ ├── 78.gif │ ├── 79.gif │ ├── 80.gif │ ├── 81.gif │ ├── 82.gif │ ├── 83.gif │ ├── 84.gif │ ├── 85.gif │ ├── 86.gif │ ├── 87.gif │ ├── 88.gif │ ├── 89.gif │ ├── 90.gif │ ├── 91.gif │ ├── 92.gif │ ├── 93.gif │ ├── 94.gif │ ├── 95.gif │ ├── 96.gif │ ├── 97.gif │ ├── 98.gif │ └── 99.gif ├── html2json.js ├── htmlparser.js ├── showdown.js ├── wxDiscode.js ├── wxParse.js ├── wxParse.wxml └── wxParse.wxss └── wx_xiaochengxu_fecmall2.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows 2 | [Dd]esktop.ini 3 | Thumbs.db 4 | $RECYCLE.BIN/ 5 | 6 | # macOS 7 | .DS_Store 8 | .fseventsd 9 | .Spotlight-V100 10 | .TemporaryItems 11 | .Trashes 12 | 13 | # Node.js 14 | node_modules/ 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 thundersword 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 微信小程序入口 2 | 3 | 感谢提供的微信小程序:https://github.com/thundersword/fire-shop-lite 4 | 5 | fecshop微信小程序是基于上面的小程序二次开发而来,后台使用的fecshop的api。 6 | 7 | 8 | ### 查看demo 9 | 10 | 1.微信小程序,直接搜索:Fecmall 11 | 12 | 2.扫码查看 13 | 14 | ![xxx](wx_xiaochengxu_fecmall2.png) 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/start/start", 4 | "pages/index/index", 5 | "pages/logs/logs", 6 | "pages/login/login", 7 | "pages/my/my", 8 | "pages/cart/cart", 9 | "pages/goods-detail/goods-detail", 10 | "pages/template-cart/template-cart", 11 | "pages/topic/topic", 12 | "pages/topic-list/topic-list", 13 | "pages/coupons/coupons", 14 | "pages/my-coupons/my-coupons", 15 | "pages/score/score", 16 | "pages/withdraw/withdraw", 17 | "pages/fav-list/fav-list", 18 | "pages/address/address", 19 | "pages/address-add/address-add", 20 | "pages/order-list/order-list", 21 | "pages/cate-list/cate-list", 22 | "pages/order-detail/order-detail", 23 | "pages/notice/notice", 24 | "pages/cate/cate", 25 | "pages/logistics/logistics", 26 | "pages/success/success", 27 | "pages/pay-order/pay-order", 28 | "pages/freshman/freshman", 29 | "pages/search/search" 30 | ], 31 | "window": { 32 | "navigationStyle": "custom", 33 | "navigationBarTextStyle": "black" 34 | }, 35 | "tabBar": { 36 | "color": "#838383", 37 | "selectedColor": "#b4282d", 38 | "borderStyle": "white", 39 | "backgroundColor": "#fff", 40 | "list": [ 41 | { 42 | "pagePath": "pages/index/index", 43 | "iconPath": "images/nav/home-off.png", 44 | "selectedIconPath": "images/nav/home-on.png", 45 | "text": "首页" 46 | }, 47 | { 48 | "pagePath": "pages/cate/cate", 49 | "iconPath": "images/nav/menu-off.png", 50 | "selectedIconPath": "images/nav/menu-on.png", 51 | "text": "分类" 52 | }, 53 | { 54 | "pagePath": "pages/cart/cart", 55 | "iconPath": "images/nav/cart-off.png", 56 | "selectedIconPath": "images/nav/cart-on.png", 57 | "text": "购物车" 58 | }, 59 | { 60 | "pagePath": "pages/my/my", 61 | "iconPath": "images/nav/my-off.png", 62 | "selectedIconPath": "images/nav/my-on.png", 63 | "text": "我的" 64 | } 65 | ] 66 | }, 67 | "sitemapLocation": "sitemap.json" 68 | } -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- 1 | /**app.wxss**/ 2 | .container { 3 | height: 100%; 4 | } 5 | 6 | .wxParse-img { 7 | display: block !important; 8 | } 9 | 10 | .header-container { 11 | width: 100%; 12 | height: 130rpx; 13 | position: fixed; 14 | top: 0; 15 | left: 0; 16 | z-index: 9999; 17 | } 18 | 19 | .header-container .header-name { 20 | width: 100%; 21 | height: 100%; 22 | text-align: center; 23 | line-height: 170rpx; 24 | font-size: 30rpx; 25 | color: #333; 26 | } 27 | 28 | .iphone .header-container { 29 | height: 180rpx; 30 | } 31 | 32 | .iphone .header-container .header-name { 33 | line-height: 270rpx; 34 | } 35 | 36 | .header-container .goback { 37 | width: 56rpx; 38 | height: 56rpx; 39 | margin-top: 50rpx; 40 | position: absolute; 41 | margin-left: 20rpx; 42 | border: 1rpx solid #fff; 43 | border-radius: 50%; 44 | padding: 6rpx; 45 | } 46 | 47 | .iphone .header-container .goback { 48 | margin-top: 90rpx; 49 | } 50 | .hidden { 51 | display: none; 52 | } 53 | .flex{ 54 | display: flex; 55 | justify-content: space-between; 56 | flex-wrap: wrap; 57 | } 58 | .no-more-goods { 59 | text-align: center; 60 | margin-top: 20%; 61 | } 62 | 63 | .no-order-img { 64 | width: 110px; 65 | height: 110px; 66 | } 67 | 68 | .no-more-goods .text { 69 | font-size: 28rpx; 70 | color: #999; 71 | margin-top: -5px; 72 | } 73 | .fix-top{ 74 | position: fixed; 75 | top: 0; 76 | left: 0; 77 | z-index: 99999; 78 | } -------------------------------------------------------------------------------- /components/navigation/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/components/navigation/img/home.png -------------------------------------------------------------------------------- /components/navigation/img/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/components/navigation/img/left.png -------------------------------------------------------------------------------- /components/navigation/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/components/navigation/img/search.png -------------------------------------------------------------------------------- /components/navigation/navigation.js: -------------------------------------------------------------------------------- 1 | const app = getApp(); 2 | Component({ 3 | properties: { 4 | //小程序页面的表头 5 | title: { 6 | type: String, 7 | default: '穿衣助手拼团' 8 | }, 9 | //是否展示返回和主页按钮 10 | showIcon: { 11 | type: Boolean, 12 | default: true 13 | }, 14 | //是否显示标题 15 | showTitle: { 16 | type: Boolean, 17 | default: true 18 | }, 19 | yourSearchContent: { 20 | type: String, 21 | default: '' 22 | }, 23 | //是否显示搜索框 24 | showSearch: { 25 | type: Boolean, 26 | default: true 27 | } 28 | }, 29 | 30 | data: { 31 | statusBarHeight: 0, 32 | titleBarHeight: 0, 33 | //yours: '搜索你关注的内容', 34 | }, 35 | 36 | ready: function () { 37 | // 因为很多地方都需要用到,所有保存到全局对象中 38 | if (app.globalData && app.globalData.statusBarHeight && app.globalData.titleBarHeight) { 39 | this.setData({ 40 | statusBarHeight: app.globalData.statusBarHeight, 41 | titleBarHeight: app.globalData.titleBarHeight 42 | }); 43 | } else { 44 | let that = this 45 | wx.getSystemInfo({ 46 | success: function (res) { 47 | if (!app.globalData) { 48 | app.globalData = {} 49 | } 50 | if (res.model.indexOf('iPhone') !== -1) { 51 | app.globalData.titleBarHeight = 44 52 | } else { 53 | app.globalData.titleBarHeight = 48 54 | } 55 | app.globalData.statusBarHeight = res.statusBarHeight 56 | that.setData({ 57 | statusBarHeight: app.globalData.statusBarHeight, 58 | titleBarHeight: app.globalData.titleBarHeight 59 | }); 60 | }, 61 | failure() { 62 | that.setData({ 63 | statusBarHeight: 0, 64 | titleBarHeight: 0 65 | }); 66 | } 67 | }) 68 | } 69 | }, 70 | 71 | methods: { 72 | headerBack() { 73 | wx.navigateBack({ 74 | delta: 1, 75 | fail(e) { 76 | wx.switchTab({ 77 | url: '/pages/grouponList/main' 78 | }) 79 | } 80 | }) 81 | }, 82 | headerHome() { 83 | wx.switchTab({ 84 | url: '/pages/index/index' 85 | }) 86 | }, 87 | headerSearch(){ 88 | wx.navigateTo({ 89 | url:'/pages/search/search' 90 | }) 91 | } 92 | } 93 | }) 94 | -------------------------------------------------------------------------------- /components/navigation/navigation.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /components/navigation/navigation.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{title}} 9 | {{yourSearchContent}} 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /components/navigation/navigation.wxss: -------------------------------------------------------------------------------- 1 | .loading-gif { 2 | width: 46rpx; 3 | height: 8rpx; 4 | } 5 | .loading-wrap { 6 | height: 100%; 7 | display: flex; 8 | justify-content: center; 9 | align-items: center; 10 | margin-bottom: 20rpx; 11 | } 12 | .loading-wrap image { 13 | background-color: transparent; 14 | } 15 | .header { 16 | display: flex; 17 | align-items: center; 18 | top: 0; 19 | position: fixed; 20 | width: 100%; 21 | background-color: #FFF; 22 | z-index: 99999; 23 | box-shadow: 0 1rpx 3rpx #D7D7D7; 24 | } 25 | .header .line { 26 | border-left: 1rpx solid #D7D7D7; 27 | height: 36rpx; 28 | } 29 | .header .back, .header .home { 30 | height: 32rpx; 31 | width: 40%; 32 | height: 100%; 33 | display: flex; 34 | align-items: center; 35 | justify-content: center; 36 | } 37 | .header .title-bar { 38 | display: flex; 39 | align-items: center; 40 | justify-content: space-around; 41 | width: 138rpx; 42 | height: 56rpx; 43 | border: 1rpx solid #F1F1F1; 44 | border-radius: 32rpx; 45 | margin-left: 14rpx; 46 | padding: 0 14rpx; 47 | } 48 | .header .title-bar image { 49 | width: 32rpx; 50 | height: 32rpx; 51 | background: transparent; 52 | vertical-align: top; 53 | } 54 | 55 | .header .header-title { 56 | position: absolute; 57 | left: 50%; 58 | font-size: 38rpx; 59 | transform: translateX(-50%); 60 | } 61 | .header .search-box{ 62 | /* border: 1px solid #eee; */ 63 | border-radius: 27px; 64 | background: hsla(0, 0%, 100%, .6); 65 | height: 32px; 66 | width: 355rpx; 67 | background: #f7f7f7; 68 | margin-left: 20rpx; 69 | display: flex; 70 | justify-content: flex-start; 71 | align-items: center; 72 | } 73 | .header .search-box text{ 74 | height: 30px; 75 | line-height: 30px; 76 | color: #d1d1d1; 77 | /* padding-left: 14px; */ 78 | font-size: 26rpx; 79 | margin-left: 5rpx; 80 | } 81 | .header .search-box image{ 82 | height: 34rpx; 83 | width: 34rpx; 84 | margin-left: 14px; 85 | } 86 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | var config = { 2 | //链接源,一般不需要修改 3 | //'url': 'https://api.it120.cc/', 4 | 5 | //这里填写你自己的工厂个性域名,工厂后台首页可以看到 6 | //'subDomain': 'fireshop', 7 | 8 | // https://api.it120.cc/fireshop 9 | 'url': 'https://fecshop.appserver.fancyecommerce.com', 10 | 'subDomain': '', 11 | 12 | // 默认语言 13 | 'lang_code': 'zh', 14 | // 默认货币 15 | 'currency_code': 'CNY', 16 | 17 | //版本标识,这里不需要修改 18 | 'version': '1.0.0', 19 | //订单自动关闭时间,默认60分钟,以分为单位,填0则不自动关闭订单 20 | 'closeorder': '60', 21 | //关闭订单模版ID,这里填写你自己的模版消息ID 22 | 'closeorderkey': 'ihjZ2LiMQUH-G9UR9B2TDI0xQWRb0m4IT5_8s1nbZS0', 23 | 24 | //发货提醒模版ID,这里填写你自己的模版消息ID 25 | 'deliveryorderkey': 'HXtRlV3djH9MFVOm_kjMQv4GLXC4q7EdyUc9XUzOEgk', 26 | 27 | //评价模版提醒ID,这里填写你自己的模版消息ID 28 | 'assessorderkey': 'SbpRcF3FQnK9qIieYTHpQYYvuar6xOqVfs_6bNuxtlw', 29 | 30 | //已评价模版提醒ID,这里填写你自己的模版消息ID 31 | 'successorderkey': 'uySaxE9mAJYTvsshRibxSLCxFA1beXXf-USc7ftD_pA' 32 | } 33 | module.exports = config -------------------------------------------------------------------------------- /general/start/first.js: -------------------------------------------------------------------------------- 1 | // general/start/first.js 2 | Page({ 3 | 4 | /** 5 | * 页面的初始数据 6 | */ 7 | data: { 8 | 9 | }, 10 | 11 | /** 12 | * 生命周期函数--监听页面加载 13 | */ 14 | onLoad: function (options) { 15 | 16 | }, 17 | 18 | /** 19 | * 生命周期函数--监听页面初次渲染完成 20 | */ 21 | onReady: function () { 22 | 23 | }, 24 | 25 | /** 26 | * 生命周期函数--监听页面显示 27 | */ 28 | onShow: function () { 29 | 30 | }, 31 | 32 | /** 33 | * 生命周期函数--监听页面隐藏 34 | */ 35 | onHide: function () { 36 | 37 | }, 38 | 39 | /** 40 | * 生命周期函数--监听页面卸载 41 | */ 42 | onUnload: function () { 43 | 44 | }, 45 | 46 | /** 47 | * 页面相关事件处理函数--监听用户下拉动作 48 | */ 49 | onPullDownRefresh: function () { 50 | 51 | }, 52 | 53 | /** 54 | * 页面上拉触底事件的处理函数 55 | */ 56 | onReachBottom: function () { 57 | 58 | }, 59 | 60 | /** 61 | * 用户点击右上角分享 62 | */ 63 | onShareAppMessage: function () { 64 | 65 | } 66 | }) -------------------------------------------------------------------------------- /general/start/first.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /general/start/first.wxml: -------------------------------------------------------------------------------- 1 | 2 | general/start/first.wxml 3 | -------------------------------------------------------------------------------- /general/start/first.wxss: -------------------------------------------------------------------------------- 1 | /* general/start/first.wxss */ -------------------------------------------------------------------------------- /images/add-addr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/add-addr.png -------------------------------------------------------------------------------- /images/addr-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/addr-active.png -------------------------------------------------------------------------------- /images/addr-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/addr-edit.png -------------------------------------------------------------------------------- /images/addr-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/addr-line.png -------------------------------------------------------------------------------- /images/address_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/address_add.png -------------------------------------------------------------------------------- /images/address_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/address_empty.png -------------------------------------------------------------------------------- /images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/arrow-right.png -------------------------------------------------------------------------------- /images/coupon_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/coupon_button.png -------------------------------------------------------------------------------- /images/coupon_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/coupon_empty.png -------------------------------------------------------------------------------- /images/coupons-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/coupons-pic.jpg -------------------------------------------------------------------------------- /images/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/default_avatar.png -------------------------------------------------------------------------------- /images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/del.png -------------------------------------------------------------------------------- /images/empty_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/empty_collection.png -------------------------------------------------------------------------------- /images/empty_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/empty_comment.png -------------------------------------------------------------------------------- /images/empty_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/empty_goods.png -------------------------------------------------------------------------------- /images/empty_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/empty_order.png -------------------------------------------------------------------------------- /images/goback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/goback.png -------------------------------------------------------------------------------- /images/gohome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/gohome.png -------------------------------------------------------------------------------- /images/gonggao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/gonggao.png -------------------------------------------------------------------------------- /images/goods_collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/goods_collect.png -------------------------------------------------------------------------------- /images/goods_collect_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/goods_collect_checked.png -------------------------------------------------------------------------------- /images/goods_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/goods_service.png -------------------------------------------------------------------------------- /images/icon/kanjia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/icon/kanjia.png -------------------------------------------------------------------------------- /images/icon/liquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/icon/liquan.png -------------------------------------------------------------------------------- /images/icon/qiandao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/icon/qiandao.png -------------------------------------------------------------------------------- /images/icon/zhuanlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/icon/zhuanlan.png -------------------------------------------------------------------------------- /images/jifen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/jifen.png -------------------------------------------------------------------------------- /images/kanjia/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/kanjia/close.png -------------------------------------------------------------------------------- /images/kanjia/kanjia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/kanjia/kanjia.png -------------------------------------------------------------------------------- /images/kanjia/kjico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/kanjia/kjico.png -------------------------------------------------------------------------------- /images/kanjia/share_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/kanjia/share_img.png -------------------------------------------------------------------------------- /images/kanjia/share_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/kanjia/share_user.png -------------------------------------------------------------------------------- /images/nav/cart-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/cart-off.png -------------------------------------------------------------------------------- /images/nav/cart-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/cart-on.png -------------------------------------------------------------------------------- /images/nav/home-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/home-off.png -------------------------------------------------------------------------------- /images/nav/home-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/home-on.png -------------------------------------------------------------------------------- /images/nav/menu-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/menu-off.png -------------------------------------------------------------------------------- /images/nav/menu-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/menu-on.png -------------------------------------------------------------------------------- /images/nav/my-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/my-off.png -------------------------------------------------------------------------------- /images/nav/my-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/my-on.png -------------------------------------------------------------------------------- /images/nav/order-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/order-off.png -------------------------------------------------------------------------------- /images/nav/order-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/nav/order-on.png -------------------------------------------------------------------------------- /images/none/cart_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/none/cart_empty.png -------------------------------------------------------------------------------- /images/order-details/delivering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/delivering.png -------------------------------------------------------------------------------- /images/order-details/icon-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/icon-address.png -------------------------------------------------------------------------------- /images/order-details/icon-ddfh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/icon-ddfh.png -------------------------------------------------------------------------------- /images/order-details/icon-ddfk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/icon-ddfk.png -------------------------------------------------------------------------------- /images/order-details/icon-ddgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/icon-ddgb.png -------------------------------------------------------------------------------- /images/order-details/icon-ddsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/icon-ddsh.png -------------------------------------------------------------------------------- /images/order-details/icon-jycg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/icon-jycg.png -------------------------------------------------------------------------------- /images/order-details/icon-wuliu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/icon-wuliu.png -------------------------------------------------------------------------------- /images/order-details/orderform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/orderform.png -------------------------------------------------------------------------------- /images/order-details/orderform_pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/orderform_pay.png -------------------------------------------------------------------------------- /images/order-details/orderform_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/order-details/orderform_ship.png -------------------------------------------------------------------------------- /images/profile_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/profile_address.png -------------------------------------------------------------------------------- /images/profile_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/profile_collection.png -------------------------------------------------------------------------------- /images/profile_dfunding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/profile_dfunding.png -------------------------------------------------------------------------------- /images/profile_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/profile_service.png -------------------------------------------------------------------------------- /images/profile_tegral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/profile_tegral.png -------------------------------------------------------------------------------- /images/profile_ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/profile_ticket.png -------------------------------------------------------------------------------- /images/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/score.png -------------------------------------------------------------------------------- /images/score_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/score_bg.png -------------------------------------------------------------------------------- /images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/search.png -------------------------------------------------------------------------------- /images/search_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/search_empty.png -------------------------------------------------------------------------------- /images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/share.png -------------------------------------------------------------------------------- /images/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/shopping.png -------------------------------------------------------------------------------- /images/shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/shopping_cart.png -------------------------------------------------------------------------------- /images/withdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecshop/wx_micro_program/65d9a2b7e3af8c285f30272999a233a32ab8a3be/images/withdraw.png -------------------------------------------------------------------------------- /pages/address-add/address-add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "navigation": "/components/navigation/navigation" 4 | } 5 | } -------------------------------------------------------------------------------- /pages/address-add/address-add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | {{language.address_name}} 7 | 8 | 9 | 10 | 11 | 12 | {{language.mobile}} 13 | 14 | 15 | 16 | 17 | 18 | {{language.select_state}} 19 | 20 | 21 | {{selProvince}} 22 | 23 | 24 | 25 | 26 | {{selCity}} 27 | 28 | 29 | 30 | 31 | {{selDistrict}} 32 | 33 | 34 | 35 | 36 | {{language.address_info}} 37 | 38 | 39 |