├── pages ├── footballsns │ ├── exit │ │ ├── exit.wxss │ │ ├── exit.wxml │ │ ├── exit.json │ │ └── exit.js │ ├── my │ │ ├── my.json │ │ ├── my.wxml │ │ ├── my.wxss │ │ ├── my.scss │ │ └── my.js │ ├── media │ │ ├── media.json │ │ ├── media.scss │ │ ├── media.wxss │ │ ├── media.wxml │ │ └── media.js │ ├── detail │ │ ├── detail.json │ │ ├── detail.js │ │ ├── detail.wxss │ │ └── detail.wxml │ ├── search │ │ ├── search.json │ │ ├── search.scss │ │ ├── search.wxss │ │ ├── search.wxml │ │ └── search.js │ └── main │ │ ├── main.json │ │ ├── main.wxss │ │ ├── main.wxml │ │ └── main.js └── index │ ├── index.wxss │ ├── index.wxml │ └── index.js ├── v1.0 ├── pages │ ├── footballsns │ │ ├── my │ │ │ ├── my.wxss │ │ │ ├── my.wxml │ │ │ ├── my.json │ │ │ └── my.js │ │ ├── exit │ │ │ ├── exit.wxss │ │ │ ├── exit.wxml │ │ │ ├── exit.json │ │ │ └── exit.js │ │ ├── photo │ │ │ ├── photo.wxss │ │ │ ├── photo.wxml │ │ │ ├── photo.json │ │ │ └── photo.js │ │ ├── search │ │ │ ├── search.wxss │ │ │ ├── search.wxml │ │ │ ├── search.json │ │ │ └── search.js │ │ ├── images │ │ │ ├── img1.jpg │ │ │ ├── img2.png │ │ │ ├── img3.jpg │ │ │ ├── img4.jpg │ │ │ ├── .DS_Store │ │ │ └── iconfont │ │ │ │ ├── .DS_Store │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ ├── iconfont-menu.ttf │ │ │ │ └── iconfont-menu.woff │ │ ├── app.json │ │ ├── app.js │ │ ├── app.wxml │ │ └── app.wxss │ └── index │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js ├── .DS_Store ├── images │ ├── my.png │ ├── exit.png │ ├── home.png │ ├── .DS_Store │ ├── camera.png │ ├── search.png │ ├── my_light.png │ ├── camera_light.png │ ├── exit_light.png │ ├── home_light.png │ └── search_light.png ├── app.wxss ├── utils │ └── util.js ├── mock │ └── list.json ├── app.js └── app.json ├── libs └── test.js ├── .DS_Store ├── images ├── my.png ├── exit.png ├── home.png ├── img1.jpg ├── img2.png ├── img3.jpg ├── img4.jpg ├── .DS_Store ├── camera.png ├── media.png ├── search.png ├── football.jpg ├── my_light.png ├── camera_light.png ├── exit_light.png ├── home_light.png ├── media_light.png └── search_light.png ├── media ├── now.mp3 ├── .DS_Store └── xuwei.webp ├── tpls ├── reminders.wxml ├── actionsheet.wxml └── signin.wxml ├── mock ├── more.json ├── refresh.json └── list.json ├── README.md ├── app.wxss ├── package.json ├── utils └── util.js ├── gulpfile.js ├── .gitignore ├── app.js └── app.json /pages/footballsns/exit/exit.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/my/my.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/exit/exit.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/test.js: -------------------------------------------------------------------------------- 1 | module.exports = "abc"; 2 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/photo/photo.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/search/search.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/.DS_Store -------------------------------------------------------------------------------- /images/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/my.png -------------------------------------------------------------------------------- /media/now.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/media/now.mp3 -------------------------------------------------------------------------------- /pages/footballsns/exit/exit.wxml: -------------------------------------------------------------------------------- 1 | 2 |
exit...
3 |
4 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/my/my.wxml: -------------------------------------------------------------------------------- 1 | 2 |
my...
3 |
4 | -------------------------------------------------------------------------------- /images/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/exit.png -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/home.png -------------------------------------------------------------------------------- /images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/img1.jpg -------------------------------------------------------------------------------- /images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/img2.png -------------------------------------------------------------------------------- /images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/img3.jpg -------------------------------------------------------------------------------- /images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/img4.jpg -------------------------------------------------------------------------------- /media/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/media/.DS_Store -------------------------------------------------------------------------------- /v1.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/.DS_Store -------------------------------------------------------------------------------- /v1.0/pages/footballsns/exit/exit.wxml: -------------------------------------------------------------------------------- 1 | 2 |
exit...
3 |
4 | -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/camera.png -------------------------------------------------------------------------------- /images/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/media.png -------------------------------------------------------------------------------- /images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/search.png -------------------------------------------------------------------------------- /media/xuwei.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/media/xuwei.webp -------------------------------------------------------------------------------- /v1.0/images/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/my.png -------------------------------------------------------------------------------- /v1.0/pages/footballsns/search/search.wxml: -------------------------------------------------------------------------------- 1 | 2 |
search...
3 |
4 | -------------------------------------------------------------------------------- /images/football.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/football.jpg -------------------------------------------------------------------------------- /images/my_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/my_light.png -------------------------------------------------------------------------------- /v1.0/images/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/exit.png -------------------------------------------------------------------------------- /v1.0/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/home.png -------------------------------------------------------------------------------- /v1.0/pages/footballsns/photo/photo.wxml: -------------------------------------------------------------------------------- 1 | 2 |
take a photo...
3 |
4 | -------------------------------------------------------------------------------- /images/camera_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/camera_light.png -------------------------------------------------------------------------------- /images/exit_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/exit_light.png -------------------------------------------------------------------------------- /images/home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/home_light.png -------------------------------------------------------------------------------- /images/media_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/media_light.png -------------------------------------------------------------------------------- /images/search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/images/search_light.png -------------------------------------------------------------------------------- /v1.0/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/.DS_Store -------------------------------------------------------------------------------- /v1.0/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/camera.png -------------------------------------------------------------------------------- /v1.0/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/search.png -------------------------------------------------------------------------------- /v1.0/images/my_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/my_light.png -------------------------------------------------------------------------------- /v1.0/images/camera_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/camera_light.png -------------------------------------------------------------------------------- /v1.0/images/exit_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/exit_light.png -------------------------------------------------------------------------------- /v1.0/images/home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/home_light.png -------------------------------------------------------------------------------- /v1.0/images/search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/images/search_light.png -------------------------------------------------------------------------------- /pages/footballsns/my/my.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } 5 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/img1.jpg -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/img2.png -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/img3.jpg -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/img4.jpg -------------------------------------------------------------------------------- /pages/footballsns/exit/exit.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "退出", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } 5 | -------------------------------------------------------------------------------- /pages/footballsns/media/media.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "多媒体", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } 5 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/.DS_Store -------------------------------------------------------------------------------- /v1.0/pages/footballsns/my/my.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } 5 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发现", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } -------------------------------------------------------------------------------- /pages/footballsns/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情页", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } 5 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/exit/exit.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "退出", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } 5 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/photo/photo.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "拍照", 3 | "navigationBarBackgroundColor": "#0dc441" 4 | } 5 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/iconfont/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/iconfont/.DS_Store -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/iconfont/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/iconfont/iconfont.woff -------------------------------------------------------------------------------- /v1.0/pages/footballsns/my/my.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | current: 0 4 | }, 5 | onLoad: function () { 6 | // console.log('loaded.'); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/exit/exit.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | current: 0 4 | }, 5 | onLoad: function () { 6 | // console.log('loaded.'); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/iconfont/iconfont-menu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/iconfont/iconfont-menu.ttf -------------------------------------------------------------------------------- /v1.0/pages/footballsns/images/iconfont/iconfont-menu.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurongtao/first-weapp/HEAD/v1.0/pages/footballsns/images/iconfont/iconfont-menu.woff -------------------------------------------------------------------------------- /v1.0/pages/footballsns/photo/photo.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | current: 0 4 | }, 5 | onLoad: function () { 6 | // console.log('loaded.'); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/search/search.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | current: 0 4 | }, 5 | onLoad: function () { 6 | // console.log('loaded.'); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /pages/footballsns/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#0dc441", 3 | "navigationBarTitleText": "发现", 4 | "navigationBarTextStyle": "white" 5 | } 6 | -------------------------------------------------------------------------------- /tpls/reminders.wxml: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /pages/footballsns/exit/exit.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | current: 0 4 | }, 5 | onLoad: function () { 6 | wx.clearStorageSync(); 7 | wx.navigateBack(); 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /pages/footballsns/main/main.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#0dc441", 3 | "navigationBarTitleText": "足球圈", 4 | "navigationBarTextStyle": "white", 5 | "enablePullDownRefresh": true 6 | } 7 | -------------------------------------------------------------------------------- /mock/more.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "img": "/images/img1.jpg", 4 | "title": "more西甲-巴萨3-4客负 皇马1-1丢榜首" 5 | }, 6 | { 7 | "img": "/images/img2.png", 8 | "title": "more英超-曼联憾平 曼城0-2热刺 瓜帅首败" 9 | } 10 | ] 11 | -------------------------------------------------------------------------------- /mock/refresh.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "img": "/images/img1.jpg", 4 | "title": "refresh西甲-巴萨3-4客负 皇马1-1丢榜首" 5 | }, 6 | { 7 | "img": "/images/img2.png", 8 | "title": "refresh英超-曼联憾平 曼城0-2热刺 瓜帅首败" 9 | } 10 | ] 11 | -------------------------------------------------------------------------------- /v1.0/pages/footballsns/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "backgroundTextStyle": "light", 3 | "navigationBarBackgroundColor": "#0dc441", 4 | "navigationBarTitleText": "足球圈", 5 | "navigationBarTextStyle": "white", 6 | "enablePullDownRefresh": true 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # weapp 2 | 微信小程序案例 3 | # 功能 4 | ### 基本功能 5 | ### 上拉刷新与下拉加载更多 6 | ### swiper 7 | ### scroll 8 | ### progress 9 | ### audio 10 | ### loading & toast & modal & actionsheet 11 | ### template 12 | ### 数据渲染 13 | ### storage 14 | ### 详情页 15 | -------------------------------------------------------------------------------- /v1.0/app.wxss: -------------------------------------------------------------------------------- 1 | /**app.wxss**/ 2 | .container { 3 | height: 100%; 4 | display: flex; 5 | flex-direction: column; 6 | align-items: center; 7 | justify-content: space-between; 8 | padding: 200rpx 0; 9 | box-sizing: border-box; 10 | } 11 | -------------------------------------------------------------------------------- /pages/footballsns/search/search.scss: -------------------------------------------------------------------------------- 1 | .search-container { 2 | box-sizing: border-box; 3 | padding: 10px; 4 | .pos { 5 | box-sizing: border-box; 6 | padding: 10px; 7 | } 8 | .device { 9 | box-sizing: border-box; 10 | padding: 10px; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- 1 | /**app.wxss**/ 2 | .container { 3 | height: 100%; 4 | display: flex; 5 | flex-direction: column; 6 | align-items: center; 7 | justify-content: space-between; 8 | padding: 200rpx 0; 9 | box-sizing: border-box; 10 | } 11 | 12 | page { 13 | height: 100%; 14 | } 15 | -------------------------------------------------------------------------------- /pages/footballsns/search/search.wxss: -------------------------------------------------------------------------------- 1 | .search-container { 2 | box-sizing: border-box; 3 | padding: 10px; } 4 | .search-container .pos { 5 | box-sizing: border-box; 6 | padding: 10px; } 7 | .search-container .device { 8 | box-sizing: border-box; 9 | padding: 10px; } 10 | -------------------------------------------------------------------------------- /pages/footballsns/detail/detail.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | current: 0, 4 | id: 0 5 | }, 6 | onLoad: function (params) { 7 | this.setData({ 8 | id: params.id 9 | }) 10 | }, 11 | onReady: function () { 12 | console.log(this.data.id); 13 | wx.setNavigationBarTitle({ 14 | title: '西甲-巴萨3-4客负 皇马1-1丢榜首' 15 | }); 16 | } 17 | }); 18 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "weapp", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "app.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "devDependencies": { 12 | "gulp": "^3.9.1", 13 | "gulp-rename": "^1.2.2", 14 | "gulp-sass": "^2.3.2" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /pages/footballsns/detail/detail.wxss: -------------------------------------------------------------------------------- 1 | view { 2 | display: flex; 3 | justify-content: center; 4 | box-sizing: border-box; 5 | padding: 10px; 6 | } 7 | 8 | view .title { 9 | width: 100%; 10 | font-size: 18px; 11 | text-align: center; 12 | margin-bottom: 10px; 13 | } 14 | 15 | view image { 16 | width: 100%; 17 | } 18 | 19 | view .body { 20 | font-size: 12px; 21 | } 22 | -------------------------------------------------------------------------------- /tpls/actionsheet.wxml: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /v1.0/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 | } 22 | 23 | .footballsns { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /pages/footballsns/my/my.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |