├── 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 | 
10 |
11 | 
--------------------------------------------------------------------------------
/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 |
2 |
3 |
4 |
5 |
6 | {{item.name}}
7 | {{cancelText}}
8 |
9 |
10 |
11 |
12 |
59 |
--------------------------------------------------------------------------------
/components/simple-pro/alert.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{msg}}
5 |
6 |
7 |
26 |
--------------------------------------------------------------------------------
/components/simple-pro/customModal.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | {{cancelButtonText}}
11 | {{confirmButtonText}}
12 |
13 |
14 |
15 |
16 |
17 |
18 | {{cancelButtonText}}
19 | {{confirmButtonText}}
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
99 |
100 |
103 |
--------------------------------------------------------------------------------
/components/simple-pro/dialog-loading.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {{text}}
6 |
7 |
8 |
9 |
10 |
31 |
32 |
35 |
--------------------------------------------------------------------------------
/components/simple-pro/dialog.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | {{title}}
7 |
8 | {{message}}
9 |
10 | {{cancelButtonText}}
11 | {{confirmButtonText}}
12 |
13 |
14 |
15 |
16 |
17 |
18 |
118 |
119 |
122 |
--------------------------------------------------------------------------------
/components/top-bar/top-bar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | {{ items.textcontent }}
16 |
17 |
18 |
19 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
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 |
2 | {{text}}
3 |
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 | 
--------------------------------------------------------------------------------
/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 |
2 |
3 |
4 |
5 |
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 |
2 |
3 | 来购购物
4 |
5 |
6 |
7 |
16 |
17 |
23 |
--------------------------------------------------------------------------------
/pages/chat/chat.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 商家有消息啦
4 |
5 |
6 |
7 |
16 |
17 |
23 |
--------------------------------------------------------------------------------
/pages/component/swiper.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 卡片轮播图
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
37 |
38 |
41 |
--------------------------------------------------------------------------------
/pages/content/content.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 谁的青春不迷茫,一个奋斗小青年的逆袭人生
6 |
7 | 刘同
8 | 2018-09-13
9 |
10 |
11 | 我叫刘同。现在住在北京四环旁边一个叫沿海赛洛城的楼盘里。七年前也曾经幻想以写字为生。但无奈学识有限,北京太大,我写出来的那些字都不够成为我容身的砖瓦城墙。还好,我生性贫贱,嘴贫性格贱,从不抱怨自己的遭遇,所以投身传媒这一行,至今。
12 |
13 |
14 | 以前我是城市旅人,为工作奔走城市间;后来他们叫我职场达人,为生活奔走于工作。
15 |
16 |
17 | 现在,我和你一样。依然在路上。
18 |
19 |
20 | “我曾谈过一段恋爱,分手理由是因为我不够有钱。后来我拼命赚钱,却再也没有遇见过那个人。
21 |
22 | 我曾被同事排挤,因为我不懂规矩。后来我懂了规矩,但再也不会用这个理由去刁难新同事。
23 |
24 | 我一直和父母抗争,因为他们一直觉得我不那么好。后来我过得越来越好,我才知道他们只是怕我一个人过得不好。
25 |
26 | 这些年,我一直在试着了解:了解这个世界,了解更完整的自己。”
27 |
28 |
29 |
30 |
31 |
32 |
33 |
42 |
43 |
46 |
--------------------------------------------------------------------------------
/pages/error/error.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 亲,没有数据
7 |
8 | 返回首页
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
25 |
26 |
29 |
--------------------------------------------------------------------------------
/pages/error/errordesc.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 亲,没有数据
7 | 程序员删库跑路了
8 |
9 |
10 |
11 |
12 |
13 |
22 |
23 |
26 |
--------------------------------------------------------------------------------
/pages/error/info.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | 公司理念
10 | company server
11 |
12 |
13 | 不断总结自身特点,持续探索客观规律,实现企业科学发展
14 | 互相尊重,忠于中兴事业。精诚服务,凝聚顾客身上,拼搏创新,集成中兴名牌科学管理,提高企业效益
15 | 互相尊重,忠于中兴事业。精诚服务,凝聚顾客身上,拼搏创新,集成中兴名牌科学管理,提高企业效益
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
33 |
34 |
37 |
--------------------------------------------------------------------------------
/pages/error/select.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 你的性别是?
7 |
8 | 帮助我们为你量身推荐内容
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
35 |
36 |
39 |
--------------------------------------------------------------------------------
/pages/goods/goods.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 热销商品
8 |
9 |
10 |
11 |
12 | 热销产品
13 |
14 |
15 |
16 |
17 | 热销商品
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | 魅族 EP2X耳机
27 | 契合声音流动之美
28 | ¥158 ¥78
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
62 |
63 |
149 |
--------------------------------------------------------------------------------
/pages/goods/grids.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | {{nav['title']}}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
32 |
33 |
36 |
--------------------------------------------------------------------------------
/pages/main/main.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | {{item.title}}
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
73 |
74 |
77 |
--------------------------------------------------------------------------------
/pages/pro/action-sheet.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 弹出菜单
4 |
5 |
6 |
7 |
8 |
36 |
37 |
40 |
--------------------------------------------------------------------------------
/pages/pro/alert.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 顶部弹出消息
4 |
5 |
6 | 弹出框消息
7 |
8 |
9 |
10 | 弹出框消息(带确定取消)
11 |
12 |
13 | 图片窗口
14 |
15 |
16 |
17 |
18 |
19 |
20 | 底部弹窗
21 |
22 |
23 | Modal 内容
24 |
25 |
26 |
27 | 弹窗加载
28 |
29 |
30 |
31 |
32 |
112 |
113 |
118 |
--------------------------------------------------------------------------------
/pages/pro/nvues.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 点击弹出内容
4 |
5 | 点击登录测试
6 |
7 |
8 |
9 |
45 |
46 |
48 |
--------------------------------------------------------------------------------
/pages/say/say.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 来吐吐槽
4 |
5 |
6 |
7 |
16 |
17 |
23 |
--------------------------------------------------------------------------------
/pages/settings/security-setting.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
39 |
40 |
42 |
--------------------------------------------------------------------------------
/pages/settings/settings.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
37 |
38 |
40 |
--------------------------------------------------------------------------------
/pages/test/map.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
9 |
10 |
11 |
12 |
13 |
73 |
87 |
--------------------------------------------------------------------------------
/pages/ucenter/login.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | 忘记密码?
27 |
28 |
29 |
30 |
31 |
32 |
101 |
102 |
161 |
--------------------------------------------------------------------------------
/pages/ucenter/register.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | {{smsbtn.text}}
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | 注册即表示同意《用户协议》
30 |
31 |
32 |
33 |
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 | Modal 内容
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/components/simple-pro/action-sheet.vue.wxml:
--------------------------------------------------------------------------------
1 | {{item.name}}{{cancelText}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/components/simple-pro/alert.vue.wxml:
--------------------------------------------------------------------------------
1 | {{msg}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/components/simple-pro/customModal.vue.wxml:
--------------------------------------------------------------------------------
1 | {{cancelButtonText}}{{confirmButtonText}}{{cancelButtonText}}{{confirmButtonText}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/components/simple-pro/dialog-loading.vue.wxml:
--------------------------------------------------------------------------------
1 | {{text}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/components/simple-pro/dialog.vue.wxml:
--------------------------------------------------------------------------------
1 | {{title}}{{message}}{{cancelButtonText}}{{confirmButtonText}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-badge/uni-badge.vue.wxml:
--------------------------------------------------------------------------------
1 | {{text}}
--------------------------------------------------------------------------------
/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 | {{title}}{{note}}
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/cart/cart.wxss:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | /* product */
19 | page {
20 | background: #F8F8F8;
21 | }
22 |
23 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/chat/chat.json:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/chat/chat.vue.wxml:
--------------------------------------------------------------------------------
1 | 商家有消息啦
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/chat/chat.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/chat/chat.wxss:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | /* product */
19 | page {
20 | background: #F8F8F8;
21 | }
22 |
23 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/component/swiper.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "轮播图",
3 | "navigationBarBackgroundColor": "#FFFFFF",
4 | "bounce": "none"
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/component/swiper.vue.wxml:
--------------------------------------------------------------------------------
1 | 卡片轮播图
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/component/swiper.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/content/content.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "文章详情"
3 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/content/content.vue.wxml:
--------------------------------------------------------------------------------
1 | 谁的青春不迷茫,一个奋斗小青年的逆袭人生我叫刘同。现在住在北京四环旁边一个叫沿海赛洛城的楼盘里。七年前也曾经幻想以写字为生。但无奈学识有限,北京太大,我写出来的那些字都不够成为我容身的砖瓦城墙。还好,我生性贫贱,嘴贫性格贱,从不抱怨自己的遭遇,所以投身传媒这一行,至今。以前我是城市旅人,为工作奔走城市间;后来他们叫我职场达人,为生活奔走于工作。现在,我和你一样。依然在路上。“我曾谈过一段恋爱,分手理由是因为我不够有钱。后来我拼命赚钱,却再也没有遇见过那个人。
2 |
3 | 我曾被同事排挤,因为我不懂规矩。后来我懂了规矩,但再也不会用这个理由去刁难新同事。
4 |
5 | 我一直和父母抗争,因为他们一直觉得我不那么好。后来我过得越来越好,我才知道他们只是怕我一个人过得不好。
6 |
7 | 这些年,我一直在试着了解:了解这个世界,了解更完整的自己。”
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/content/content.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/error.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "提示页面"
3 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/error.vue.wxml:
--------------------------------------------------------------------------------
1 | 亲,没有数据返回首页
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/error.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/errordesc.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "提示页面带描述"
3 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/errordesc.vue.wxml:
--------------------------------------------------------------------------------
1 | 亲,没有数据程序员删库跑路了
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/errordesc.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/info.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "企业页介绍"
3 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/info.vue.wxml:
--------------------------------------------------------------------------------
1 | 公司理念company server不断总结自身特点,持续探索客观规律,实现企业科学发展互相尊重,忠于中兴事业。精诚服务,凝聚顾客身上,拼搏创新,集成中兴名牌科学管理,提高企业效益互相尊重,忠于中兴事业。精诚服务,凝聚顾客身上,拼搏创新,集成中兴名牌科学管理,提高企业效益
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/info.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/select.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "选择单页"
3 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/select.vue.wxml:
--------------------------------------------------------------------------------
1 | 你的性别是?帮助我们为你量身推荐内容
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/error/select.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/goods/goods.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品列表",
3 | "bounce": "none"
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/goods/goods.vue.wxml:
--------------------------------------------------------------------------------
1 | 热销商品热销产品热销商品魅族 EP2X耳机契合声音流动之美¥78
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/goods/goods.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/goods/goods.wxss:
--------------------------------------------------------------------------------
1 |
2 | .e24-bg{
3 | background-color: #f9f9f9;
4 | }
5 | .e28-shape {
6 | background: rgb(9,187,7);
7 | width: 10px;
8 | height: 5px;
9 | }
10 | .e28-shape-lg {
11 | background: rgb(9,187,7);
12 | width: 10px;
13 | height: 5px;
14 | }
15 | .e26-title {
16 | position: relative;
17 | }
18 | .e26-title::before {
19 | content: '';
20 | display: block;
21 | position: absolute;
22 | top: 2px;
23 | left: -2px;
24 | width: 14px;
25 | height: 14px;
26 | border: 3px solid rgb(9,187,7);
27 | border-radius: 50%;
28 | }
29 | .e26-title-lg {
30 | position: relative;
31 | }
32 | .e26-title-lg::before {
33 | content: '';
34 | display: block;
35 | position: absolute;
36 | top: 4px;
37 | left: -2px;
38 | width: 16px;
39 | height: 16px;
40 | border: 3px solid rgb(9,187,7);
41 | border-radius: 50%;
42 | }
43 | .e25-title {
44 | position: relative;
45 | }
46 | .e25-title::before {
47 | content: '';
48 | display: block;
49 | position: absolute;
50 | top: 2px;
51 | left: 0;
52 | height: 14px;
53 | border-left: 5px solid rgb(9,187,7);
54 | }
55 | .e25-title-lg {
56 | position: relative;
57 | }
58 | .e25-title-lg::before {
59 | content: '';
60 | display: block;
61 | position: absolute;
62 | top: 4px;
63 | left: 0;
64 | height: 16px;
65 | border-left: 5px solid rgb(9,187,7);
66 | }
67 |
68 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/goods/grids.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "九宫格",
3 | "bounce": "none"
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/goods/grids.vue.wxml:
--------------------------------------------------------------------------------
1 | {{nav['title']}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/goods/grids.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/index/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "",
3 | "navigationBarTextStyle": "white",
4 | "navigationBarBackgroundColor": "#FFBD27",
5 | "titleNView": false
6 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/index/index.vue.wxml:
--------------------------------------------------------------------------------
1 | {{ category.title }}推荐商品好货推荐 低价精选{{product.price}}{{product.slogan}}— 猜你喜欢 —{{product.name}}{{product.price}}{{product.slogan}}{{loadingText}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/index/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/action-sheet.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "上拉菜单",
3 | "bounce": "none"
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/action-sheet.vue.wxml:
--------------------------------------------------------------------------------
1 | 弹出菜单
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/action-sheet.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/action-sheet.wxss:
--------------------------------------------------------------------------------
1 |
2 | .simple-action-sheet .simple-actionsheet{
3 | position: fixed;
4 | left: 0;
5 | right: 0;
6 | bottom: 0;
7 | color: #323233;
8 | max-height: 90%;
9 | overflow-y: auto;
10 | -webkit-overflow-scrolling: touch;
11 | background-color: #f8f8f8;
12 | -webkit-transform: translateY(100%);
13 | -ms-transform: translateY(100%);
14 | transform: translateY(100%);
15 | -webkit-backface-visibility: hidden;
16 | backface-visibility: hidden;
17 | z-index: 5000;
18 | width: 100%;
19 | background-color: #efeff4;
20 | -webkit-transition: -webkit-transform .3s;
21 | transition: -webkit-transform .3s;
22 | -o-transition: transform .3s;
23 | transition: transform .3s;
24 | transition: transform .3s, -webkit-transform .3s;
25 | transition: transform .3s,-webkit-transform .3s;
26 | }
27 | .simple-action-sheet .simple-actionsheet.simple-actionsheet-animate-show{
28 | -webkit-transform: translate(0);
29 | -ms-transform: translate(0);
30 | transform: translate(0);
31 | }
32 | .simple-action-sheet .simple-actionsheet-mask{
33 | position: fixed;
34 | top: 0;
35 | left: 0;
36 | width: 100%;
37 | height: 100%;
38 | background-color: rgba(0, 0, 0, 0.7);
39 | }
40 | .simple-action-sheet .simple-actionsheet .simple-actionsheet_item{
41 | height: 100rpx;
42 | line-height: 100rpx;
43 | font-size: 32rpx;
44 | text-align: center;
45 | background-color: #fff;
46 | border-bottom: 1rpx solid #ebedf0;
47 | }
48 | .simple-action-sheet .simple-actionsheet .simple-actionsheet_item_hover{
49 | background-color: #e8e8e8;
50 | }
51 | .simple-actionsheet_item-cancel{
52 | margin-top: 10rpx;
53 | }
54 |
55 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/alert.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "弹出窗口",
3 | "bounce": "none"
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/alert.vue.wxml:
--------------------------------------------------------------------------------
1 | 顶部弹出消息弹出框消息弹出框消息(带确定取消)图片窗口底部弹窗弹窗加载
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/alert.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/alert.wxss:
--------------------------------------------------------------------------------
1 |
2 | @font-face {font-family: "simple-icon";
3 | src:url('data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAYgAAsAAAAACNgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFY8gUg0Y21hcAAAAYAAAABfAAABnLN3GspnbHlmAAAB4AAAAi4AAAKUUV0dImhlYWQAAAQQAAAAMQAAADYTC6HqaGhlYQAABEQAAAAgAAAAJAfaA3xobXR4AAAEZAAAABAAAAAQEAL/7mxvY2EAAAR0AAAACgAAAAoBlgC8bWF4cAAABIAAAAAfAAAAIAETAGduYW1lAAAEoAAAAUUAAAJtPlT+fXBvc3QAAAXoAAAANwAAAEgYppUxeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2BkYWScwMDKwMHUyXSGgYGhH0IzvmYwYuRgYGBiYGVmwAoC0lxTGByesTxTZm7438AQwzyPoR0ozAiSAwDh7gwweJztkEEOgDAIBAeppjEmfUSvHo0P8uTL+40K1IOPcMkQ2BAOC8yAGruRQG4E12WuhK+s4SdO27PVBC210mrv3ykkcZFjmvyzLPzaoh/vpp7awDNuZRC51gH6AM8SEgIAeJxNUc9rE0EUnrezs9OZ7G63+bGbbdeUpM2mVojm10ZUQg0VcioF0YJHwYP/gT8QqpeCF0FQMIGCEA9SPVTJSci5Qg8iFMJ66EE8CUJE8JSNLw2KM4+Pb2befPO+N4QRMt5WCd0mlKjEIh5ZIQSWEhW+lMxAuQG1qp/TEhlwTOBFKDSgrhFuEycgdZ8oyy39XLpkOPOO4a16pf6IsVF/imF0zBhkwxCyjEXHysPo9T3DMTBSnqfc/5fXH13B4/C/dIKDjn+M76oG3cV6aqRJSN6EAr7vEwdrsTWu2Y4d1Bsnm8tkUuB06ee13Fnwq0F5Eewk96t1CMpIQMtRcrmz1Q1nGeTDZ58WzNxpTrnhydJKPPelHQ2jdnr+9/ub71oGFW70Ubryq0wiiEBKuCrdpIzeStcqrgjnW3cAqYR98HRrtylsqavm5odb7XCxEL2Jfu3/dESxJj0ZfylRAu8hSAwUQT0UQX/Y9890j55BbxvkBvrzg0oZDdTRD7Y6aaPPqWXcm7ZfW5qAX/CDOs4CkgZgFxyba9zGq7QI1aCSRbcaZxN+EU44fAdDpJLP+1QddLsDde0CV2LWTLMFbNjrDZl69MowZ69fSq+aLnUzqAYK5XMWVagQsayVqqw/Erou4NoEo70JHk3gtjAVa//BTk9Vezvrd4ranKmw6uONzqGqHnaeHMTh/NoMpZrum9Ypd0FjYpZzwWL5fMEBhdfgBehxHQO2/xL8+j/O34yFAAB4nGNgZGBgAOKCRseeeH6brwzcLAwgcP3Hutcw+v+7/5UsvMzzgFwOBiaQKAB4yQ5gAAAAeJxjYGRgYG7438AQw8L0/93/ryy8DEARFMACAJ+ABl0EAAAABAAAAAQC/+4EAAAAAAAAAABMALwBSgAAeJxjYGRgYGBhiGZgZQABJiDmAkIGhv9gPgMAEgwBewB4nGWPTU7DMBCFX/oHpBKqqGCH5AViASj9EatuWFRq911036ZOmyqJI8et1ANwHo7ACTgC3IA78EgnmzaWx9+8eWNPANzgBx6O3y33kT1cMjtyDRe4F65TfxBukF+Em2jjVbhF/U3YxzOmwm10YXmD17hi9oR3YQ8dfAjXcI1P4Tr1L+EG+Vu4iTv8CrfQ8erCPuZeV7iNRy/2x1YvnF6p5UHFockikzm/gple75KFrdLqnGtbxCZTg6BfSVOdaVvdU+zXQ+ciFVmTqgmrOkmMyq3Z6tAFG+fyUa8XiR6EJuVYY/62xgKOcQWFJQ6MMUIYZIjK6Og7VWb0r7FDwl57Vj3N53RbFNT/c4UBAvTPXFO6stJ5Ok+BPV8bUnV0K27LnpQ0kV7NSRKyQl7WtlRC6gE2ZVeOEXpc0Yk/KGdI/wAJWm7IAAAAeJxjYGKAAC4G7ICFkYmRmZGFkZWBNbWoKL+ItyojNS+9sDS1JLM4I5OtIjMxvyKTgQEApz8KfwA=');
4 | }
5 | .simple-icon {
6 | font-family:"simple-icon" !important;
7 | font-size:36rpx;
8 | font-style:normal;
9 | }
10 | @-webkit-keyframes simple-show{from {top:-60px;}
11 | to {top:0;}}
12 | @keyframes simple-show{from {top:-60px;}
13 | to {top:0;}}
14 | .animate-show{-webkit-animation: simple-show 300ms linear forwards;animation: simple-show 300ms linear forwards;}
15 | @-webkit-keyframes simple-hide{from {top:0;}
16 | to {top:-120px;}}
17 | @keyframes simple-hide{from {top:0;}
18 | to {top:-120px;}}
19 | .animate-hide{-webkit-animation: simple-hide 300ms linear forwards;animation: simple-hide 300ms linear forwards;}
20 | .icon-error:before { content: "\E604";}
21 | .icon-right:before { content: "\E60F";}
22 | .icon-msg:before { content: "\E623";}
23 | .simple-alert{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex; width:90%; padding:25rpx 5%; -webkit-flex-wrap:nowrap; -ms-flex-wrap:nowrap; flex-wrap:nowrap; background:#FFF; position:fixed; z-index:99999; left:0; top:-60px; -webkit-box-shadow:5px 3px 3px #F7F8F9; box-shadow:5px 3px 3px #F7F8F9;}
24 | .simple-alert .right{color:#00B26A !important;}
25 | .simple-alert .error{color:#FF0000 !important;}
26 | .simple-alert .msg{color:#00B26A !important;}
27 | .simple-alert .icon{width:35rpx; line-height:35rpx; -webkit-box-pack:center; -webkit-justify-content:center; -ms-flex-pack:center; justify-content:center; -webkit-flex-shrink:0; -ms-flex-negative:0; flex-shrink:0; margin-right:12px;}
28 | .simple-alert-msg{line-height:35rpx; font-size:35rpx; overflow:hidden; -webkit-box-pack:start; -webkit-justify-content:flex-start; -ms-flex-pack:start; justify-content:flex-start; width:100%; white-space:nowrap; -o-text-overflow:ellipsis; text-overflow:ellipsis;color: #303133}
29 |
30 |
31 | .has-bg-f8{
32 | background: #f2f2f2;
33 | }
34 |
35 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/nvues.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "5+画布测试",
3 | "bounce": "none",
4 | "buttons": [
5 | {
6 | "type": "share"
7 | }
8 | ]
9 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/nvues.vue.wxml:
--------------------------------------------------------------------------------
1 | 点击弹出内容点击登录测试
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/pro/nvues.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/say/say.json:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/say/say.vue.wxml:
--------------------------------------------------------------------------------
1 | 来吐吐槽
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/say/say.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/say/say.wxss:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | /* product */
19 | page {
20 | background: #F8F8F8;
21 | }
22 |
23 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/settings/security-setting.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "账号安全",
3 | "navigationBarTextStyle": "white",
4 | "navigationBarBackgroundColor": "#FFBD27"
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/settings/security-setting.vue.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/settings/security-setting.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/settings/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "设 置",
3 | "navigationBarTextStyle": "white",
4 | "navigationBarBackgroundColor": "#FFBD27"
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/settings/settings.vue.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/settings/settings.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/test/map.json:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/test/map.vue.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/test/map.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/test/map.wxss:
--------------------------------------------------------------------------------
1 |
2 | ._map {
3 | width: 100%;
4 | height: 800rpx;
5 | }
6 | .test {
7 | background: #fff;
8 | height: 100rpx;
9 | text-align: center;
10 | display: -webkit-box;
11 | display: -webkit-flex;
12 | display: -ms-flexbox;
13 | display: flex;
14 | margin: 30rpx;
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "",
3 | "navigationBarBackgroundColor": "#FFBD27",
4 | "backgroundColorBottom": "#f2f2f2",
5 | "backgroundColorTop": "#00CCFF",
6 | "navigationBarTextStyle": "white",
7 | "titleNView": false
8 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/index.vue.wxml:
--------------------------------------------------------------------------------
1 | {{row.badge}}{{row.name}}{{li.name}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/login.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "登录",
3 | "navigationBarBackgroundColor": "#FFFFFF",
4 | "bounce": "none"
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/login.vue.wxml:
--------------------------------------------------------------------------------
1 | 忘记密码?
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/login.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/login.wxss:
--------------------------------------------------------------------------------
1 |
2 | page {
3 | min-height: 100%;
4 | background-color: #FFFFFF;
5 | }
6 | .content {
7 | width: 85%;
8 | margin: 0 auto;
9 | }
10 | .loginbtn ._button {
11 | margin-top: 20rpx;
12 | height: 88rpx;
13 | width: 100%;
14 | line-height: 88rpx;
15 | color: #ffffff;
16 | font-size: 32rpx;
17 | border-radius: 44rpx;
18 | outline: 0;
19 | display: block;
20 | margin: 0;
21 | font-family: inherit;
22 | background: #FFBD27;
23 | opacity: 0.8;
24 | }
25 | ._button:after {
26 | border: 2rpx solid #f2f2f2;
27 | }
28 | .logoimg {
29 | width: 200rpx;
30 | height: 200rpx;
31 | border-radius: 50%;
32 | }
33 | .is-input1 {
34 | height: 88rpx;
35 | width: 100%;
36 | line-height: 88rpx;
37 | padding: 12rpx;
38 | color: #353535;
39 | font-size: 32rpx;
40 | -webkit-box-sizing: border-box;
41 | box-sizing: border-box;
42 | -webkit-appearance: none;
43 | -moz-appearance: none;
44 | appearance: none;
45 | border: 2rpx solid #e5e5e5;
46 | -webkit-box-shadow: none;
47 | box-shadow: none;
48 | border-radius: 44rpx;
49 | outline: 0;
50 | display: block;
51 | padding-left: 30rpx;
52 | margin: 0;
53 | font-family: inherit;
54 | background: #fff;
55 | resize: none;
56 | }
57 |
58 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/register.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "注册",
3 | "bounce": "none"
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/register.vue.wxml:
--------------------------------------------------------------------------------
1 | {{smsbtn.text}}注册即表示同意《用户协议》
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/register.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/pages/ucenter/register.wxss:
--------------------------------------------------------------------------------
1 |
2 | page {
3 | min-height: 100%;
4 | background-color: #FFFFFF;
5 | }
6 | .registercontent {
7 | width: 85%;
8 | margin: 0 auto;
9 | }
10 | .logoimg {
11 | width: 200rpx;
12 | height: 200rpx;
13 | border-radius: 50%;
14 | }
15 | .is-input1 {
16 | height: 88rpx;
17 | width: 100%;
18 | line-height: 88rpx;
19 | padding: 12rpx;
20 | color: #353535;
21 | font-size: 32rpx;
22 | -webkit-box-sizing: border-box;
23 | box-sizing: border-box;
24 | -webkit-appearance: none;
25 | -moz-appearance: none;
26 | appearance: none;
27 | border: 2rpx solid #e5e5e5;
28 | -webkit-box-shadow: none;
29 | box-shadow: none;
30 | border-radius: 44rpx;
31 | outline: 0;
32 | display: block;
33 | padding-left: 30rpx;
34 | margin: 0;
35 | font-family: inherit;
36 | background: #fff;
37 | resize: none;
38 | }
39 | .iconfont {
40 | position: absolute;
41 | font-size: 40rpx;
42 | right: 12%;
43 | z-index: 999;
44 | width: 105rpx;
45 | text-align: center;
46 | color: #353535;
47 | margin-top: -11%;
48 | background: #fff;
49 | border-top-right-radius: 44rpx;
50 | border-bottom-right-radius: 44rpx;
51 | height: 80rpx;
52 | line-height: 80rpx;
53 | }
54 | .codeimg {
55 | position: absolute;
56 | font-size: 28rpx;
57 | right: 12%;
58 | z-index: 999;
59 | width: 200rpx;
60 | text-align: center;
61 | color: #353535;
62 | margin-top: -11%;
63 | background: #fff;
64 | border-top-right-radius: 44rpx;
65 | border-bottom-right-radius: 44rpx;
66 | height: 80rpx;
67 | line-height: 80rpx;
68 | }
69 | .registerbtn ._button {
70 | margin-top: 20rpx;
71 | height: 88rpx;
72 | width: 100%;
73 | line-height: 88rpx;
74 | color: #ffffff;
75 | font-size: 32rpx;
76 | border-radius: 44rpx;
77 | outline: 0;
78 | display: block;
79 | margin: 0;
80 | font-family: inherit;
81 | background: #FFBD27;
82 | opacity: 0.8;
83 | }
84 | ._button:after {
85 | border: 2rpx solid #f2f2f2;
86 | }
87 |
88 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/common/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/common/avatar.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/common/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/common/logo.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/common/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/common/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/demo/pexels-photo-26180.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/demo/pexels-photo-26180.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/error/33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/error/33.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/error/c1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/error/c1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/error/n1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/error/n1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/error/n2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/error/n2.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/error/no.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/error/no.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-cart-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-cart-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-cart.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-home-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-home-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-home.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-me-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-me-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-me.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-me.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-msg-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-msg-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-msg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-msg.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-say-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/footer/footer-say-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/index/location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/index/location.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/search/attention.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/search/attention.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/search/attention_forbid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/search/attention_forbid.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/search/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/search/back.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/search/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/search/delete.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/settings/to.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/settings/to.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/settings/大于号.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/settings/大于号.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/face.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/face.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l2.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l3.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/l4.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/setting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/setting.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/addr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/addr.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/bank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/bank.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/choujiang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/choujiang.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/kefu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/kefu.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/mingxi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/mingxi.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/momey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/momey.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/point.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/point.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/quan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/quan.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/renw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/renw.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/sever/security.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/to.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/to.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/香蕉.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/img/ucenter/香蕉.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/banner.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/0.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/10.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/11.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/12.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/13.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/14.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/15.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/16.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/2.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/3.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/4.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/5.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/6.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/7.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/8.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/category-img/9.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/face.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/face.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p1.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p10.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p2.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p3.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p4.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p5.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p6.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p7.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p8.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/img/p9.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/pick-img/p1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/pick-img/p1.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/pick-img/p2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/pick-img/p2.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/pick-img/p3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/pick-img/p3.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/0.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/1.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/2.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/.tmp/app-plus/static/shophome/swiper-img/3.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/__uniappmarker@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/__uniappmarker@3x.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/__uniappsuccess.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/__uniappsuccess.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/cart/cart.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["body { background: #F8F8F8; }\n",],undefined,{path:"./pages/cart/cart.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/cart/cart.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/chat/chat.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["body { background: #F8F8F8; }\n",],undefined,{path:"./pages/chat/chat.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/chat/chat.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/component/swiper.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/component/swiper.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/content/content.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/content/content.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/error/error.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/error/error.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/error/errordesc.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/error/errordesc.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/error/info.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/error/info.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/error/select.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/error/select.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/goods/goods.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead([".",[1],"e24-bg{ background-color: #f9f9f9; }\n.",[1],"e28-shape { background: rgb(9,187,7); width: 10px; height: 5px; }\n.",[1],"e28-shape-lg { background: rgb(9,187,7); width: 10px; height: 5px; }\n.",[1],"e26-title { position: relative; }\n.",[1],"e26-title::before { content: \x27\x27; display: block; position: absolute; top: 2px; left: -2px; width: 14px; height: 14px; border: 3px solid rgb(9,187,7); border-radius: 50%; }\n.",[1],"e26-title-lg { position: relative; }\n.",[1],"e26-title-lg::before { content: \x27\x27; display: block; position: absolute; top: 4px; left: -2px; width: 16px; height: 16px; border: 3px solid rgb(9,187,7); border-radius: 50%; }\n.",[1],"e25-title { position: relative; }\n.",[1],"e25-title::before { content: \x27\x27; display: block; position: absolute; top: 2px; left: 0; height: 14px; border-left: 5px solid rgb(9,187,7); }\n.",[1],"e25-title-lg { position: relative; }\n.",[1],"e25-title-lg::before { content: \x27\x27; display: block; position: absolute; top: 4px; left: 0; height: 16px; border-left: 5px solid rgb(9,187,7); }\n",],undefined,{path:"./pages/goods/goods.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/goods/goods.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/goods/grids.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/goods/grids.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/pro/action-sheet.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead([".",[1],"simple-action-sheet .",[1],"simple-actionsheet{ position: fixed; left: 0; right: 0; bottom: 0; color: #323233; max-height: 90%; overflow-y: auto; -webkit-overflow-scrolling: touch; background-color: #f8f8f8; -webkit-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); -webkit-backface-visibility: hidden; backface-visibility: hidden; z-index: 5000; width: 100%; background-color: #efeff4; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; -o-transition: transform .3s; transition: transform .3s; transition: transform .3s, -webkit-transform .3s; transition: transform .3s,-webkit-transform .3s; }\n.",[1],"simple-action-sheet .",[1],"simple-actionsheet.",[1],"simple-actionsheet-animate-show{ -webkit-transform: translate(0); -ms-transform: translate(0); transform: translate(0); }\n.",[1],"simple-action-sheet .",[1],"simple-actionsheet-mask{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); }\n.",[1],"simple-action-sheet .",[1],"simple-actionsheet .",[1],"simple-actionsheet_item{ height: ",[0,100],"; line-height: ",[0,100],"; font-size: ",[0,32],"; text-align: center; background-color: #fff; border-bottom: ",[0,1]," solid #ebedf0; }\n.",[1],"simple-action-sheet .",[1],"simple-actionsheet .",[1],"simple-actionsheet_item_hover{ background-color: #e8e8e8; }\n.",[1],"simple-actionsheet_item-cancel{ margin-top: ",[0,10],"; }\n",],undefined,{path:"./pages/pro/action-sheet.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/pro/action-sheet.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/pro/nvues.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/pro/nvues.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/say/say.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["body { background: #F8F8F8; }\n",],undefined,{path:"./pages/say/say.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/say/say.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/settings/security-setting.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/settings/security-setting.wxml') } }));
5 | }
6 | if(window.__uniAppViewReady__){
7 | uniAppViewReadyCallback()
8 | }else{
9 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
10 | }
11 | })();
12 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/test/map.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead([".",[1],"_map { width: 100%; height: ",[0,800],"; }\n.",[1],"test { background: #fff; height: ",[0,100],"; text-align: center; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin: ",[0,30],"; }\n",],undefined,{path:"./pages/test/map.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/test/map.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/ucenter/login.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["body { min-height: 100%; background-color: #FFFFFF; }\n.",[1],"content { width: 85%; margin: 0 auto; }\n.",[1],"loginbtn .",[1],"_button { margin-top: ",[0,20],"; height: ",[0,88],"; width: 100%; line-height: ",[0,88],"; color: #ffffff; font-size: ",[0,32],"; border-radius: ",[0,44],"; outline: 0; display: block; margin: 0; font-family: inherit; background: #FFBD27; opacity: 0.8; }\n.",[1],"_button:after { border: ",[0,2]," solid #f2f2f2; }\n.",[1],"logoimg { width: ",[0,200],"; height: ",[0,200],"; border-radius: 50%; }\n.",[1],"is-input1 { height: ",[0,88],"; width: 100%; line-height: ",[0,88],"; padding: ",[0,12],"; color: #353535; font-size: ",[0,32],"; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: ",[0,2]," solid #e5e5e5; -webkit-box-shadow: none; box-shadow: none; border-radius: ",[0,44],"; outline: 0; display: block; padding-left: ",[0,30],"; margin: 0; font-family: inherit; background: #fff; resize: none; }\n",],undefined,{path:"./pages/ucenter/login.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/ucenter/login.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/pages/ucenter/register.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["body { min-height: 100%; background-color: #FFFFFF; }\n.",[1],"registercontent { width: 85%; margin: 0 auto; }\n.",[1],"logoimg { width: ",[0,200],"; height: ",[0,200],"; border-radius: 50%; }\n.",[1],"is-input1 { height: ",[0,88],"; width: 100%; line-height: ",[0,88],"; padding: ",[0,12],"; color: #353535; font-size: ",[0,32],"; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: ",[0,2]," solid #e5e5e5; -webkit-box-shadow: none; box-shadow: none; border-radius: ",[0,44],"; outline: 0; display: block; padding-left: ",[0,30],"; margin: 0; font-family: inherit; background: #fff; resize: none; }\n.",[1],"iconfont { position: absolute; font-size: ",[0,40],"; right: 12%; z-index: 999; width: ",[0,105],"; text-align: center; color: #353535; margin-top: -11%; background: #fff; border-top-right-radius: ",[0,44],"; border-bottom-right-radius: ",[0,44],"; height: ",[0,80],"; line-height: ",[0,80],"; }\n.",[1],"codeimg { position: absolute; font-size: ",[0,28],"; right: 12%; z-index: 999; width: ",[0,200],"; text-align: center; color: #353535; margin-top: -11%; background: #fff; border-top-right-radius: ",[0,44],"; border-bottom-right-radius: ",[0,44],"; height: ",[0,80],"; line-height: ",[0,80],"; }\n.",[1],"registerbtn .",[1],"_button { margin-top: ",[0,20],"; height: ",[0,88],"; width: 100%; line-height: ",[0,88],"; color: #ffffff; font-size: ",[0,32],"; border-radius: ",[0,44],"; outline: 0; display: block; margin: 0; font-family: inherit; background: #FFBD27; opacity: 0.8; }\n.",[1],"_button:after { border: ",[0,2]," solid #f2f2f2; }\n",],undefined,{path:"./pages/ucenter/register.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/ucenter/register.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/common/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/common/avatar.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/common/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/common/logo.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/common/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/common/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/demo/pexels-photo-26180.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/demo/pexels-photo-26180.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/error/33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/error/33.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/error/c1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/error/c1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/error/n1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/error/n1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/error/n2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/error/n2.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/error/no.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/error/no.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-cart-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-cart-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-cart.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-home-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-home-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-home.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-me-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-me-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-me.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-me.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-msg-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-msg-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-msg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-msg.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/footer/footer-say-act.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/footer/footer-say-act.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/index/location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/index/location.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/search/attention.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/search/attention.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/search/attention_forbid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/search/attention_forbid.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/search/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/search/back.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/search/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/search/delete.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/settings/to.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/settings/to.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/settings/大于号.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/settings/大于号.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/face.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/face.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/l1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/l1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/l2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/l2.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/l3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/l3.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/l4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/l4.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/setting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/setting.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/addr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/addr.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/bank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/bank.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/choujiang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/choujiang.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/kefu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/kefu.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/mingxi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/mingxi.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/momey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/momey.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/point.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/point.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/quan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/quan.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/renw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/renw.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/sever/security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/sever/security.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/to.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/to.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/ucenter/香蕉.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/img/ucenter/香蕉.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/banner.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/0.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/10.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/11.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/12.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/13.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/14.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/15.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/16.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/2.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/3.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/4.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/5.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/6.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/7.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/8.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/category-img/9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/category-img/9.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/face.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/face.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p1.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p10.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p2.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p3.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p4.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p5.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p6.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p7.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p8.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/img/p9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/img/p9.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/pick-img/p1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/pick-img/p1.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/pick-img/p2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/pick-img/p2.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/pick-img/p3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/pick-img/p3.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/swiper-img/0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/swiper-img/0.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/swiper-img/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/swiper-img/1.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/swiper-img/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/swiper-img/2.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/shophome/swiper-img/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/dist/dev/app-plus/static/shophome/swiper-img/3.jpg
--------------------------------------------------------------------------------
/unpackage/res/icons/120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/120x120.png
--------------------------------------------------------------------------------
/unpackage/res/icons/144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/144x144.png
--------------------------------------------------------------------------------
/unpackage/res/icons/152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/152x152.png
--------------------------------------------------------------------------------
/unpackage/res/icons/167x167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/167x167.png
--------------------------------------------------------------------------------
/unpackage/res/icons/180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/180x180.png
--------------------------------------------------------------------------------
/unpackage/res/icons/192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/192x192.png
--------------------------------------------------------------------------------
/unpackage/res/icons/20x20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/20x20.png
--------------------------------------------------------------------------------
/unpackage/res/icons/29x29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/29x29.png
--------------------------------------------------------------------------------
/unpackage/res/icons/40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/40x40.png
--------------------------------------------------------------------------------
/unpackage/res/icons/48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/48x48.png
--------------------------------------------------------------------------------
/unpackage/res/icons/58x58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/58x58.png
--------------------------------------------------------------------------------
/unpackage/res/icons/60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/60x60.png
--------------------------------------------------------------------------------
/unpackage/res/icons/72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/72x72.png
--------------------------------------------------------------------------------
/unpackage/res/icons/76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/76x76.png
--------------------------------------------------------------------------------
/unpackage/res/icons/80x80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/80x80.png
--------------------------------------------------------------------------------
/unpackage/res/icons/87x87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/87x87.png
--------------------------------------------------------------------------------
/unpackage/res/icons/96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shujianou/redi_app/b531a0e2d9e82be26dacce9ba14f8488996260f8/unpackage/res/icons/96x96.png
--------------------------------------------------------------------------------