├── App.vue ├── README.md ├── api └── http.js ├── components ├── search │ └── search.vue ├── simple-pro │ ├── action-sheet.vue │ ├── alert.vue │ ├── customModal.vue │ ├── dialog-loading.vue │ └── dialog.vue ├── top-bar │ └── top-bar.vue └── uni-list │ ├── uni-badge │ ├── readme.md │ └── uni-badge.vue │ ├── uni-icon │ ├── readme.md │ └── uni-icon.vue │ ├── uni-list-item │ └── uni-list-item.vue │ └── uni-list │ ├── readme.md │ └── uni-list.vue ├── main.js ├── manifest.json ├── pages.json ├── pages ├── cart │ └── cart.vue ├── chat │ └── chat.vue ├── component │ └── swiper.vue ├── content │ └── content.vue ├── error │ ├── error.vue │ ├── errordesc.vue │ ├── info.vue │ └── select.vue ├── goods │ ├── goods.vue │ ├── grids.vue │ └── list.vue ├── index │ ├── index.vue │ └── index1.vue ├── main │ └── main.vue ├── pro │ ├── action-sheet.vue │ ├── alert.vue │ └── nvues.vue ├── say │ └── say.vue ├── search │ └── index.vue ├── settings │ ├── security-setting.vue │ └── settings.vue ├── test │ └── map.vue └── ucenter │ ├── index.vue │ ├── login.vue │ └── register.vue ├── static ├── css │ ├── icon.css │ └── simplepro.css ├── img │ ├── common │ │ ├── avatar.jpg │ │ ├── logo.jpg │ │ └── logo.png │ ├── demo │ │ ├── 1.png │ │ ├── 2.png │ │ └── pexels-photo-26180.jpg │ ├── error │ │ ├── 33.jpg │ │ ├── c1.png │ │ ├── n1.png │ │ ├── n2.png │ │ └── no.png │ ├── footer │ │ ├── footer-cart-act.png │ │ ├── footer-cart.png │ │ ├── footer-home-act.png │ │ ├── footer-home.png │ │ ├── footer-me-act.png │ │ ├── footer-me.png │ │ ├── footer-msg-act.png │ │ ├── footer-msg.png │ │ └── footer-say-act.png │ ├── index │ │ └── location.png │ ├── search │ │ ├── attention.png │ │ ├── attention_forbid.png │ │ ├── back.png │ │ └── delete.png │ ├── settings │ │ └── to.png │ └── ucenter │ │ ├── face.jpg │ │ ├── l1.png │ │ ├── l2.png │ │ ├── l3.png │ │ ├── l4.png │ │ ├── setting.png │ │ ├── sever │ │ ├── addr.png │ │ ├── bank.png │ │ ├── choujiang.png │ │ ├── kefu.png │ │ ├── mingxi.png │ │ ├── momey.png │ │ ├── point.png │ │ ├── quan.png │ │ ├── renw.png │ │ └── security.png │ │ ├── to.png │ │ └── 香蕉.png └── shophome │ ├── banner.jpg │ ├── category-img │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── face.png │ ├── img │ ├── p1.jpg │ ├── p10.jpg │ ├── p2.jpg │ ├── p3.jpg │ ├── p4.jpg │ ├── p5.jpg │ ├── p6.jpg │ ├── p7.jpg │ ├── p8.jpg │ └── p9.jpg │ ├── pick-img │ ├── p1.jpg │ ├── p2.jpg │ └── p3.jpg │ └── swiper-img │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ └── 3.jpg └── unpackage ├── dist └── dev │ ├── .tmp │ └── app-plus │ │ ├── app.js │ │ ├── app.json │ │ ├── app.wxss │ │ ├── common │ │ ├── main.js │ │ ├── main.wxss │ │ ├── runtime.js │ │ ├── slots.wxml │ │ ├── vendor.js │ │ └── vendor.wxss │ │ ├── components │ │ ├── simple-pro │ │ │ ├── action-sheet.vue.wxml │ │ │ ├── alert.vue.wxml │ │ │ ├── customModal.vue.wxml │ │ │ ├── dialog-loading.vue.wxml │ │ │ └── dialog.vue.wxml │ │ └── uni-list │ │ │ ├── uni-badge │ │ │ └── uni-badge.vue.wxml │ │ │ ├── uni-icon │ │ │ └── uni-icon.vue.wxml │ │ │ ├── uni-list-item │ │ │ └── uni-list-item.vue.wxml │ │ │ └── uni-list │ │ │ └── uni-list.vue.wxml │ │ ├── manifest.json │ │ ├── pages │ │ ├── cart │ │ │ ├── cart.js │ │ │ ├── cart.json │ │ │ ├── cart.vue.wxml │ │ │ ├── cart.wxml │ │ │ └── cart.wxss │ │ ├── chat │ │ │ ├── chat.js │ │ │ ├── chat.json │ │ │ ├── chat.vue.wxml │ │ │ ├── chat.wxml │ │ │ └── chat.wxss │ │ ├── component │ │ │ ├── swiper.js │ │ │ ├── swiper.json │ │ │ ├── swiper.vue.wxml │ │ │ └── swiper.wxml │ │ ├── content │ │ │ ├── content.js │ │ │ ├── content.json │ │ │ ├── content.vue.wxml │ │ │ └── content.wxml │ │ ├── error │ │ │ ├── error.js │ │ │ ├── error.json │ │ │ ├── error.vue.wxml │ │ │ ├── error.wxml │ │ │ ├── errordesc.js │ │ │ ├── errordesc.json │ │ │ ├── errordesc.vue.wxml │ │ │ ├── errordesc.wxml │ │ │ ├── info.js │ │ │ ├── info.json │ │ │ ├── info.vue.wxml │ │ │ ├── info.wxml │ │ │ ├── select.js │ │ │ ├── select.json │ │ │ ├── select.vue.wxml │ │ │ └── select.wxml │ │ ├── goods │ │ │ ├── goods.js │ │ │ ├── goods.json │ │ │ ├── goods.vue.wxml │ │ │ ├── goods.wxml │ │ │ ├── goods.wxss │ │ │ ├── grids.js │ │ │ ├── grids.json │ │ │ ├── grids.vue.wxml │ │ │ └── grids.wxml │ │ ├── index │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.vue.wxml │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── pro │ │ │ ├── action-sheet.js │ │ │ ├── action-sheet.json │ │ │ ├── action-sheet.vue.wxml │ │ │ ├── action-sheet.wxml │ │ │ ├── action-sheet.wxss │ │ │ ├── alert.js │ │ │ ├── alert.json │ │ │ ├── alert.vue.wxml │ │ │ ├── alert.wxml │ │ │ ├── alert.wxss │ │ │ ├── nvues.js │ │ │ ├── nvues.json │ │ │ ├── nvues.vue.wxml │ │ │ └── nvues.wxml │ │ ├── say │ │ │ ├── say.js │ │ │ ├── say.json │ │ │ ├── say.vue.wxml │ │ │ ├── say.wxml │ │ │ └── say.wxss │ │ ├── settings │ │ │ ├── security-setting.js │ │ │ ├── security-setting.json │ │ │ ├── security-setting.vue.wxml │ │ │ ├── security-setting.wxml │ │ │ ├── settings.js │ │ │ ├── settings.json │ │ │ ├── settings.vue.wxml │ │ │ ├── settings.wxml │ │ │ └── settings.wxss │ │ ├── test │ │ │ ├── map.js │ │ │ ├── map.json │ │ │ ├── map.vue.wxml │ │ │ ├── map.wxml │ │ │ └── map.wxss │ │ └── ucenter │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.vue.wxml │ │ │ ├── index.wxml │ │ │ ├── index.wxss │ │ │ ├── login.js │ │ │ ├── login.json │ │ │ ├── login.vue.wxml │ │ │ ├── login.wxml │ │ │ ├── login.wxss │ │ │ ├── register.js │ │ │ ├── register.json │ │ │ ├── register.vue.wxml │ │ │ ├── register.wxml │ │ │ └── register.wxss │ │ └── static │ │ ├── css │ │ ├── icon.css │ │ └── simplepro.css │ │ ├── img │ │ ├── common │ │ │ ├── avatar.jpg │ │ │ ├── logo.jpg │ │ │ └── logo.png │ │ ├── demo │ │ │ └── pexels-photo-26180.jpg │ │ ├── error │ │ │ ├── 33.jpg │ │ │ ├── c1.png │ │ │ ├── n1.png │ │ │ ├── n2.png │ │ │ └── no.png │ │ ├── footer │ │ │ ├── footer-cart-act.png │ │ │ ├── footer-cart.png │ │ │ ├── footer-home-act.png │ │ │ ├── footer-home.png │ │ │ ├── footer-me-act.png │ │ │ ├── footer-me.png │ │ │ ├── footer-msg-act.png │ │ │ ├── footer-msg.png │ │ │ └── footer-say-act.png │ │ ├── index │ │ │ └── location.png │ │ ├── search │ │ │ ├── attention.png │ │ │ ├── attention_forbid.png │ │ │ ├── back.png │ │ │ └── delete.png │ │ ├── settings │ │ │ ├── to.png │ │ │ └── 大于号.png │ │ └── ucenter │ │ │ ├── face.jpg │ │ │ ├── l1.png │ │ │ ├── l2.png │ │ │ ├── l3.png │ │ │ ├── l4.png │ │ │ ├── setting.png │ │ │ ├── sever │ │ │ ├── addr.png │ │ │ ├── bank.png │ │ │ ├── choujiang.png │ │ │ ├── kefu.png │ │ │ ├── mingxi.png │ │ │ ├── momey.png │ │ │ ├── point.png │ │ │ ├── quan.png │ │ │ ├── renw.png │ │ │ └── security.png │ │ │ ├── to.png │ │ │ └── 香蕉.png │ │ └── shophome │ │ ├── banner.jpg │ │ ├── category-img │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── face.png │ │ ├── img │ │ ├── p1.jpg │ │ ├── p10.jpg │ │ ├── p2.jpg │ │ ├── p3.jpg │ │ ├── p4.jpg │ │ ├── p5.jpg │ │ ├── p6.jpg │ │ ├── p7.jpg │ │ ├── p8.jpg │ │ └── p9.jpg │ │ ├── pick-img │ │ ├── p1.jpg │ │ ├── p2.jpg │ │ └── p3.jpg │ │ └── swiper-img │ │ ├── 0.jpg │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ └── app-plus │ ├── __uniappchooselocation.html │ ├── __uniappcoverview.html │ ├── __uniappes6.js │ ├── __uniappmap.html │ ├── __uniappmarker@3x.png │ ├── __uniappopenlocation.html │ ├── __uniappscan.html │ ├── __uniappservice.html │ ├── __uniappsuccess.png │ ├── __uniappview.html │ ├── app-service.js │ ├── app-view.js │ ├── manifest.json │ ├── pages │ ├── cart │ │ └── cart.js │ ├── chat │ │ └── chat.js │ ├── component │ │ └── swiper.js │ ├── content │ │ └── content.js │ ├── error │ │ ├── error.js │ │ ├── errordesc.js │ │ ├── info.js │ │ └── select.js │ ├── goods │ │ ├── goods.js │ │ └── grids.js │ ├── index │ │ └── index.js │ ├── pro │ │ ├── action-sheet.js │ │ ├── alert.js │ │ └── nvues.js │ ├── say │ │ └── say.js │ ├── settings │ │ ├── security-setting.js │ │ └── settings.js │ ├── test │ │ └── map.js │ └── ucenter │ │ ├── index.js │ │ ├── login.js │ │ └── register.js │ └── static │ ├── img │ ├── common │ │ ├── avatar.jpg │ │ ├── logo.jpg │ │ └── logo.png │ ├── demo │ │ └── pexels-photo-26180.jpg │ ├── error │ │ ├── 33.jpg │ │ ├── c1.png │ │ ├── n1.png │ │ ├── n2.png │ │ └── no.png │ ├── footer │ │ ├── footer-cart-act.png │ │ ├── footer-cart.png │ │ ├── footer-home-act.png │ │ ├── footer-home.png │ │ ├── footer-me-act.png │ │ ├── footer-me.png │ │ ├── footer-msg-act.png │ │ ├── footer-msg.png │ │ └── footer-say-act.png │ ├── index │ │ └── location.png │ ├── search │ │ ├── attention.png │ │ ├── attention_forbid.png │ │ ├── back.png │ │ └── delete.png │ ├── settings │ │ ├── to.png │ │ └── 大于号.png │ └── ucenter │ │ ├── face.jpg │ │ ├── l1.png │ │ ├── l2.png │ │ ├── l3.png │ │ ├── l4.png │ │ ├── setting.png │ │ ├── sever │ │ ├── addr.png │ │ ├── bank.png │ │ ├── choujiang.png │ │ ├── kefu.png │ │ ├── mingxi.png │ │ ├── momey.png │ │ ├── point.png │ │ ├── quan.png │ │ ├── renw.png │ │ └── security.png │ │ ├── to.png │ │ └── 香蕉.png │ └── shophome │ ├── banner.jpg │ ├── category-img │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── face.png │ ├── img │ ├── p1.jpg │ ├── p10.jpg │ ├── p2.jpg │ ├── p3.jpg │ ├── p4.jpg │ ├── p5.jpg │ ├── p6.jpg │ ├── p7.jpg │ ├── p8.jpg │ └── p9.jpg │ ├── pick-img │ ├── p1.jpg │ ├── p2.jpg │ └── p3.jpg │ └── swiper-img │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ └── 3.jpg └── res └── icons ├── 120x120.png ├── 144x144.png ├── 152x152.png ├── 167x167.png ├── 180x180.png ├── 192x192.png ├── 20x20.png ├── 29x29.png ├── 40x40.png ├── 48x48.png ├── 58x58.png ├── 60x60.png ├── 72x72.png ├── 76x76.png ├── 80x80.png ├── 87x87.png └── 96x96.png /App.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 开发环境: HBuilderX 2 | 3 | 1.安装HbuilderX 4 | 5 | 2.安装插件(工具-插件安装-scss/sass编译插件) 6 | 7 | 3.运行项目(运行-运行到浏览器) 8 | 9 | ![Image text](https://raw.githubusercontent.com/irany666/redi_app/master/static/img/demo/1.png) 10 | 11 | ![Image text](https://github.com/irany666/redi_app/raw/master/static/img/demo/2.png) -------------------------------------------------------------------------------- /api/http.js: -------------------------------------------------------------------------------- 1 | 2 | var API_PATH = 'http://localhost:8095' 3 | const ajax = (opt) => { 4 | opt = opt || {}; 5 | opt.url = opt.url || ''; 6 | opt.data = opt.data || null; 7 | opt.method = opt.method || 'GET'; 8 | opt.header = opt.header || { 9 | "Content-Type": "application/json" 10 | }; 11 | opt.success = opt.success || function() {}; 12 | 13 | uni.request({ 14 | url: API_PATH + opt.url, 15 | data: opt.data, 16 | method: opt.method, 17 | header: { 18 | 'Authorization':uni.getStorageSync('token') 19 | }, 20 | dataType: opt.dataType, 21 | success: function(res) { 22 | opt.success(res); 23 | }, 24 | fail: function() { 25 | uni.showToast({ 26 | title: '请稍后重试' 27 | }); 28 | } 29 | }) 30 | } 31 | export default { 32 | ajax 33 | } 34 | -------------------------------------------------------------------------------- /components/simple-pro/action-sheet.vue: -------------------------------------------------------------------------------- 1 | 12 | 59 | -------------------------------------------------------------------------------- /components/simple-pro/alert.vue: -------------------------------------------------------------------------------- 1 | 7 | 26 | -------------------------------------------------------------------------------- /components/simple-pro/customModal.vue: -------------------------------------------------------------------------------- 1 | 29 | 30 | 99 | 100 | 103 | -------------------------------------------------------------------------------- /components/simple-pro/dialog-loading.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 31 | 32 | 35 | -------------------------------------------------------------------------------- /components/simple-pro/dialog.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 118 | 119 | 122 | -------------------------------------------------------------------------------- /components/top-bar/top-bar.vue: -------------------------------------------------------------------------------- 1 | 2 | 30 | 31 | 118 | 119 | 149 | -------------------------------------------------------------------------------- /components/uni-list/uni-badge/readme.md: -------------------------------------------------------------------------------- 1 | ### Badge 数字角标 2 | 3 | 数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景,组件名:``uni-badge``,代码块: uBadge。 4 | 5 | **使用方式:** 6 | 7 | 在 ``script`` 中引用组件 8 | 9 | ```javascript 10 | import uniBadge from "@/components/uni-badge/uni-badge.vue" 11 | export default { 12 | components: {uniBadge} 13 | } 14 | ``` 15 | 16 | 在 ``template`` 中使用组件 17 | 18 | ```html 19 | 20 | 21 | 22 | ``` 23 | 24 | 实际效果参考:[https://github.com/dcloudio/uni-ui](https://github.com/dcloudio/uni-ui) 25 | 26 | **Badge 属性说明:** 27 | 28 | |属性名 |类型 |默认值 |说明 | 29 | |--- |---- |--- |--- | 30 | |text |String |- |角标内容 | 31 | |type |String |default|颜色类型,可选值:default(灰色)、primary(蓝色)、success(绿色)、warning(黄色)、error(红色) | 32 | |size |String |normal|Badge 大小,可取值:normal、small| 33 | |inverted |Boolean |false |是否无需背景颜色,为 true 时,背景颜色将变为文字的字体颜色 | 34 | |@click |EventHandle| - |点击 Badge 触发事件 | 35 | -------------------------------------------------------------------------------- /components/uni-list/uni-badge/uni-badge.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 42 | 43 | 110 | -------------------------------------------------------------------------------- /components/uni-list/uni-icon/readme.md: -------------------------------------------------------------------------------- 1 | ### Icon 图标 2 | 3 | 用于展示 icon,组件名:``uni-icon``,代码块: uIcon。 4 | 5 | **使用方式:** 6 | 7 | 在 ``script`` 中引用组件 8 | 9 | ```javascript 10 | import uniIcon from "@/components/uni-icon/uni-icon.vue" 11 | export default { 12 | components: {uniIcon} 13 | } 14 | ``` 15 | 16 | 在 ``template`` 中使用组件 17 | 18 | ```html 19 | 20 | ``` 21 | 22 | 实际效果参考:[https://github.com/dcloudio/uni-ui](https://github.com/dcloudio/uni-ui) 23 | 24 | **Icon 属性说明:** 25 | 26 | |属性名 |类型|默认值 |说明| 27 | |---|----|---|---| 28 | |type |String |-|图标图案,参考下表| 29 | |color |String |-|图标颜色 | 30 | |size |Number |24|图标大小| 31 | |@click |EventHandle|-|点击 Icon 触发事件| 32 | 33 | **type 类型:** 34 | 35 | ![icon](https://img-cdn-qiniu.dcloud.net.cn/img/icon.png) -------------------------------------------------------------------------------- /components/uni-list/uni-list/readme.md: -------------------------------------------------------------------------------- 1 | ### List 列表 2 | 3 | 列表组件,组件名:``uni-list``、``uni-list-item``,代码块: uList。 4 | 5 | **使用方式:** 6 | 7 | 在 ``script`` 中引用组件 8 | 9 | ```javascript 10 | import uniList from '@/components/uni-list/uni-list.vue' 11 | import uniListItem from '@/components/uni-list-item/uni-list-item.vue' 12 | export default { 13 | components: {uniList,uniListItem} 14 | } 15 | ``` 16 | 17 | List 一般用法 18 | 19 | ```html 20 | 21 | 22 | 23 | 24 | 25 | 26 | ``` 27 | 28 | 带描述信息 29 | 30 | ```html 31 | 32 | 33 | 34 | 35 | ``` 36 | 37 | 包含图片 38 | 39 | ```html 40 | 41 | 42 | 43 | ``` 44 | 45 | 包含图标 46 | 47 | ```html 48 | 49 | 52 | 53 | 54 | ``` 55 | 56 | 显示Switch 57 | 58 | ```html 59 | 60 | 61 | 62 | ``` 63 | 64 | 实际效果参考:[https://github.com/dcloudio/uni-ui](https://github.com/dcloudio/uni-ui) 65 | 66 | **uniListItem 属性说明:** 67 | 68 | |属性名|类型|默认值 |说明| 69 | |---|----|---|---| 70 | |title|String|-|标题| 71 | |note|String|-|描述| 72 | |disabled|Boolean|false|是否禁用| 73 | |show-arrow|Boolean|true|是否显示箭头图标| 74 | |show-badge|Boolean|false|是否显示数字角标| 75 | |badge-text|String|-|数字角标内容| 76 | |badge-type|String|-|数字角标类型,参考[Badge 数字角标](https://ext.dcloud.net.cn/plugin?id=21)| 77 | |show-switch|Boolean|false|是否显示Switch| 78 | |switch-checked|Boolean|false|Switch是否被选中| 79 | |show-extra-icon|Boolean|false|左侧是否显示扩展图标| 80 | |extra-icon|Object|-|扩展图标参数,格式为 ``{color: '#4cd964',size: '22',type: 'spinner'}``,参考 [Iocn 图标](https://ext.dcloud.net.cn/plugin?id=28)| 81 | |thumb|String|-|左侧缩略图,若thumb有值,则不会显示扩展图标| 82 | 83 | **uniListItem 事件说明:** 84 | 85 | |事件称名|说明|返回参数| 86 | |---|----|---| 87 | |click|点击 uniListItem 触发事件|-| 88 | |switchChange|点击切换 Switch 时触发|{value:checked}| 89 | -------------------------------------------------------------------------------- /components/uni-list/uni-list/uni-list.vue: -------------------------------------------------------------------------------- 1 | 6 | 11 | 46 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | import http from './api/http.js' 4 | 5 | Vue.config.productionTip = false 6 | Vue.prototype.apihttp=http 7 | 8 | App.mpType = 'app' 9 | 10 | const app = new Vue({ 11 | ...App 12 | }) 13 | app.$mount() 14 | -------------------------------------------------------------------------------- /pages/cart/cart.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | 17 | 23 | -------------------------------------------------------------------------------- /pages/chat/chat.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | 17 | 23 | -------------------------------------------------------------------------------- /pages/component/swiper.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 37 | 38 | 41 | -------------------------------------------------------------------------------- /pages/content/content.vue: -------------------------------------------------------------------------------- 1 | 32 | 33 | 42 | 43 | 46 | -------------------------------------------------------------------------------- /pages/error/error.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 25 | 26 | 29 | -------------------------------------------------------------------------------- /pages/error/errordesc.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 22 | 23 | 26 | -------------------------------------------------------------------------------- /pages/error/info.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 33 | 34 | 37 | -------------------------------------------------------------------------------- /pages/error/select.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 35 | 36 | 39 | -------------------------------------------------------------------------------- /pages/goods/goods.vue: -------------------------------------------------------------------------------- 1 | 37 | 38 | 62 | 63 | 149 | -------------------------------------------------------------------------------- /pages/goods/grids.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 32 | 33 | 36 | -------------------------------------------------------------------------------- /pages/main/main.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 73 | 74 | 77 | -------------------------------------------------------------------------------- /pages/pro/action-sheet.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 36 | 37 | 40 | -------------------------------------------------------------------------------- /pages/pro/alert.vue: -------------------------------------------------------------------------------- 1 | 31 | 32 | 112 | 113 | 118 | -------------------------------------------------------------------------------- /pages/pro/nvues.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 45 | 46 | 48 | -------------------------------------------------------------------------------- /pages/say/say.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | 17 | 23 | -------------------------------------------------------------------------------- /pages/settings/security-setting.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 39 | 40 | 42 | -------------------------------------------------------------------------------- /pages/settings/settings.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 37 | 38 | 40 | -------------------------------------------------------------------------------- /pages/test/map.vue: -------------------------------------------------------------------------------- 1 | 13 | 73 | 87 | -------------------------------------------------------------------------------- /pages/ucenter/login.vue: -------------------------------------------------------------------------------- 1 | 31 | 32 | 101 | 102 | 161 | -------------------------------------------------------------------------------- /pages/ucenter/register.vue: -------------------------------------------------------------------------------- 1 | 34 | 35 | 68 | 69 | 159 | -------------------------------------------------------------------------------- /static/img/common/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/common/avatar.jpg -------------------------------------------------------------------------------- /static/img/common/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/common/logo.jpg -------------------------------------------------------------------------------- /static/img/common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/common/logo.png -------------------------------------------------------------------------------- /static/img/demo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/demo/1.png -------------------------------------------------------------------------------- /static/img/demo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/demo/2.png -------------------------------------------------------------------------------- /static/img/demo/pexels-photo-26180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/demo/pexels-photo-26180.jpg -------------------------------------------------------------------------------- /static/img/error/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/error/33.jpg -------------------------------------------------------------------------------- /static/img/error/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/error/c1.png -------------------------------------------------------------------------------- /static/img/error/n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/error/n1.png -------------------------------------------------------------------------------- /static/img/error/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/error/n2.png -------------------------------------------------------------------------------- /static/img/error/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/error/no.png -------------------------------------------------------------------------------- /static/img/footer/footer-cart-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-cart-act.png -------------------------------------------------------------------------------- /static/img/footer/footer-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-cart.png -------------------------------------------------------------------------------- /static/img/footer/footer-home-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-home-act.png -------------------------------------------------------------------------------- /static/img/footer/footer-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-home.png -------------------------------------------------------------------------------- /static/img/footer/footer-me-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-me-act.png -------------------------------------------------------------------------------- /static/img/footer/footer-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-me.png -------------------------------------------------------------------------------- /static/img/footer/footer-msg-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-msg-act.png -------------------------------------------------------------------------------- /static/img/footer/footer-msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-msg.png -------------------------------------------------------------------------------- /static/img/footer/footer-say-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/footer/footer-say-act.png -------------------------------------------------------------------------------- /static/img/index/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/index/location.png -------------------------------------------------------------------------------- /static/img/search/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/search/attention.png -------------------------------------------------------------------------------- /static/img/search/attention_forbid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/search/attention_forbid.png -------------------------------------------------------------------------------- /static/img/search/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/search/back.png -------------------------------------------------------------------------------- /static/img/search/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/search/delete.png -------------------------------------------------------------------------------- /static/img/settings/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/settings/to.png -------------------------------------------------------------------------------- /static/img/ucenter/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/face.jpg -------------------------------------------------------------------------------- /static/img/ucenter/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/l1.png -------------------------------------------------------------------------------- /static/img/ucenter/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/l2.png -------------------------------------------------------------------------------- /static/img/ucenter/l3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/l3.png -------------------------------------------------------------------------------- /static/img/ucenter/l4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/l4.png -------------------------------------------------------------------------------- /static/img/ucenter/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/setting.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/addr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/addr.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/bank.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/choujiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/choujiang.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/kefu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/kefu.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/mingxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/mingxi.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/momey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/momey.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/point.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/quan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/quan.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/renw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/renw.png -------------------------------------------------------------------------------- /static/img/ucenter/sever/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/sever/security.png -------------------------------------------------------------------------------- /static/img/ucenter/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/to.png -------------------------------------------------------------------------------- /static/img/ucenter/香蕉.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/img/ucenter/香蕉.png -------------------------------------------------------------------------------- /static/shophome/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/banner.jpg -------------------------------------------------------------------------------- /static/shophome/category-img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/0.png -------------------------------------------------------------------------------- /static/shophome/category-img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/1.png -------------------------------------------------------------------------------- /static/shophome/category-img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/10.png -------------------------------------------------------------------------------- /static/shophome/category-img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/11.png -------------------------------------------------------------------------------- /static/shophome/category-img/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/12.png -------------------------------------------------------------------------------- /static/shophome/category-img/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/13.png -------------------------------------------------------------------------------- /static/shophome/category-img/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/14.png -------------------------------------------------------------------------------- /static/shophome/category-img/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/15.png -------------------------------------------------------------------------------- /static/shophome/category-img/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/16.png -------------------------------------------------------------------------------- /static/shophome/category-img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/2.png -------------------------------------------------------------------------------- /static/shophome/category-img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/3.png -------------------------------------------------------------------------------- /static/shophome/category-img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/4.png -------------------------------------------------------------------------------- /static/shophome/category-img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/5.png -------------------------------------------------------------------------------- /static/shophome/category-img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/6.png -------------------------------------------------------------------------------- /static/shophome/category-img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/7.png -------------------------------------------------------------------------------- /static/shophome/category-img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/8.png -------------------------------------------------------------------------------- /static/shophome/category-img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/category-img/9.png -------------------------------------------------------------------------------- /static/shophome/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/face.png -------------------------------------------------------------------------------- /static/shophome/img/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p1.jpg -------------------------------------------------------------------------------- /static/shophome/img/p10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p10.jpg -------------------------------------------------------------------------------- /static/shophome/img/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p2.jpg -------------------------------------------------------------------------------- /static/shophome/img/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p3.jpg -------------------------------------------------------------------------------- /static/shophome/img/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p4.jpg -------------------------------------------------------------------------------- /static/shophome/img/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p5.jpg -------------------------------------------------------------------------------- /static/shophome/img/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p6.jpg -------------------------------------------------------------------------------- /static/shophome/img/p7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p7.jpg -------------------------------------------------------------------------------- /static/shophome/img/p8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p8.jpg -------------------------------------------------------------------------------- /static/shophome/img/p9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/img/p9.jpg -------------------------------------------------------------------------------- /static/shophome/pick-img/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/pick-img/p1.jpg -------------------------------------------------------------------------------- /static/shophome/pick-img/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/pick-img/p2.jpg -------------------------------------------------------------------------------- /static/shophome/pick-img/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/pick-img/p3.jpg -------------------------------------------------------------------------------- /static/shophome/swiper-img/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/swiper-img/0.jpg -------------------------------------------------------------------------------- /static/shophome/swiper-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/swiper-img/1.jpg -------------------------------------------------------------------------------- /static/shophome/swiper-img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/swiper-img/2.jpg -------------------------------------------------------------------------------- /static/shophome/swiper-img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/static/shophome/swiper-img/3.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/app.js: -------------------------------------------------------------------------------- 1 | require('./common/runtime.js') 2 | require('./common/vendor.js') 3 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/error/error", 5 | "pages/error/errordesc", 6 | "pages/error/info", 7 | "pages/error/select", 8 | "pages/content/content", 9 | "pages/goods/goods", 10 | "pages/goods/grids", 11 | "pages/ucenter/index", 12 | "pages/ucenter/login", 13 | "pages/ucenter/register", 14 | "pages/pro/action-sheet", 15 | "pages/pro/alert", 16 | "pages/pro/nvues", 17 | "pages/component/swiper", 18 | "pages/cart/cart", 19 | "pages/say/say", 20 | "pages/chat/chat", 21 | "pages/test/map", 22 | "pages/settings/settings", 23 | "pages/settings/security-setting" 24 | ], 25 | "subPackages": [], 26 | "window": { 27 | "navigationBarTextStyle": "black", 28 | "navigationBarTitleText": "", 29 | "navigationBarBackgroundColor": "#F8F8F8", 30 | "backgroundColor": "#F8F8F8", 31 | "bounce": "none" 32 | }, 33 | "usingComponents": {}, 34 | "tabBar": { 35 | "color": "#aaa", 36 | "selectedColor": "#FFBD27", 37 | "borderStyle": "black", 38 | "backgroundColor": "#ffffff", 39 | "list": [ 40 | { 41 | "pagePath": "pages/index/index", 42 | "iconPath": "static/img/footer/footer-home.png", 43 | "selectedIconPath": "static/img/footer/footer-home-act.png", 44 | "text": "首页" 45 | }, 46 | { 47 | "pagePath": "pages/chat/chat", 48 | "iconPath": "static/img/footer/footer-msg.png", 49 | "selectedIconPath": "static/img/footer/footer-msg-act.png", 50 | "text": "消息" 51 | }, 52 | { 53 | "pagePath": "pages/say/say", 54 | "iconPath": "static/img/footer/footer-say-act.png", 55 | "selectedIconPath": "static/img/footer/footer-say-act.png", 56 | "text": "调侃一下" 57 | }, 58 | { 59 | "pagePath": "pages/cart/cart", 60 | "iconPath": "static/img/footer/footer-cart.png", 61 | "selectedIconPath": "static/img/footer/footer-cart-act.png", 62 | "text": "购物车" 63 | }, 64 | { 65 | "pagePath": "pages/ucenter/index", 66 | "iconPath": "static/img/footer/footer-me.png", 67 | "selectedIconPath": "static/img/footer/footer-me-act.png", 68 | "text": "我的" 69 | } 70 | ] 71 | }, 72 | "splashscreen": { 73 | "autoclose": true 74 | }, 75 | "appname": "娃娃到家" 76 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | @import './common/vendor.wxss'; -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/common/slots.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/simple-pro/action-sheet.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/simple-pro/alert.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/simple-pro/customModal.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/simple-pro/dialog-loading.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/simple-pro/dialog.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-badge/uni-badge.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-icon/uni-icon.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-list-item/uni-list-item.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-list/uni-list.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/cart/cart.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/cart/cart.vue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/cart/cart.wxml: -------------------------------------------------------------------------------- 1 | 2 |