├── pages ├── myAddr │ ├── myAddr.json │ ├── myAddr.wxss │ ├── myAddr.wxml │ └── myAddr.js ├── start │ ├── start.json │ ├── start.wxss │ ├── start.wxml │ └── start.js ├── logs │ ├── logs.json │ ├── logs.wxss │ ├── logs.wxml │ └── logs.js ├── order │ ├── order.json │ ├── order.wxss │ ├── order.js │ └── order.wxml ├── pay │ ├── pay.json │ ├── pay.wxss │ ├── pay.js │ └── pay.wxml ├── myInfo │ ├── myInfo.json │ ├── myInfo.wxss │ ├── myInfo.js │ └── myInfo.wxml ├── myOrder │ ├── myOrder.json │ ├── myOrder.js │ ├── myOrder.wxss │ └── myOrder.wxml ├── shopSel │ ├── shopSel.json │ ├── shopSel.wxss │ ├── shopSel.wxml │ └── shopSel.js ├── addAddress │ ├── addAddress.json │ ├── addAddress.wxss │ ├── addAddress.wxml │ └── addAddress.js ├── deliver │ ├── deliver.json │ ├── deliver.wxss │ ├── deliver.js │ └── deliver.wxml ├── orderDetail │ ├── orderDetail.json │ ├── orderDetail.wxss │ ├── orderDetail.js │ └── orderDetail.wxml ├── ordersubmit │ ├── ordersubmit.json │ ├── ordersubmit.wxss │ ├── ordersubmit.wxml │ └── ordersubmit.js ├── suggestion │ ├── suggestion.json │ ├── suggestion.wxss │ ├── suggestion.wxml │ └── suggestion.js └── index │ ├── index.wxss │ ├── index.wxml │ └── index.js ├── README.md ├── images ├── 11.png ├── 22.png ├── add.png ├── edit.png ├── icon.jpg ├── mine.jpg ├── word.png ├── header.jpg ├── loca1.png ├── order.jpg ├── print.jpg ├── location.png ├── mine_cur.jpg ├── order_cur.jpg ├── print_cur.jpg └── arrow_right.png ├── style ├── base │ ├── fn.wxss │ ├── mixin │ │ ├── text.wxss │ │ ├── setArrow.wxss │ │ └── setOnepx.wxss │ ├── variable │ │ ├── color.wxss │ │ ├── global.wxss │ │ ├── weui-msg.wxss │ │ ├── weui-button.wxss │ │ ├── weui-cell.wxss │ │ ├── weui-dialog.wxss │ │ ├── weui-grid.wxss │ │ └── weui-progress.wxss │ └── reset.wxss ├── widget │ ├── weui-cell │ │ ├── weui-switch.wxss │ │ ├── weui-check.wxss │ │ ├── weui-form │ │ │ ├── weui-vcode.wxss │ │ │ ├── weui-form_common.wxss │ │ │ ├── weui-select.wxss │ │ │ └── weui-form-preview.wxss │ │ ├── weui-access.wxss │ │ ├── weui-uploader.wxss │ │ ├── weui-cell.wxss │ │ └── weui-form.wxss │ ├── weui-flex │ │ └── weui-flex.wxss │ ├── weui-tips │ │ ├── weui-badge.wxss │ │ └── weui-loadmore.wxss │ ├── weui-progress │ │ └── weui-progress.wxss │ ├── weui-page │ │ ├── weui-article.wxss │ │ └── weui-msg.wxss │ ├── weui-agree │ │ └── weui-agree.wxss │ ├── weui-grid │ │ └── weui-grid.wxss │ ├── weui-footer │ │ └── weui-footer.wxss │ ├── weui-panel │ │ └── weui-panel.wxss │ ├── weui-tab │ │ ├── weui-navbar.wxss │ │ └── weui-tab.wxss │ ├── weui-searchbar │ │ └── weui-searchbar.wxss │ ├── weui-animate │ │ └── weui-animate.wxss │ ├── weui-media-box │ │ └── weui-media-box.wxss │ ├── weui-button │ │ └── weui-button.wxss │ └── weui-loading │ │ └── weui-loading.wxss ├── weui.wxss └── iconfont.wxss ├── utils └── util.js ├── app.wxss ├── app.json └── app.js /pages/myAddr/myAddr.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/start/start.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/start/start.wxss: -------------------------------------------------------------------------------- 1 | /* pages/start/start.wxss */ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # paperMemory 2 | paperMemory 3 | hello world 4 | -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } -------------------------------------------------------------------------------- /pages/order/order.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看订单" 3 | } -------------------------------------------------------------------------------- /pages/pay/pay.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "纸张记忆" 3 | } -------------------------------------------------------------------------------- /pages/myInfo/myInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人中心" 3 | } -------------------------------------------------------------------------------- /pages/myOrder/myOrder.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的订单" 3 | } -------------------------------------------------------------------------------- /pages/shopSel/shopSel.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "纸张记忆" 3 | } -------------------------------------------------------------------------------- /images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/11.png -------------------------------------------------------------------------------- /images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/22.png -------------------------------------------------------------------------------- /pages/addAddress/addAddress.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "新增地址" 3 | } -------------------------------------------------------------------------------- /pages/deliver/deliver.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "paperMemory" 3 | } -------------------------------------------------------------------------------- /pages/orderDetail/orderDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的订单" 3 | } -------------------------------------------------------------------------------- /pages/ordersubmit/ordersubmit.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "纸张记忆" 3 | } -------------------------------------------------------------------------------- /pages/suggestion/suggestion.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "意见反馈" 3 | } -------------------------------------------------------------------------------- /images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/add.png -------------------------------------------------------------------------------- /images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/edit.png -------------------------------------------------------------------------------- /images/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/icon.jpg -------------------------------------------------------------------------------- /images/mine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/mine.jpg -------------------------------------------------------------------------------- /images/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/word.png -------------------------------------------------------------------------------- /images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/header.jpg -------------------------------------------------------------------------------- /images/loca1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/loca1.png -------------------------------------------------------------------------------- /images/order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/order.jpg -------------------------------------------------------------------------------- /images/print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/print.jpg -------------------------------------------------------------------------------- /images/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/location.png -------------------------------------------------------------------------------- /images/mine_cur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/mine_cur.jpg -------------------------------------------------------------------------------- /images/order_cur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/order_cur.jpg -------------------------------------------------------------------------------- /images/print_cur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/print_cur.jpg -------------------------------------------------------------------------------- /images/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemoncool/paperMemory/HEAD/images/arrow_right.png -------------------------------------------------------------------------------- /pages/logs/logs.wxss: -------------------------------------------------------------------------------- 1 | .log-list { 2 | display: flex; 3 | flex-direction: column; 4 | padding: 40rpx; 5 | } 6 | .log-item { 7 | margin: 10rpx; 8 | } 9 | -------------------------------------------------------------------------------- /style/base/fn.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/mixin/text.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/mixin/setArrow.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/mixin/setOnepx.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/color.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/global.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/weui-msg.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/weui-button.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/weui-cell.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/weui-dialog.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/weui-grid.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /style/base/variable/weui-progress.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | -------------------------------------------------------------------------------- /pages/deliver/deliver.wxss: -------------------------------------------------------------------------------- 1 | .weui-label{ 2 | width:190rpx; 3 | } 4 | 5 | /*隐藏 */ 6 | .hide{ 7 | display: none; 8 | } 9 | /*显示 */ 10 | .show{ 11 | display: block; 12 | } -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{index + 1}}. {{log}} 5 | 6 | 7 | -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-switch.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | .weui-cell_switch{padding-top:6px;padding-bottom:6px} -------------------------------------------------------------------------------- /pages/shopSel/shopSel.wxss: -------------------------------------------------------------------------------- 1 | /* pages/start/start.wxss */ 2 | .swiper{ 3 | height: 400rpx; 4 | } 5 | .slide-image{ 6 | width: 100%; 7 | } 8 | ::-webkit-scrollbar{ 9 | width:0; 10 | height:0; 11 | color: transparent; 12 | } -------------------------------------------------------------------------------- /pages/start/start.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{message}} 3 | 我是主体 4 | 我是页脚 5 | Click me! 6 | -------------------------------------------------------------------------------- /style/base/reset.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | page{line-height:1.6;font-family:-apple-system-font,Helvetica Neue,sans-serif}icon{vertical-align:middle} -------------------------------------------------------------------------------- /style/widget/weui-flex/weui-flex.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | .weui-flex{display:-webkit-box;display:-webkit-flex;display:flex}.weui-flex__item{-webkit-box-flex:1;-webkit-flex:1;flex:1} -------------------------------------------------------------------------------- /pages/start/start.js: -------------------------------------------------------------------------------- 1 | //test.js 2 | //获取应用实例 3 | var app = getApp() 4 | Page({ 5 | data: { 6 | userInfo: {}, 7 | message: 'Hello MINA!' 8 | }, 9 | onLoad: function () { 10 | console.log('onLoad test'); 11 | }, 12 | tapName: function (event) { 13 | console.log(event) 14 | } 15 | }) -------------------------------------------------------------------------------- /pages/logs/logs.js: -------------------------------------------------------------------------------- 1 | //logs.js 2 | const util = require('../../utils/util.js') 3 | 4 | Page({ 5 | data: { 6 | logs: [] 7 | }, 8 | onLoad: function () { 9 | this.setData({ 10 | logs: (wx.getStorageSync('logs') || []).map(log => { 11 | return util.formatTime(new Date(log)) 12 | }) 13 | }) 14 | } 15 | }) 16 | -------------------------------------------------------------------------------- /pages/suggestion/suggestion.wxss: -------------------------------------------------------------------------------- 1 | /* pages/suggestion/suggestion.wxss */ 2 | 3 | .textBox { 4 | padding: 20rpx 30rpx; 5 | box-sizing: border-box; 6 | width: 100%; 7 | height: 185px; 8 | position: relative; 9 | } 10 | 11 | .inputCount { 12 | position: absolute; 13 | bottom: 5px; 14 | right: 15px; 15 | color: #808080; 16 | } 17 | -------------------------------------------------------------------------------- /pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | .userinfo { 3 | display: flex; 4 | flex-direction: column; 5 | align-items: center; 6 | } 7 | 8 | .userinfo-avatar { 9 | width: 128rpx; 10 | height: 128rpx; 11 | margin: 20rpx; 12 | border-radius: 50%; 13 | } 14 | 15 | .userinfo-nickname { 16 | color: #aaa; 17 | } 18 | 19 | .usermotto { 20 | margin-top: 200px; 21 | } -------------------------------------------------------------------------------- /pages/pay/pay.wxss: -------------------------------------------------------------------------------- 1 | .weui-label { 2 | width: 190rpx; 3 | } 4 | 5 | /*隐藏 */ 6 | 7 | .hide { 8 | display: none; 9 | } 10 | 11 | /*显示 */ 12 | 13 | .show { 14 | display: block; 15 | } 16 | 17 | .infoItem { 18 | margin-right: 50rpx; 19 | font-size: 14px; 20 | } 21 | 22 | .infoIcon { 23 | position: absolute; 24 | top: 48%; 25 | right: 40rpx; 26 | } 27 | -------------------------------------------------------------------------------- /style/widget/weui-tips/weui-badge.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | .weui-badge{display:inline-block;padding:.15em .4em;min-width:8px;border-radius:18px;background-color:#e64340;color:#fff;line-height:1.2;text-align:center;font-size:12px;vertical-align:middle}.weui-badge_dot{padding:.4em;min-width:0} -------------------------------------------------------------------------------- /style/widget/weui-progress/weui-progress.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | .weui-progress{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-progress__bar{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-progress__opr{margin-left:15px;font-size:0} -------------------------------------------------------------------------------- /pages/myAddr/myAddr.wxss: -------------------------------------------------------------------------------- 1 | .userAddr{ 2 | color: #B0B0B0; 3 | margin-top: 10rpx; 4 | /* color:#0ABA07; */ 5 | } 6 | .addrItem{ 7 | width: 85%; 8 | border-right: 1px solid #eee; 9 | margin-right: 8px; 10 | font-size: 16px; 11 | } 12 | image{ 13 | width:30px; 14 | height:30px; 15 | } 16 | .img{ 17 | vertical-align: middle; 18 | margin-right: 10px; 19 | } 20 | .addItem{ 21 | width:90%; 22 | } -------------------------------------------------------------------------------- /pages/ordersubmit/ordersubmit.wxss: -------------------------------------------------------------------------------- 1 | .weui-cell_select { 2 | position: relative; 3 | } 4 | 5 | .selectArea { 6 | z-index: 100; 7 | position: absolute; 8 | right: 60rpx; 9 | top: 90rpx; 10 | } 11 | 12 | .select_one { 13 | text-align: center; 14 | background-color: rgb(239, 239, 239); 15 | width: 500rpx; 16 | height: 80rpx; 17 | line-height: 80rpx; 18 | border-bottom: 2rpx solid #fff; 19 | } 20 | -------------------------------------------------------------------------------- /pages/myOrder/myOrder.js: -------------------------------------------------------------------------------- 1 | //test.js 2 | //获取应用实例 3 | var app = getApp() 4 | Page({ 5 | data: { 6 | message: 'Hello MINA!' 7 | }, 8 | onLoad: function () { 9 | console.log('onLoad test'); 10 | }, 11 | goOrderDetail: function (e) { 12 | // var shopId = e.currentTarget.dataset.shopid; 13 | // console.log(shopId); 14 | wx.navigateTo({ 15 | url: '../orderDetail/orderDetail' 16 | }) 17 | } 18 | }) -------------------------------------------------------------------------------- /pages/myInfo/myInfo.wxss: -------------------------------------------------------------------------------- 1 | /* pages/start/start.wxss */ 2 | .weui-header{ 3 | height: 260rpx; 4 | width:100%; 5 | border-bottom: 1px solid #efeff4; 6 | } 7 | .holder{ 8 | height:45rpx; 9 | } 10 | .weui-head{ 11 | margin: 0 auto; 12 | text-align: center; 13 | } 14 | .headPic{ 15 | width: 100rpx; 16 | height: 100rpx; 17 | border-radius: 100%; 18 | } 19 | .weui-name{ 20 | font-size: 15px; 21 | color: #383838; 22 | margin-top: 10rpx; 23 | } 24 | -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-check.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | .weui-icon-radio{margin-left:3.2px;margin-right:3.2px}.weui-icon-checkbox_circle,.weui-icon-checkbox_success{margin-left:4.6px;margin-right:4.6px}.weui-check__label:active{background-color:#ececec}.weui-check{position:absolute;left:-9999px}.weui-check__hd_in-checkbox{padding-right:.35em}.weui-cell__ft_in-radio{padding-left:.35em} -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-form/weui-vcode.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | .weui-cell_vcode{padding-right:0}.weui-vcode-btn,.weui-vcode-img{margin-left:5px;height:2.58823529em;vertical-align:middle}.weui-vcode-btn{display:inline-block;padding:0 .6em 0 .7em;border-left:1px solid #e5e5e5;line-height:2.58823529em;font-size:17px;color:#3cc51f;white-space:nowrap}.weui-vcode-btn:active{color:#52a341} -------------------------------------------------------------------------------- /style/widget/weui-page/weui-article.wxss: -------------------------------------------------------------------------------- 1 | /*! 2 | * WeUI v1.1.1 (https://github.com/weui/weui-wxss) 3 | * Copyright 2017 Tencent, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | .weui-article{padding:20px 15px;font-size:15px}.weui-article__section{margin-bottom:1.5em}.weui-article__h1{font-size:18px;font-weight:400;margin-bottom:.9em}.weui-article__h2{font-size:16px;font-weight:400;margin-bottom:.34em}.weui-article__h3{font-weight:400;font-size:15px;margin-bottom:.34em}.weui-article__p{margin:0 0 .8em} -------------------------------------------------------------------------------- /pages/suggestion/suggestion.wxml: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |