├── App.vue ├── README.md ├── common ├── ajax.js ├── css │ └── common.css ├── iconfont │ └── iconfont.css └── js │ ├── common.js │ └── requesturl.js ├── components ├── qiyue-category │ └── qiyue-category.vue ├── toTop │ └── toTop.vue ├── uni-badge │ └── uni-badge.vue ├── uni-icons │ └── uni-icons.vue ├── uni-list-item │ └── uni-list-item.vue ├── uni-list │ └── uni-list.vue ├── uni-load-more │ └── uni-load-more.vue ├── uni-popup │ └── uni-popup.vue ├── uni-swipe-action-item │ ├── bindingx.js │ ├── index.wxs │ ├── mp.js │ ├── mpother.js │ └── uni-swipe-action-item.vue └── uni-swipe-action │ └── uni-swipe-action.vue ├── main.js ├── manifest.json ├── pages.json ├── pages ├── aboutA │ └── aboutA.vue ├── account │ ├── account.nvue │ └── account_item.vue ├── article_detail │ └── article_detail.vue ├── collectList │ ├── collectList.vue │ ├── item_circle.vue │ └── item_pic.vue ├── home │ ├── home.css │ └── home.vue ├── info │ └── info.vue ├── login │ ├── login.css │ └── login.vue ├── mine │ ├── mine.css │ └── mine.vue ├── nav │ ├── nav.css │ └── nav.vue ├── project │ ├── project.nvue │ └── project_item.vue ├── register │ ├── register.css │ └── register.vue ├── search │ └── search.vue ├── searchList │ ├── item_circle.vue │ ├── item_pic.vue │ └── searchList.vue ├── share_article │ └── share_article.vue ├── system │ ├── system.css │ └── system.vue ├── system_tab │ ├── system_tab.css │ ├── system_tab.nvue │ ├── system_tab_item.css │ └── system_tab_item.vue └── website │ └── website.vue ├── static ├── app.png ├── applogo.jpg ├── avatar.jpg ├── location.png ├── login_icon.jpg ├── start.png ├── tabbarIcon │ ├── account.png │ ├── account_selected.png │ ├── home.png │ ├── home_selected.png │ ├── nav.png │ ├── nav_selected.png │ ├── project.png │ ├── project_selected.png │ ├── system.png │ └── system_selected.png ├── timg.gif ├── timg2.gif └── toTop.png ├── store └── index.js ├── uni.scss ├── unpackage ├── dist │ ├── build │ │ ├── .tmp │ │ │ └── app-plus │ │ │ │ ├── app.js │ │ │ │ ├── app.json │ │ │ │ ├── app.wxss │ │ │ │ ├── common │ │ │ │ ├── main.js │ │ │ │ ├── main.wxss │ │ │ │ ├── runtime.js │ │ │ │ └── vendor.js │ │ │ │ ├── components │ │ │ │ ├── toTop │ │ │ │ │ ├── toTop.js │ │ │ │ │ ├── toTop.json │ │ │ │ │ ├── toTop.wxml │ │ │ │ │ └── toTop.wxss │ │ │ │ ├── uni-badge │ │ │ │ │ ├── uni-badge.js │ │ │ │ │ ├── uni-badge.json │ │ │ │ │ ├── uni-badge.wxml │ │ │ │ │ └── uni-badge.wxss │ │ │ │ ├── uni-icons │ │ │ │ │ ├── uni-icons.js │ │ │ │ │ ├── uni-icons.json │ │ │ │ │ ├── uni-icons.wxml │ │ │ │ │ └── uni-icons.wxss │ │ │ │ ├── uni-list-item │ │ │ │ │ ├── uni-list-item.js │ │ │ │ │ ├── uni-list-item.json │ │ │ │ │ ├── uni-list-item.wxml │ │ │ │ │ └── uni-list-item.wxss │ │ │ │ ├── uni-list │ │ │ │ │ ├── uni-list.js │ │ │ │ │ ├── uni-list.json │ │ │ │ │ ├── uni-list.wxml │ │ │ │ │ └── uni-list.wxss │ │ │ │ ├── uni-load-more │ │ │ │ │ ├── uni-load-more.js │ │ │ │ │ ├── uni-load-more.json │ │ │ │ │ ├── uni-load-more.wxml │ │ │ │ │ └── uni-load-more.wxss │ │ │ │ └── uni-popup │ │ │ │ │ ├── uni-popup.js │ │ │ │ │ ├── uni-popup.json │ │ │ │ │ ├── uni-popup.wxml │ │ │ │ │ └── uni-popup.wxss │ │ │ │ ├── manifest.json │ │ │ │ └── pages │ │ │ │ ├── aboutA │ │ │ │ ├── aboutA.js │ │ │ │ ├── aboutA.json │ │ │ │ ├── aboutA.wxml │ │ │ │ └── aboutA.wxss │ │ │ │ ├── article_detail │ │ │ │ ├── article_detail.js │ │ │ │ ├── article_detail.json │ │ │ │ └── article_detail.wxml │ │ │ │ ├── collectList │ │ │ │ ├── collectList.js │ │ │ │ ├── collectList.json │ │ │ │ ├── collectList.wxml │ │ │ │ ├── collectList.wxss │ │ │ │ ├── item_circle.js │ │ │ │ ├── item_circle.json │ │ │ │ ├── item_circle.wxml │ │ │ │ ├── item_circle.wxss │ │ │ │ ├── item_pic.js │ │ │ │ ├── item_pic.json │ │ │ │ ├── item_pic.wxml │ │ │ │ └── item_pic.wxss │ │ │ │ ├── home │ │ │ │ ├── home.js │ │ │ │ ├── home.json │ │ │ │ ├── home.wxml │ │ │ │ └── home.wxss │ │ │ │ ├── info │ │ │ │ ├── info.js │ │ │ │ ├── info.json │ │ │ │ ├── info.wxml │ │ │ │ └── info.wxss │ │ │ │ ├── login │ │ │ │ ├── login.js │ │ │ │ ├── login.json │ │ │ │ ├── login.wxml │ │ │ │ └── login.wxss │ │ │ │ ├── mine │ │ │ │ ├── mine.js │ │ │ │ ├── mine.json │ │ │ │ ├── mine.wxml │ │ │ │ └── mine.wxss │ │ │ │ ├── nav │ │ │ │ ├── nav.js │ │ │ │ ├── nav.json │ │ │ │ ├── nav.wxml │ │ │ │ └── nav.wxss │ │ │ │ ├── register │ │ │ │ ├── register.js │ │ │ │ ├── register.json │ │ │ │ ├── register.wxml │ │ │ │ └── register.wxss │ │ │ │ ├── search │ │ │ │ ├── search.js │ │ │ │ ├── search.json │ │ │ │ ├── search.wxml │ │ │ │ └── search.wxss │ │ │ │ ├── searchList │ │ │ │ ├── item_circle.js │ │ │ │ ├── item_circle.json │ │ │ │ ├── item_circle.wxml │ │ │ │ ├── item_circle.wxss │ │ │ │ ├── item_pic.js │ │ │ │ ├── item_pic.json │ │ │ │ ├── item_pic.wxml │ │ │ │ ├── item_pic.wxss │ │ │ │ ├── searchList.js │ │ │ │ ├── searchList.json │ │ │ │ ├── searchList.wxml │ │ │ │ └── searchList.wxss │ │ │ │ ├── system │ │ │ │ ├── system.js │ │ │ │ ├── system.json │ │ │ │ ├── system.wxml │ │ │ │ └── system.wxss │ │ │ │ └── website │ │ │ │ ├── website.js │ │ │ │ ├── website.json │ │ │ │ ├── website.wxml │ │ │ │ └── website.wxss │ │ └── app-plus │ │ │ ├── __uniappchooselocation.js │ │ │ ├── __uniappes6.js │ │ │ ├── __uniappnvuecompiler.js │ │ │ ├── __uniappopenlocation.js │ │ │ ├── __uniapppicker.js │ │ │ ├── __uniappscan.js │ │ │ ├── __uniappsuccess.png │ │ │ ├── __uniappview.html │ │ │ ├── app-config.js │ │ │ ├── app-service.js │ │ │ ├── app-view.js │ │ │ ├── manifest.json │ │ │ ├── pages │ │ │ ├── aboutA │ │ │ │ └── aboutA.js │ │ │ ├── account │ │ │ │ └── account.js │ │ │ ├── article_detail │ │ │ │ └── article_detail.js │ │ │ ├── collectList │ │ │ │ └── collectList.js │ │ │ ├── home │ │ │ │ └── home.js │ │ │ ├── info │ │ │ │ └── info.js │ │ │ ├── login │ │ │ │ └── login.js │ │ │ ├── mine │ │ │ │ └── mine.js │ │ │ ├── nav │ │ │ │ └── nav.js │ │ │ ├── project │ │ │ │ └── project.js │ │ │ ├── register │ │ │ │ └── register.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ ├── searchList │ │ │ │ └── searchList.js │ │ │ ├── system │ │ │ │ └── system.js │ │ │ ├── system_tab │ │ │ │ └── system_tab.js │ │ │ └── website │ │ │ │ └── website.js │ │ │ └── static │ │ │ ├── app.png │ │ │ ├── applogo.jpg │ │ │ ├── avatar.jpg │ │ │ ├── location.png │ │ │ ├── login_icon.jpg │ │ │ ├── start.png │ │ │ ├── tabbarIcon │ │ │ ├── account.png │ │ │ ├── account_selected.png │ │ │ ├── home.png │ │ │ ├── home_selected.png │ │ │ ├── nav.png │ │ │ ├── nav_selected.png │ │ │ ├── project.png │ │ │ ├── project_selected.png │ │ │ ├── system.png │ │ │ └── system_selected.png │ │ │ └── toTop.png │ └── dev │ │ ├── .tmp │ │ └── app-plus │ │ │ ├── app.js │ │ │ ├── app.json │ │ │ ├── app.wxss │ │ │ ├── common │ │ │ ├── main.js │ │ │ ├── main.wxss │ │ │ ├── runtime.js │ │ │ └── vendor.js │ │ │ ├── components │ │ │ ├── toTop │ │ │ │ ├── toTop.js │ │ │ │ ├── toTop.json │ │ │ │ ├── toTop.wxml │ │ │ │ └── toTop.wxss │ │ │ ├── uni-badge │ │ │ │ ├── uni-badge.js │ │ │ │ ├── uni-badge.json │ │ │ │ ├── uni-badge.wxml │ │ │ │ └── uni-badge.wxss │ │ │ ├── uni-icons │ │ │ │ ├── uni-icons.js │ │ │ │ ├── uni-icons.json │ │ │ │ ├── uni-icons.wxml │ │ │ │ └── uni-icons.wxss │ │ │ ├── uni-list-item │ │ │ │ ├── uni-list-item.js │ │ │ │ ├── uni-list-item.json │ │ │ │ ├── uni-list-item.wxml │ │ │ │ └── uni-list-item.wxss │ │ │ ├── uni-list │ │ │ │ ├── uni-list.js │ │ │ │ ├── uni-list.json │ │ │ │ ├── uni-list.wxml │ │ │ │ └── uni-list.wxss │ │ │ ├── uni-load-more │ │ │ │ ├── uni-load-more.js │ │ │ │ ├── uni-load-more.json │ │ │ │ ├── uni-load-more.wxml │ │ │ │ └── uni-load-more.wxss │ │ │ └── uni-popup │ │ │ │ ├── uni-popup.js │ │ │ │ ├── uni-popup.json │ │ │ │ ├── uni-popup.wxml │ │ │ │ └── uni-popup.wxss │ │ │ ├── manifest.json │ │ │ └── pages │ │ │ ├── aboutA │ │ │ ├── aboutA.js │ │ │ ├── aboutA.json │ │ │ ├── aboutA.wxml │ │ │ └── aboutA.wxss │ │ │ ├── article_detail │ │ │ ├── article_detail.js │ │ │ ├── article_detail.json │ │ │ └── article_detail.wxml │ │ │ ├── collectList │ │ │ ├── collectList.js │ │ │ ├── collectList.json │ │ │ ├── collectList.wxml │ │ │ ├── collectList.wxss │ │ │ ├── item_circle.js │ │ │ ├── item_circle.json │ │ │ ├── item_circle.wxml │ │ │ ├── item_circle.wxss │ │ │ ├── item_pic.js │ │ │ ├── item_pic.json │ │ │ ├── item_pic.wxml │ │ │ └── item_pic.wxss │ │ │ ├── home │ │ │ ├── home.js │ │ │ ├── home.json │ │ │ ├── home.wxml │ │ │ └── home.wxss │ │ │ ├── info │ │ │ ├── info.js │ │ │ ├── info.json │ │ │ ├── info.wxml │ │ │ └── info.wxss │ │ │ ├── login │ │ │ ├── login.js │ │ │ ├── login.json │ │ │ ├── login.wxml │ │ │ └── login.wxss │ │ │ ├── mine │ │ │ ├── mine.js │ │ │ ├── mine.json │ │ │ ├── mine.wxml │ │ │ └── mine.wxss │ │ │ ├── nav │ │ │ ├── nav.js │ │ │ ├── nav.json │ │ │ ├── nav.wxml │ │ │ └── nav.wxss │ │ │ ├── register │ │ │ ├── register.js │ │ │ ├── register.json │ │ │ ├── register.wxml │ │ │ └── register.wxss │ │ │ ├── search │ │ │ ├── search.js │ │ │ ├── search.json │ │ │ ├── search.wxml │ │ │ └── search.wxss │ │ │ ├── searchList │ │ │ ├── item_circle.js │ │ │ ├── item_circle.json │ │ │ ├── item_circle.wxml │ │ │ ├── item_circle.wxss │ │ │ ├── item_pic.js │ │ │ ├── item_pic.json │ │ │ ├── item_pic.wxml │ │ │ ├── item_pic.wxss │ │ │ ├── searchList.js │ │ │ ├── searchList.json │ │ │ ├── searchList.wxml │ │ │ └── searchList.wxss │ │ │ ├── share_article │ │ │ ├── share_article.js │ │ │ ├── share_article.json │ │ │ ├── share_article.wxml │ │ │ └── share_article.wxss │ │ │ ├── system │ │ │ ├── system.js │ │ │ ├── system.json │ │ │ ├── system.wxml │ │ │ └── system.wxss │ │ │ └── website │ │ │ ├── website.js │ │ │ ├── website.json │ │ │ ├── website.wxml │ │ │ └── website.wxss │ │ └── app-plus │ │ ├── __uniappchooselocation.html │ │ ├── __uniappes6.js │ │ ├── __uniappmarker@3x.png │ │ ├── __uniappnvuecompiler.js │ │ ├── __uniappopenlocation.html │ │ ├── __uniapppicker.html │ │ ├── __uniappscan.html │ │ ├── __uniappsuccess.png │ │ ├── __uniapptabbar.html │ │ ├── __uniappview.html │ │ ├── app-config.js │ │ ├── app-service.js │ │ ├── app-view.js │ │ ├── manifest.json │ │ ├── pages │ │ ├── aboutA │ │ │ └── aboutA.js │ │ ├── account │ │ │ └── account.js │ │ ├── article_detail │ │ │ └── article_detail.js │ │ ├── collectList │ │ │ └── collectList.js │ │ ├── home │ │ │ └── home.js │ │ ├── info │ │ │ └── info.js │ │ ├── login │ │ │ └── login.js │ │ ├── mine │ │ │ └── mine.js │ │ ├── nav │ │ │ └── nav.js │ │ ├── project │ │ │ └── project.js │ │ ├── register │ │ │ └── register.js │ │ ├── search │ │ │ └── search.js │ │ ├── searchList │ │ │ └── searchList.js │ │ ├── share_article │ │ │ └── share_article.js │ │ ├── system │ │ │ └── system.js │ │ ├── system_tab │ │ │ └── system_tab.js │ │ └── website │ │ │ └── website.js │ │ └── static │ │ ├── app.png │ │ ├── applogo.jpg │ │ ├── avatar.jpg │ │ ├── location.png │ │ ├── login_icon.jpg │ │ ├── start.png │ │ ├── tabbarIcon │ │ ├── account.png │ │ ├── account_selected.png │ │ ├── home.png │ │ ├── home_selected.png │ │ ├── nav.png │ │ ├── nav_selected.png │ │ ├── project.png │ │ ├── project_selected.png │ │ ├── system.png │ │ └── system_selected.png │ │ ├── timg.gif │ │ ├── timg2.gif │ │ └── toTop.png ├── res │ └── icons │ │ ├── 1024x1024.png │ │ ├── 120x120.png │ │ ├── 144x144.png │ │ ├── 152x152.png │ │ ├── 167x167.png │ │ ├── 180x180.png │ │ ├── 192x192.png │ │ ├── 20x20.png │ │ ├── 29x29.png │ │ ├── 40x40.png │ │ ├── 58x58.png │ │ ├── 60x60.png │ │ ├── 72x72.png │ │ ├── 76x76.png │ │ ├── 80x80.png │ │ ├── 87x87.png │ │ └── 96x96.png └── resources │ └── __UNI__D010B51 │ └── www │ ├── __uniappchooselocation.js │ ├── __uniappes6.js │ ├── __uniappnvuecompiler.js │ ├── __uniappopenlocation.js │ ├── __uniapppicker.js │ ├── __uniappscan.js │ ├── __uniappsuccess.png │ ├── __uniappview.html │ ├── app-config.js │ ├── app-service.js │ ├── app-view.js │ ├── manifest.json │ ├── pages │ ├── aboutA │ │ └── aboutA.js │ ├── account │ │ └── account.js │ ├── article_detail │ │ └── article_detail.js │ ├── home │ │ └── home.js │ ├── info │ │ └── info.js │ ├── login │ │ └── login.js │ ├── mine │ │ └── mine.js │ ├── nav │ │ └── nav.js │ ├── project │ │ └── project.js │ ├── register │ │ └── register.js │ ├── search │ │ └── search.js │ ├── searchList │ │ └── searchList.js │ ├── system │ │ └── system.js │ ├── system_tab │ │ └── system_tab.js │ └── website │ │ └── website.js │ └── static │ ├── app.png │ ├── applogo.jpg │ ├── avatar.jpg │ ├── location.png │ ├── login_icon.jpg │ ├── start.png │ └── tabbarIcon │ ├── account.png │ ├── account_selected.png │ ├── home.png │ ├── home_selected.png │ ├── nav.png │ ├── nav_selected.png │ ├── project.png │ ├── project_selected.png │ ├── system.png │ └── system_selected.png ├── yes └── yes.pub /App.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 29 | -------------------------------------------------------------------------------- /common/ajax.js: -------------------------------------------------------------------------------- 1 | const ajaxJs = function(url,data,method,success,fail,complete){ 2 | uni.showLoading({ 3 | title: '加载中', 4 | }); 5 | uni.request({ 6 | url:url, 7 | data:data, 8 | header: { 9 | 'content-Type': 'application/json' 10 | }, 11 | method:method, 12 | responseType:'text', 13 | dataType: 'json', 14 | responseType: 'text', 15 | success:function({data}){ 16 | // console.log(data); 17 | if(data.errorCode == 0){ 18 | uni.hideLoading() 19 | if( success && typeof (success) == "function"){ 20 | success(data) 21 | } 22 | 23 | }else{ 24 | uni.hideLoading() 25 | // console.log(data,'error'); 26 | } 27 | }, 28 | fail:function(data){ 29 | uni.hideLoading() 30 | if( fail && typeof (fail) == "function"){ 31 | fail(data) 32 | } 33 | console.log(data,'请求出错'+"--"+url); 34 | }, 35 | complete:function(data){ 36 | uni.hideLoading() 37 | if( complete && typeof (complete) == "function"){ 38 | complete(data) 39 | } 40 | } 41 | }) 42 | } 43 | export default{ 44 | ajaxJs 45 | } -------------------------------------------------------------------------------- /common/css/common.css: -------------------------------------------------------------------------------- 1 | .bgimg{ 2 | background-size: cover; 3 | background-repeat: no-repeat; 4 | background-position: center; 5 | } 6 | .text_overflow{ 7 | overflow: hidden; 8 | text-overflow:ellipsis; 9 | white-space: nowrap; 10 | } -------------------------------------------------------------------------------- /common/js/common.js: -------------------------------------------------------------------------------- 1 | export default{ 2 | closeWin:function (){ //正常返回关闭当前页面 3 | uni.navigateBack() 4 | }, 5 | getUserName:function(){ 6 | var userName = ''; 7 | uni.getStorage({ 8 | key:"userName", 9 | success:function(res){ 10 | if(res.data){ 11 | userName = res.data; 12 | } 13 | } 14 | }) 15 | return userName; 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /common/js/requesturl.js: -------------------------------------------------------------------------------- 1 | const baseUrl = "https://www.wanandroid.com"; 2 | 3 | export default{ 4 | // 首页 5 | _url_home_banner : baseUrl + "/banner/json", 6 | _url_home_article : function(pageSize){ 7 | return baseUrl + "/article/list/" + pageSize + "/json" 8 | }, 9 | _url_register : baseUrl + "/user/register", 10 | _url_login : baseUrl + "/user/login", 11 | _url_system : baseUrl + "/tree/json", 12 | _url_nav : baseUrl + "/navi/json", 13 | _url_website:baseUrl + "/friend/json", 14 | _url_hotkey: baseUrl + "/hotkey/json", 15 | _url_search: function(pageSize,k){ 16 | return baseUrl + "/article/query/"+ pageSize +"/json?k="+k 17 | }, 18 | _url_logout:baseUrl + "/user/logout/json", 19 | _url_collect_list: function (pageSize){ 20 | return baseUrl + "/lg/collect/list/"+ pageSize +"/json" 21 | }, 22 | _url_user_share : function (pageSize){ 23 | return baseUrl + "/user/lg/private_articles/"+ pageSize +"/json" 24 | }, 25 | _url_user_article:function(title,link){ 26 | return baseUrl + "/lg/user_article/add/json?title="+title + "&link="+link 27 | } 28 | } 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /components/toTop/toTop.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 23 | 24 | 44 | -------------------------------------------------------------------------------- /components/uni-list/uni-list.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 46 | -------------------------------------------------------------------------------- /components/uni-swipe-action-item/mp.js: -------------------------------------------------------------------------------- 1 | export default { 2 | data() { 3 | return { 4 | position: [], 5 | button: [] 6 | } 7 | }, 8 | computed: { 9 | pos() { 10 | return JSON.stringify(this.position) 11 | }, 12 | btn() { 13 | return JSON.stringify(this.button) 14 | } 15 | }, 16 | watch: { 17 | show(newVal) { 18 | if (this.autoClose) return 19 | let valueObj = this.position[0] 20 | if (!valueObj) { 21 | this.init() 22 | return 23 | } 24 | valueObj.show = newVal 25 | this.$set(this.position, 0, valueObj) 26 | } 27 | }, 28 | created() { 29 | if (this.swipeaction.children !== undefined) { 30 | this.swipeaction.children.push(this) 31 | } 32 | }, 33 | mounted() { 34 | this.init() 35 | 36 | }, 37 | beforeDestroy() { 38 | this.swipeaction.children.forEach((item, index) => { 39 | if (item === this) { 40 | this.swipeaction.children.splice(index, 1) 41 | } 42 | }) 43 | }, 44 | methods: { 45 | init() { 46 | 47 | setTimeout(() => { 48 | this.getSize() 49 | this.getButtonSize() 50 | }, 50) 51 | }, 52 | closeSwipe(e) { 53 | if (!this.autoClose) return 54 | this.swipeaction.closeOther(this) 55 | }, 56 | 57 | change(e) { 58 | this.$emit('change', e.open) 59 | let valueObj = this.position[0] 60 | if (valueObj.show !== e.open) { 61 | valueObj.show = e.open 62 | this.$set(this.position, 0, valueObj) 63 | } 64 | }, 65 | onClick(index, item) { 66 | this.$emit('click', { 67 | content: item, 68 | index 69 | }) 70 | }, 71 | getSize() { 72 | const views = uni.createSelectorQuery().in(this) 73 | views 74 | .selectAll('.selector-query-hock') 75 | .boundingClientRect(data => { 76 | if (this.autoClose) { 77 | data[0].show = false 78 | } else { 79 | data[0].show = this.show 80 | } 81 | this.position = data 82 | }) 83 | .exec() 84 | }, 85 | getButtonSize() { 86 | const views = uni.createSelectorQuery().in(this) 87 | views 88 | .selectAll('.button-hock') 89 | .boundingClientRect(data => { 90 | this.button = data 91 | }) 92 | .exec() 93 | } 94 | } 95 | } 96 | -------------------------------------------------------------------------------- /components/uni-swipe-action/uni-swipe-action.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 50 | 51 | 54 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | import tools from './common/js/common.js' 4 | import ajaxJs from './common/ajax.js' 5 | import urls from './common/js/requesturl.js' 6 | import loadMore from './components/uni-load-more/uni-load-more.vue' 7 | import store from './store' 8 | Vue.component("uniLoadMore",loadMore)//上拉加载更多组件使用场景较多,因此全局注册 9 | 10 | Vue.prototype.$ajax = ajaxJs.ajaxJs 11 | Vue.prototype.$tools = tools 12 | Vue.prototype.$urls = urls; //nvue不能使用此类公共方法 13 | 14 | Vue.config.productionTip = false 15 | 16 | App.mpType = 'app' 17 | 18 | const app = new Vue({ 19 | store, 20 | ...App 21 | }) 22 | app.$mount() 23 | -------------------------------------------------------------------------------- /pages/aboutA/aboutA.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 基于玩安卓api与uniapp开发安卓平台玩安卓客户端 8 | 9 | 10 | 11 | QQ:572410049 12 | 13 | 14 | 邮箱:572410049@qq.com 15 | 16 | 17 | github:https://github.com/Mstian 18 | 19 | 20 | 21 | 本项目仅作学习使用,不得做商业用途 22 | 23 | 24 | 25 | 26 | 38 | 39 | 68 | -------------------------------------------------------------------------------- /pages/article_detail/article_detail.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 28 | 29 | 32 | -------------------------------------------------------------------------------- /pages/mine/mine.css: -------------------------------------------------------------------------------- 1 | /* 2 | */ 3 | .topbar{ 4 | height: 250px; 5 | background: #DD524D; 6 | text-align: center; 7 | position: relative; 8 | padding-top: 70px; 9 | } 10 | .user_avatar{ 11 | width: 100px; 12 | height: 100px; 13 | border-radius: 50%; 14 | margin: 0 auto; 15 | } 16 | .user_name{ 17 | margin: 20px; 18 | color: #fff; 19 | font-size: 20px; 20 | } 21 | .close_btn{ 22 | position: absolute; 23 | top: 70px; 24 | right: 30px; 25 | font-size: 24px; 26 | color: #fff; 27 | } 28 | .themeList{ 29 | height: 300px; 30 | width: 250px; 31 | overflow: scroll; 32 | } 33 | .themeList view{ 34 | width: 50%; 35 | height: 45px; 36 | background: #999999; 37 | text-align: center; 38 | line-height: 45px; 39 | border-radius: 30px; 40 | margin: 5px auto; 41 | } 42 | .loginbtn{ 43 | color: #fff; 44 | } -------------------------------------------------------------------------------- /pages/nav/nav.css: -------------------------------------------------------------------------------- 1 | .nav{ 2 | display: flex; 3 | justify-content: space-between; 4 | align-items: flex-start; 5 | } 6 | .left{ 7 | background: #EEEEEE; 8 | width: 30vw; 9 | } 10 | .right{ 11 | background: #EEEEEE; 12 | flex: 1; 13 | } 14 | .left scroll-view{ 15 | 16 | } 17 | .scrollleft{ 18 | height: 100vh; 19 | } 20 | .left .tabs{ 21 | height: 35px; 22 | background:#fefefe; 23 | text-align: center; 24 | line-height: 35px; 25 | font-size: 28rpx; 26 | color: #333; 27 | } 28 | .right scroll-view{ 29 | height: 100vh; 30 | } 31 | .left .tabs.active{ 32 | color: #fff; 33 | background: #DD524D; 34 | } 35 | .contents{ 36 | width: 90%; 37 | padding: 5px; 38 | background: #fff; 39 | margin: 5px auto; 40 | border-radius: 4px; 41 | } 42 | .content_title{ 43 | text-align: center; 44 | font-size: 32rpx; 45 | font-weight: bold; 46 | } 47 | .content_main{ 48 | width: 100%; 49 | padding: 5px; 50 | /* background: #F24544; */ 51 | display: flex; 52 | justify-content: flex-start; 53 | align-items: center; 54 | flex-wrap: wrap; 55 | } 56 | .content_main view{ 57 | font-size: 30rpx; 58 | padding: 2px 8px; 59 | border-radius: 999rpx; 60 | background: #DD524D; 61 | color: #fff; 62 | margin: 4px 3px; 63 | box-shadow: 1px 1px 1px #aaa; 64 | } 65 | .hover_class{ 66 | opacity: 0.8; 67 | } -------------------------------------------------------------------------------- /pages/nav/nav.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{item.name}} 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | {{item.name}} 15 | 16 | 17 | 18 | {{tabItem.title}} 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 60 | 61 | 64 | -------------------------------------------------------------------------------- /pages/searchList/item_circle.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{dataItem.niceDate ? dataItem.niceDate : '未知'}} 9 | 10 | 11 | {{dataItem.author}} 12 | 13 | 14 | 15 | 16 | {{dataItem.superChapterName}} 17 | 18 | 19 | 20 | 21 | 45 | 46 | 88 | -------------------------------------------------------------------------------- /pages/searchList/item_pic.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {{dataItem.niceDate}} 13 | 14 | 15 | {{dataItem.author}} 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 49 | 50 | 101 | -------------------------------------------------------------------------------- /pages/share_article/share_article.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 确认分享 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 62 | 63 | 78 | -------------------------------------------------------------------------------- /pages/system/system.css: -------------------------------------------------------------------------------- 1 | .wrap{ 2 | background: #F7F7F7; 3 | /* overflow: hidden; */ 4 | } 5 | .contentList{ 6 | background: #fff; 7 | border-radius: 10px; 8 | width: 90%; 9 | margin: 0 auto; 10 | padding: 5px; 11 | margin-top: 10px; 12 | margin-bottom: 10px; 13 | } 14 | .contentList .title{ 15 | color: #333; 16 | font-size: 16px; 17 | } 18 | .content{ 19 | display: flex; 20 | flex-wrap: wrap; 21 | } 22 | .content text{ 23 | font-size: 14px; 24 | color: #FFF; 25 | padding: 4px 10px; 26 | background: skyblue; 27 | border-radius: 999rpx; 28 | margin: 2px; 29 | } 30 | .media-item-hover{ 31 | background-color: #eee; 32 | } -------------------------------------------------------------------------------- /pages/system/system.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{item.name}} 6 | 7 | 8 | {{subitem.name}} 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 54 | 55 | 58 | -------------------------------------------------------------------------------- /pages/system_tab/system_tab.css: -------------------------------------------------------------------------------- 1 | /* #ifndef APP-PLUS */ 2 | page { 3 | width: 100%; 4 | min-height: 100%; 5 | display: flex; 6 | } 7 | /* #endif */ 8 | 9 | .tabs { 10 | flex: 1; 11 | flex-direction: column; 12 | } 13 | .scroll-h { 14 | /* background-color: #fff; */ 15 | padding: 0; 16 | flex-direction: row; 17 | width: 750rpx; 18 | /* height: 80upx; */ 19 | } 20 | 21 | .tab_item { 22 | /* padding: 0; */ 23 | background-color: #fff; 24 | /* line-height: 80upx; */ 25 | padding: 10px 10px; 26 | color: #ffffff; 27 | } 28 | 29 | .uni-tab-item-title-active { 30 | color: #DD524D; 31 | } 32 | 33 | .tab_txt { 34 | color: #666; 35 | font-size: 14px; 36 | } 37 | 38 | .border_h { 39 | /* width: 100%; */ 40 | height: 1px; 41 | background-color: #C8C7CC; 42 | } 43 | .topbox { 44 | /* width: 750upx; */ 45 | height: 42px; 46 | /* border-bottom-: 1px solid #eee; 47 | */ 48 | border-bottom-width: 1px; 49 | border-bottom-style: solid; 50 | border-bottom-color: #eee; 51 | } 52 | .botbox { 53 | flex: 1; 54 | background-color: #eee; 55 | } 56 | .swiper_box { 57 | flex: 1; 58 | /* height: 100%; */ 59 | /* background-color: #007AFF; */ 60 | } 61 | 62 | .swiper_item { 63 | flex: 1; 64 | /* flex-direction: row; */ 65 | } 66 | 67 | .footer { 68 | /* flex: 1; */ 69 | height: 10px; 70 | width: 100%; 71 | background-color: #007AFF; 72 | } 73 | /* 下拉刷新样式 */ 74 | .refresh{ 75 | height: 60px; 76 | flex-direction: row; 77 | align-items: center; 78 | justify-content: center; 79 | } 80 | 81 | .loading-text { 82 | /* margin-left: 2px; */ 83 | line-height: 60px; 84 | font-size: 16px; 85 | color: #999999; 86 | padding: 10px 0; 87 | } 88 | .loading-icon { 89 | width: 20px; 90 | height: 20px; 91 | margin-right: 5px; 92 | color: #999999; 93 | } 94 | .loadingtxt{ 95 | line-height: 40px; 96 | font-size: 14px; 97 | color: #aaa; 98 | text-align: center; 99 | } -------------------------------------------------------------------------------- /pages/system_tab/system_tab_item.css: -------------------------------------------------------------------------------- 1 | .main { 2 | margin: 2px; 3 | } 4 | 5 | .media-item-hover { 6 | background-color: #eee; 7 | } 8 | 9 | .main_list { 10 | justify-content: space-between; 11 | align-items: center; 12 | flex-direction: row; 13 | padding: 10px 10px; 14 | border-width: 1px; 15 | border-style: solid; 16 | border-color: transparent; 17 | border-radius: 10px; 18 | background-color: #fff; 19 | } 20 | 21 | .main_right { 22 | width: 60px; 23 | height: 60px; 24 | background-color: #C71585; 25 | border-radius: 50%; 26 | line-height: 60px; 27 | text-align: center; 28 | font-size: 12px; 29 | color: #fff; 30 | } 31 | 32 | .main_left { 33 | width: 260px; 34 | height: 60px; 35 | 36 | flex-direction: column; 37 | justify-content: space-around; 38 | position: relative; 39 | } 40 | 41 | .line { 42 | flex-direction: row; 43 | justify-content: flex-start; 44 | 45 | } 46 | 47 | .text { 48 | font-size: 14px; 49 | color: #333; 50 | width: 260px; 51 | text-overflow: ellipsis; 52 | lines: 2; 53 | } 54 | 55 | .times { 56 | font-size: 12px; 57 | color: #aaa; 58 | 59 | margin-right: 20px; 60 | } 61 | 62 | .author { 63 | font-size: 12px; 64 | color: #aaa; 65 | } 66 | -------------------------------------------------------------------------------- /pages/system_tab/system_tab_item.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{dataItem.title}} 7 | 8 | {{dataItem.niceDate ? dataItem.niceDate : ''}} 9 | {{dataItem.author ? dataItem.author : '未知'}} 10 | 11 | 12 | {{dataItem.superChapterName ? dataItem.superChapterName : '暂未分类'}} 13 | 14 | 15 | 16 | 17 | 18 | 41 | 42 | 45 | -------------------------------------------------------------------------------- /pages/website/website.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{item.name}} 5 | 6 | 7 | 8 | 9 | 40 | 41 | 64 | -------------------------------------------------------------------------------- /static/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/app.png -------------------------------------------------------------------------------- /static/applogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/applogo.jpg -------------------------------------------------------------------------------- /static/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/avatar.jpg -------------------------------------------------------------------------------- /static/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/location.png -------------------------------------------------------------------------------- /static/login_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/login_icon.jpg -------------------------------------------------------------------------------- /static/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/start.png -------------------------------------------------------------------------------- /static/tabbarIcon/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/account.png -------------------------------------------------------------------------------- /static/tabbarIcon/account_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/account_selected.png -------------------------------------------------------------------------------- /static/tabbarIcon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/home.png -------------------------------------------------------------------------------- /static/tabbarIcon/home_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/home_selected.png -------------------------------------------------------------------------------- /static/tabbarIcon/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/nav.png -------------------------------------------------------------------------------- /static/tabbarIcon/nav_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/nav_selected.png -------------------------------------------------------------------------------- /static/tabbarIcon/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/project.png -------------------------------------------------------------------------------- /static/tabbarIcon/project_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/project_selected.png -------------------------------------------------------------------------------- /static/tabbarIcon/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/system.png -------------------------------------------------------------------------------- /static/tabbarIcon/system_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/tabbarIcon/system_selected.png -------------------------------------------------------------------------------- /static/timg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/timg.gif -------------------------------------------------------------------------------- /static/timg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/timg2.gif -------------------------------------------------------------------------------- /static/toTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/static/toTop.png -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | Vue.use(Vuex) 4 | 5 | const store = new Vuex.Store({ 6 | state:{ 7 | userName:"", 8 | }, 9 | mutations:{ 10 | CHANGESERNAME(state,username){ 11 | state.userName = username 12 | } 13 | }, 14 | actions:{ 15 | setUserName(context,username){ 16 | context.commit("CHANGESERNAME",username) 17 | } 18 | } 19 | }) 20 | 21 | export default store -------------------------------------------------------------------------------- /uni.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * 这里是uni-app内置的常用样式变量 3 | * 4 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 5 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 6 | * 7 | */ 8 | 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | 15 | /* 颜色变量 */ 16 | 17 | /* 行为相关颜色 */ 18 | $uni-color-primary: #007aff; 19 | $uni-color-success: #4cd964; 20 | $uni-color-warning: #f0ad4e; 21 | $uni-color-error: #dd524d; 22 | 23 | /* 文字基本颜色 */ 24 | $uni-text-color:#333;//基本色 25 | $uni-text-color-inverse:#fff;//反色 26 | $uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息 27 | $uni-text-color-placeholder: #808080; 28 | $uni-text-color-disable:#c0c0c0; 29 | 30 | /* 背景颜色 */ 31 | $uni-bg-color:#ffffff; 32 | $uni-bg-color-grey:#f8f8f8; 33 | $uni-bg-color-hover:#f1f1f1;//点击状态颜色 34 | $uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色 35 | 36 | /* 边框颜色 */ 37 | $uni-border-color:#c8c7cc; 38 | 39 | /* 尺寸变量 */ 40 | 41 | /* 文字尺寸 */ 42 | $uni-font-size-sm:24upx; 43 | $uni-font-size-base:28upx; 44 | $uni-font-size-lg:32upx; 45 | 46 | /* 图片尺寸 */ 47 | $uni-img-size-sm:40upx; 48 | $uni-img-size-base:52upx; 49 | $uni-img-size-lg:80upx; 50 | 51 | /* Border Radius */ 52 | $uni-border-radius-sm: 4upx; 53 | $uni-border-radius-base: 6upx; 54 | $uni-border-radius-lg: 12upx; 55 | $uni-border-radius-circle: 50%; 56 | 57 | /* 水平间距 */ 58 | $uni-spacing-row-sm: 10px; 59 | $uni-spacing-row-base: 20upx; 60 | $uni-spacing-row-lg: 30upx; 61 | 62 | /* 垂直间距 */ 63 | $uni-spacing-col-sm: 8upx; 64 | $uni-spacing-col-base: 16upx; 65 | $uni-spacing-col-lg: 24upx; 66 | 67 | /* 透明度 */ 68 | $uni-opacity-disabled: 0.3; // 组件禁用态的透明度 69 | 70 | /* 文章场景相关 */ 71 | $uni-color-title: #2C405A; // 文章标题颜色 72 | $uni-font-size-title:40upx; 73 | $uni-color-subtitle: #555555; // 二级标题颜色 74 | $uni-font-size-subtitle:36upx; 75 | $uni-color-paragraph: #3F536E; // 文章段落颜色 76 | $uni-font-size-paragraph:30upx; -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/common/main.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{"16b4":function(e,t,n){"use strict";(function(e){n("5b49"),n("921b");var t=c(n("66fd")),o=c(n("9189")),u=c(n("bdea")),a=c(n("1e2f")),r=c(n("46d7")),l=c(n("97eb"));function c(e){return e&&e.__esModule?e:{default:e}}function f(e){for(var t=1;t -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/toTop/toTop.wxss: -------------------------------------------------------------------------------- 1 | 2 | .toTop{ 3 | position: fixed; 4 | width: 60px; 5 | height: 60px; 6 | background: #DD524D; 7 | z-index: 55; 8 | bottom: 40px; 9 | right: 15px; 10 | border-radius: 50%; 11 | display: -webkit-box; 12 | display: -webkit-flex; 13 | display: -ms-flexbox; 14 | display: flex; 15 | -webkit-box-pack: center; 16 | -webkit-justify-content: center; 17 | -ms-flex-pack: center; 18 | justify-content: center; 19 | -webkit-box-align: center; 20 | -webkit-align-items: center; 21 | -ms-flex-align: center; 22 | align-items: center; 23 | opacity: .7; 24 | } 25 | .toTop image{ 26 | width: 60%; 27 | height: 60%; 28 | } 29 | 30 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-badge/uni-badge.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-badge/uni-badge"],{"376b":function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u={name:"UniBadge",props:{type:{type:String,default:"default"},inverted:{type:Boolean,default:!1},text:{type:String,default:""},size:{type:String,default:"normal"}},methods:{onClick:function(){this.$emit("click")}}};n.default=u},"376f":function(t,n,e){"use strict";e.r(n);var u=e("376b"),a=e.n(u);for(var i in u)"default"!==i&&function(t){e.d(n,t,function(){return u[t]})}(i);n["default"]=a.a},"51fb":function(t,n,e){},6313:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return a})},c5ac:function(t,n,e){"use strict";var u=e("51fb"),a=e.n(u);a.a},e4ad:function(t,n,e){"use strict";e.r(n);var u=e("6313"),a=e("376f");for(var i in a)"default"!==i&&function(t){e.d(n,t,function(){return a[t]})}(i);e("c5ac");var r=e("2877"),f=Object(r["a"])(a["default"],u["a"],u["b"],!1,null,null,null);n["default"]=f.exports}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-badge/uni-badge-create-component', 4 | { 5 | 'components/uni-badge/uni-badge-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("e4ad")) 7 | }) 8 | }, 9 | [['components/uni-badge/uni-badge-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-badge/uni-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-badge/uni-badge.wxml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-badge/uni-badge.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-badge { 28 | font-family: 'Helvetica Neue', Helvetica, sans-serif; 29 | -webkit-box-sizing: border-box; 30 | box-sizing: border-box; 31 | font-size: 12px; 32 | line-height: 1; 33 | display: inline-block; 34 | padding: 3px 6px; 35 | color: #333; 36 | border-radius: 100px; 37 | background-color: #f1f1f1; 38 | } 39 | .uni-badge.uni-badge-inverted { 40 | padding: 0 5px 0 0; 41 | color: #999; 42 | background-color: transparent; 43 | } 44 | .uni-badge-primary { 45 | color: #fff; 46 | background-color: #007aff; 47 | } 48 | .uni-badge-primary.uni-badge-inverted { 49 | color: #007aff; 50 | background-color: transparent; 51 | } 52 | .uni-badge-success { 53 | color: #fff; 54 | background-color: #4cd964; 55 | } 56 | .uni-badge-success.uni-badge-inverted { 57 | color: #4cd964; 58 | background-color: transparent; 59 | } 60 | .uni-badge-warning { 61 | color: #fff; 62 | background-color: #f0ad4e; 63 | } 64 | .uni-badge-warning.uni-badge-inverted { 65 | color: #f0ad4e; 66 | background-color: transparent; 67 | } 68 | .uni-badge-error { 69 | color: #fff; 70 | background-color: #dd524d; 71 | } 72 | .uni-badge-error.uni-badge-inverted { 73 | color: #dd524d; 74 | background-color: transparent; 75 | } 76 | .uni-badge--small { 77 | -webkit-transform: scale(0.8); 78 | -ms-transform: scale(0.8); 79 | transform: scale(0.8); 80 | -webkit-transform-origin: center center; 81 | -ms-transform-origin: center center; 82 | transform-origin: center center; 83 | } 84 | 85 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-icons/uni-icons.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-icons/uni-icons"],{"0b4d":function(n,t,e){"use strict";var u=function(){var n=this,t=n.$createElement;n._self._c},i=[];e.d(t,"a",function(){return u}),e.d(t,"b",function(){return i})},"4e6d":function(n,t,e){"use strict";e.r(t);var u=e("0b4d"),i=e("6722");for(var r in i)"default"!==r&&function(n){e.d(t,n,function(){return i[n]})}(r);e("6d7d");var c=e("2877"),f=Object(c["a"])(i["default"],u["a"],u["b"],!1,null,null,null);t["default"]=f.exports},6722:function(n,t,e){"use strict";e.r(t);var u=e("fff0"),i=e.n(u);for(var r in u)"default"!==r&&function(n){e.d(t,n,function(){return u[n]})}(r);t["default"]=i.a},"6d7d":function(n,t,e){"use strict";var u=e("dc72"),i=e.n(u);i.a},dc72:function(n,t,e){},fff0:function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={name:"UniIcons",props:{type:{type:String,default:""},color:{type:String,default:"#333333"},size:{type:[Number,String],default:16}},methods:{_onClick:function(){this.$emit("click")}}};t.default=u}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-icons/uni-icons-create-component', 4 | { 5 | 'components/uni-icons/uni-icons-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("4e6d")) 7 | }) 8 | }, 9 | [['components/uni-icons/uni-icons-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-list-item/uni-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-badge": "/components/uni-badge/uni-badge" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-list-item/uni-list-item.wxml: -------------------------------------------------------------------------------- 1 | {{title}}{{note}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-list/uni-list.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-list/uni-list"],{"15fd":function(n,t,e){"use strict";var u=function(){var n=this,t=n.$createElement;n._self._c},a=[];e.d(t,"a",function(){return u}),e.d(t,"b",function(){return a})},8415:function(n,t,e){"use strict";var u=e("ca38"),a=e.n(u);a.a},"8afa":function(n,t,e){"use strict";e.r(t);var u=e("ef9f"),a=e.n(u);for(var f in u)"default"!==f&&function(n){e.d(t,n,function(){return u[n]})}(f);t["default"]=a.a},ca38:function(n,t,e){},e3d8:function(n,t,e){"use strict";e.r(t);var u=e("15fd"),a=e("8afa");for(var f in a)"default"!==f&&function(n){e.d(t,n,function(){return a[n]})}(f);e("8415");var r=e("2877"),i=Object(r["a"])(a["default"],u["a"],u["b"],!1,null,null,null);t["default"]=i.exports},ef9f:function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={name:"UniList"};t.default=u}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-list/uni-list-create-component', 4 | { 5 | 'components/uni-list/uni-list-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("e3d8")) 7 | }) 8 | }, 9 | [['components/uni-list/uni-list-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-list/uni-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-list/uni-list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-list/uni-list.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-list { 28 | background-color: #ffffff; 29 | position: relative; 30 | width: 100%; 31 | display: -webkit-box; 32 | display: -webkit-flex; 33 | display: -ms-flexbox; 34 | display: flex; 35 | -webkit-box-orient: vertical; 36 | -webkit-box-direction: normal; 37 | -webkit-flex-direction: column; 38 | -ms-flex-direction: column; 39 | flex-direction: column; 40 | } 41 | .uni-list:after { 42 | position: absolute; 43 | z-index: 10; 44 | right: 0; 45 | bottom: 0; 46 | left: 0; 47 | height: 1px; 48 | content: ''; 49 | -webkit-transform: scaleY(0.5); 50 | -ms-transform: scaleY(0.5); 51 | transform: scaleY(0.5); 52 | background-color: #c8c7cc; 53 | } 54 | .uni-list:before { 55 | position: absolute; 56 | z-index: 10; 57 | right: 0; 58 | top: 0; 59 | left: 0; 60 | height: 1px; 61 | content: ''; 62 | -webkit-transform: scaleY(0.5); 63 | -ms-transform: scaleY(0.5); 64 | transform: scaleY(0.5); 65 | background-color: #c8c7cc; 66 | } 67 | 68 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-load-more/uni-load-more.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-load-more/uni-load-more"],{"0eb6":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e=t.getSystemInfoSync().platform,o={name:"UniLoadMore",props:{status:{type:String,default:"more"},showIcon:{type:Boolean,default:!0},iconType:{type:String,default:"auto"},color:{type:String,default:"#777777"},contentText:{type:Object,default:function(){return{contentdown:"上拉显示更多",contentrefresh:"正在加载...",contentnomore:"没有更多数据了"}}}},data:function(){return{platform:e}}};n.default=o}).call(this,e("6e42")["default"])},"27ea":function(t,n,e){"use strict";var o=e("6a49"),a=e.n(o);a.a},"39b9":function(t,n,e){"use strict";e.r(n);var o=e("8ab4"),a=e("9f2b");for(var u in a)"default"!==u&&function(t){e.d(n,t,function(){return a[t]})}(u);e("27ea");var r=e("2877"),f=Object(r["a"])(a["default"],o["a"],o["b"],!1,null,null,null);n["default"]=f.exports},"6a49":function(t,n,e){},"8ab4":function(t,n,e){"use strict";var o=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"a",function(){return o}),e.d(n,"b",function(){return a})},"9f2b":function(t,n,e){"use strict";e.r(n);var o=e("0eb6"),a=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,function(){return o[t]})}(u);n["default"]=a.a}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-load-more/uni-load-more-create-component', 4 | { 5 | 'components/uni-load-more/uni-load-more-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("39b9")) 7 | }) 8 | }, 9 | [['components/uni-load-more/uni-load-more-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-load-more/uni-load-more.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-load-more/uni-load-more.wxml: -------------------------------------------------------------------------------- 1 | {{''+(status==='more'?contentText.contentdown:status==='loading'?contentText.contentrefresh:contentText.contentnomore)+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-popup/uni-popup.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-popup/uni-popup"],{"27c6":function(t,n,e){"use strict";var o=function(){var t=this,n=t.$createElement;t._self._c},u=[];e.d(n,"a",function(){return o}),e.d(n,"b",function(){return u})},"28ae":function(t,n,e){},"3da4":function(t,n,e){"use strict";var o=e("28ae"),u=e.n(o);u.a},c80c:function(t,n,e){"use strict";e.r(n);var o=e("de5f"),u=e.n(o);for(var i in o)"default"!==i&&function(t){e.d(n,t,function(){return o[t]})}(i);n["default"]=u.a},de5f:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o={name:"UniPopup",props:{animation:{type:Boolean,default:!0},type:{type:String,default:"center"},custom:{type:Boolean,default:!1},maskClick:{type:Boolean,default:!0},show:{type:Boolean,default:!0}},data:function(){return{ani:"",showPopup:!1}},watch:{show:function(t){t?this.open():this.close()}},created:function(){},methods:{clear:function(){},open:function(){var t=this;this.$emit("change",{show:!0}),this.showPopup=!0,this.$nextTick(function(){setTimeout(function(){t.ani="uni-"+t.type},30)})},close:function(t){var n=this;!this.maskClick&&t||(this.$emit("change",{show:!1}),this.ani="",this.$nextTick(function(){setTimeout(function(){n.showPopup=!1},300)}))}}};n.default=o},df39:function(t,n,e){"use strict";e.r(n);var o=e("27c6"),u=e("c80c");for(var i in u)"default"!==i&&function(t){e.d(n,t,function(){return u[t]})}(i);e("3da4");var a=e("2877"),c=Object(a["a"])(u["default"],o["a"],o["b"],!1,null,null,null);n["default"]=c.exports}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-popup/uni-popup-create-component', 4 | { 5 | 'components/uni-popup/uni-popup-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("df39")) 7 | }) 8 | }, 9 | [['components/uni-popup/uni-popup-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-popup/uni-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-popup/uni-popup.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/aboutA/aboutA.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/aboutA/aboutA"],{"07ed":function(t,n,e){},1035:function(t,n,e){"use strict";var u=e("07ed"),r=e.n(u);r.a},"145f":function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},r=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return r})},3513:function(t,n,e){"use strict";e.r(n);var u=e("45c7"),r=e.n(u);for(var a in u)"default"!==a&&function(t){e.d(n,t,function(){return u[t]})}(a);n["default"]=r.a},"45c7":function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u={data:function(){return{}},methods:{}};n.default=u},7745:function(t,n,e){"use strict";e.r(n);var u=e("145f"),r=e("3513");for(var a in r)"default"!==a&&function(t){e.d(n,t,function(){return r[t]})}(a);e("1035");var o=e("2877"),c=Object(o["a"])(r["default"],u["a"],u["b"],!1,null,null,null);n["default"]=c.exports},d1e0:function(t,n,e){"use strict";(function(t){e("5b49"),e("921b");u(e("66fd"));var n=u(e("7745"));function u(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("6e42")["createPage"])}},[["d1e0","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/aboutA/aboutA.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于作者", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/aboutA/aboutA.wxml: -------------------------------------------------------------------------------- 1 | 基于玩安卓api与uniapp开发安卓平台玩安卓客户端QQ:572410049邮箱:572410049@qq.comgithub:https://github.com/Mstian本项目仅作学习使用,不得做商业用途 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/aboutA/aboutA.wxss: -------------------------------------------------------------------------------- 1 | 2 | .wrap{ 3 | height: 100vh; 4 | background: #efefef; 5 | display: -webkit-box; 6 | display: -webkit-flex; 7 | display: -ms-flexbox; 8 | display: flex; 9 | -webkit-box-orient: vertical; 10 | -webkit-box-direction: normal; 11 | -webkit-flex-direction: column; 12 | -ms-flex-direction: column; 13 | flex-direction: column; 14 | -webkit-justify-content: space-around; 15 | -ms-flex-pack: distribute; 16 | justify-content: space-around; 17 | -webkit-box-align: center; 18 | -webkit-align-items: center; 19 | -ms-flex-align: center; 20 | align-items: center; 21 | padding-bottom: 50px; 22 | color: #333; 23 | } 24 | .txt{ 25 | padding: 0 25px; 26 | text-align: center; 27 | font-size: 48rpx; 28 | } 29 | .top{ 30 | width: 100px; 31 | height: 100px; 32 | border-radius: 50%; 33 | overflow: hidden; 34 | margin: 0 auto; 35 | margin-top: 50px; 36 | } 37 | .top image{ 38 | width: 100%; 39 | height: 100%; 40 | } 41 | 42 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/article_detail/article_detail.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/article_detail/article_detail"],{"26c3":function(t,e,n){"use strict";n.r(e);var u=n("b231"),r=n("3084");for(var a in r)"default"!==a&&function(t){n.d(e,t,function(){return r[t]})}(a);var o=n("2877"),c=Object(o["a"])(r["default"],u["a"],u["b"],!1,null,null,null);e["default"]=c.exports},"2a3d":function(t,e,n){"use strict";(function(t){n("5b49"),n("921b");u(n("66fd"));var e=u(n("26c3"));function u(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("6e42")["createPage"])},3084:function(t,e,n){"use strict";n.r(e);var u=n("789b"),r=n.n(u);for(var a in u)"default"!==a&&function(t){n.d(e,t,function(){return u[t]})}(a);e["default"]=r.a},"789b":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u={data:function(){return{webviewStyles:{progress:{color:"#f78515"}},url:""}},methods:{},onLoad:function(t){this.url=t.url}};e.default=u},b231:function(t,e,n){"use strict";var u=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"a",function(){return u}),n.d(e,"b",function(){return r})}},[["2a3d","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/article_detail/article_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/article_detail/article_detail.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/collectList.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "pullToRefresh": { 4 | "support": true, 5 | "color": "#DD524D" 6 | }, 7 | "usingComponents": { 8 | "uni-load-more": "/components/uni-load-more/uni-load-more", 9 | "circle": "/pages/collectList/item_circle", 10 | "pic": "/pages/collectList/item_pic" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/collectList.wxml: -------------------------------------------------------------------------------- 1 | 暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/collectList.wxss: -------------------------------------------------------------------------------- 1 | 2 | .search{ 3 | background: #eee; 4 | padding-bottom: 5px; 5 | } 6 | .wrap{ 7 | background: #fff; 8 | } 9 | .hover{ 10 | background: #eee; 11 | } 12 | .nodata{ 13 | color: #aaa; 14 | font-size: 14px; 15 | text-align: center; 16 | line-height: 90px; 17 | } 18 | 19 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/item_circle.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/item_circle.wxml: -------------------------------------------------------------------------------- 1 | {{''+dataState.title+''}}{{''+(dataState.niceDate?dataState.niceDate:'未知')+''}}{{''+(dataState.author?dataState.author:'未知')+''}}{{''+dataState.chapterName+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/item_circle.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle { 3 | padding: 10px 10px; 4 | width: 100%; 5 | /* background: #fff; */ 6 | display: -webkit-box; 7 | display: -webkit-flex; 8 | display: -ms-flexbox; 9 | display: flex; 10 | -webkit-box-pack: justify; 11 | -webkit-justify-content: space-between; 12 | -ms-flex-pack: justify; 13 | justify-content: space-between; 14 | height: 80px; 15 | 16 | margin-bottom: 5px; 17 | } 18 | .left { 19 | 20 | -webkit-box-flex: 1; 21 | 22 | -webkit-flex: 1; 23 | 24 | -ms-flex: 1; 25 | 26 | flex: 1; 27 | display: -webkit-box; 28 | display: -webkit-flex; 29 | display: -ms-flexbox; 30 | display: flex; 31 | -webkit-box-align: start; 32 | -webkit-align-items: flex-start; 33 | -ms-flex-align: start; 34 | align-items: flex-start; 35 | -webkit-justify-content: space-around; 36 | -ms-flex-pack: distribute; 37 | justify-content: space-around; 38 | -webkit-box-orient: vertical; 39 | -webkit-box-direction: normal; 40 | -webkit-flex-direction: column; 41 | -ms-flex-direction: column; 42 | flex-direction: column; 43 | } 44 | .title { 45 | width: 500rpx; 46 | overflow: hidden; 47 | -o-text-overflow: ellipsis; 48 | text-overflow: ellipsis; 49 | white-space: nowrap; 50 | font-size: 16px; 51 | color: #333; 52 | } 53 | .info { 54 | font-size: 14px; 55 | color: #999; 56 | } 57 | .info text { 58 | margin-right: 10px; 59 | } 60 | .right { 61 | width: 60px; 62 | height: 60px; 63 | background: #4CD964; 64 | border-radius: 50%; 65 | line-height: 60px; 66 | text-align: center; 67 | font-size: 12px; 68 | color: #fff; 69 | overflow: hidden; 70 | white-space: nowrap; 71 | -o-text-overflow: ellipsis; 72 | text-overflow: ellipsis; 73 | } 74 | .collec_true { 75 | color: #DD524D; 76 | font-size: 16px; 77 | } 78 | .collect_status { 79 | color: #999999; 80 | font-size: 16px; 81 | } 82 | 83 | 84 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/item_pic.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/collectList/item_pic"],{2739:function(t,n,e){"use strict";var o=e("426b"),a=e.n(o);a.a},3884:function(t,n,e){"use strict";e.r(n);var o=e("7225"),a=e.n(o);for(var c in o)"default"!==c&&function(t){e.d(n,t,function(){return o[t]})}(c);n["default"]=a.a},"3c3f":function(t,n,e){"use strict";var o=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"a",function(){return o}),e.d(n,"b",function(){return a})},"426b":function(t,n,e){},7225:function(t,n,e){"use strict";(function(t,e){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o={props:{dataItem:{type:Object,default:function(){return{}}}},data:function(){return{}},methods:{collect:function(n,o,a){n.stopPropagation(),this.$ajax("https://www.wanandroid.com/lg/uncollect/"+o+"/json?originId="+a,{},"POST",function(n){console.log(t(n,"取消"," at pages\\collectList\\item_pic.vue:47")),0==n.errorCode&&e.showToast({title:"取消收藏",duration:2e3,position:"bottom"})})}},onLoad:function(){console.log(t("pic",this.dataItem," at pages\\collectList\\item_pic.vue:59"))}};n.default=o}).call(this,e("0de9")["default"],e("6e42")["default"])},d882:function(t,n,e){"use strict";e.r(n);var o=e("3c3f"),a=e("3884");for(var c in a)"default"!==c&&function(t){e.d(n,t,function(){return a[t]})}(c);e("2739");var i=e("2877"),u=Object(i["a"])(a["default"],o["a"],o["b"],!1,null,null,null);n["default"]=u.exports}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'pages/collectList/item_pic-create-component', 4 | { 5 | 'pages/collectList/item_pic-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("d882")) 7 | }) 8 | }, 9 | [['pages/collectList/item_pic-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/item_pic.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/item_pic.wxml: -------------------------------------------------------------------------------- 1 | {{''+dataItem.title+''}}{{''+dataItem.niceDate+''}}{{''+dataItem.author+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/collectList/item_pic.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle{ 3 | padding: 10px 10px; 4 | width: 100%; 5 | 6 | display: -webkit-box; 7 | 8 | display: -webkit-flex; 9 | 10 | display: -ms-flexbox; 11 | 12 | display: flex; 13 | -webkit-box-pack: justify; 14 | -webkit-justify-content: space-between; 15 | -ms-flex-pack: justify; 16 | justify-content: space-between; 17 | height: 120px; 18 | margin-bottom: 5px; 19 | /* background: #007AFF; */ 20 | } 21 | .left{ 22 | 23 | -webkit-box-flex: 1; 24 | 25 | -webkit-flex: 1; 26 | 27 | -ms-flex: 1; 28 | 29 | flex: 1; 30 | display: -webkit-box; 31 | display: -webkit-flex; 32 | display: -ms-flexbox; 33 | display: flex; 34 | -webkit-box-align: start; 35 | -webkit-align-items: flex-start; 36 | -ms-flex-align: start; 37 | align-items: flex-start; 38 | -webkit-justify-content: space-around; 39 | -ms-flex-pack: distribute; 40 | justify-content: space-around; 41 | -webkit-box-orient: vertical; 42 | -webkit-box-direction: normal; 43 | -webkit-flex-direction: column; 44 | -ms-flex-direction: column; 45 | flex-direction: column; 46 | } 47 | .title{ 48 | width: 500rpx; 49 | overflow:hidden; 50 | -o-text-overflow:ellipsis; 51 | text-overflow:ellipsis; 52 | white-space:nowrap; 53 | font-size: 16px; 54 | color: #333; 55 | } 56 | .des{ 57 | width: 500rpx; 58 | overflow:hidden; 59 | -o-text-overflow:ellipsis; 60 | text-overflow:ellipsis; 61 | white-space:nowrap; 62 | font-size: 14px; 63 | color: #666; 64 | } 65 | .info{ 66 | font-size: 14px; 67 | color: #999; 68 | } 69 | .info text{ 70 | margin-right: 10px; 71 | } 72 | .right{ 73 | width: 70px; 74 | height: 100px; 75 | /* background: #4CD964; */ 76 | display: -webkit-box; 77 | display: -webkit-flex; 78 | display: -ms-flexbox; 79 | display: flex; 80 | } 81 | .right image{ 82 | -webkit-box-flex: 1; 83 | -webkit-flex: 1; 84 | -ms-flex: 1; 85 | flex: 1; 86 | width: 100%; 87 | height: 100%; 88 | } 89 | .collect_status { 90 | font-size: 16px; 91 | } 92 | .collec_true { 93 | color: #DD524D; 94 | font-size: 16px; 95 | } 96 | 97 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/home/home.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "enablePullDownRefresh": true, 4 | "pullToRefresh": { 5 | "support": true, 6 | "color": "#DD524D", 7 | "offset": "70px" 8 | }, 9 | "usingComponents": { 10 | "uni-load-more": "/components/uni-load-more/uni-load-more", 11 | "backtop": "/components/toTop/toTop" 12 | } 13 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/home/home.wxml: -------------------------------------------------------------------------------- 1 | 玩安卓{{nowIndex+"/"+bannerArr.length}}{{item.title}}{{''+(item.niceDate?item.niceDate:'')+''}}{{''+(item.shareUser?item.shareUser:'未知')+''}}{{item.superChapterName?item.superChapterName:'暂未分类'}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/info/info.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/info/info"],{4079:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={data:function(){return{info:"",latitude:39.909,longitude:116.39742,covers:[]}},methods:{getPhoneInfo:function(){var n=this;t.getSystemInfo({success:function(t){n.info=t},fail:function(){},complete:function(){}})},getLocation:function(){var n=this;t.getLocation({type:"gcj02",success:function(t){n.latitude=t.latitude,n.longitude=t.longitude,n.covers.push({latitude:t.latitude,longitude:t.longitude,iconPath:"../../static/location.png",title:"我的位置"})}})},toMap:function(){var n=this;t.openLocation({latitude:n.latitude,longitude:n.longitude,success:function(){}})}},onReady:function(){this.getPhoneInfo(),this.getLocation()},onLoad:function(){}};n.default=e}).call(this,e("6e42")["default"])},"5e04":function(t,n,e){"use strict";e.r(n);var o=e("626a"),u=e("9abc");for(var i in u)"default"!==i&&function(t){e.d(n,t,function(){return u[t]})}(i);e("b05c");var c=e("2877"),a=Object(c["a"])(u["default"],o["a"],o["b"],!1,null,null,null);n["default"]=a.exports},"626a":function(t,n,e){"use strict";var o=function(){var t=this,n=t.$createElement;t._self._c},u=[];e.d(n,"a",function(){return o}),e.d(n,"b",function(){return u})},"9abc":function(t,n,e){"use strict";e.r(n);var o=e("4079"),u=e.n(o);for(var i in o)"default"!==i&&function(t){e.d(n,t,function(){return o[t]})}(i);n["default"]=u.a},b05c:function(t,n,e){"use strict";var o=e("b716"),u=e.n(o);u.a},b716:function(t,n,e){},bcb7:function(t,n,e){"use strict";(function(t){e("5b49"),e("921b");o(e("66fd"));var n=o(e("5e04"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("6e42")["createPage"])}},[["bcb7","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/info/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/info/info.wxml: -------------------------------------------------------------------------------- 1 | 我的位置在应用中打开手机信息手机品牌:{{info.brand}}手机型号:{{info.model}}设备像素比:{{info.pixelRatio}}屏幕宽度:{{info.screenWidth}}屏幕高度:{{info.screenHeight}}可使用窗口宽度:{{info.windowWidth}}可使用窗口高度:{{info.windowHeight}}语言:{{info.language}}操作系统版本:{{info.system}}客户端平台:{{info.platform}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/info/info.wxss: -------------------------------------------------------------------------------- 1 | 2 | view { 3 | text-align: center; 4 | line-height: 35px; 5 | color: #333; 6 | } 7 | .line { 8 | width: 100%; 9 | height: 2px; 10 | background: #EEEEEE; 11 | margin: 20px 0; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/login/login.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/login/login"],{1381:function(t,e,n){"use strict";n.r(e);var o=n("a035"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,function(){return o[t]})}(i);e["default"]=a.a},"4f64":function(t,e,n){"use strict";var o=function(){var t=this,e=t.$createElement;t._self._c;t._isMounted||(t.e0=function(e){return t.$tools.closeWin()})},a=[];n.d(e,"a",function(){return o}),n.d(e,"b",function(){return a})},"6d8f":function(t,e,n){},a035:function(t,e,n){"use strict";(function(t,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o={data:function(){return{userName:"",passWord:""}},methods:{to_register:function(){t.navigateTo({url:"../register/register"})},loginNow:function(){var e=this;console.log(n(1," at pages\\login\\login.vue:44")),this.userName&&this.passWord?this.$ajax(this.$urls._url_login+"?username="+this.userName+"&password="+this.passWord,{},"POST",function(o){0==o.errorCode&&(e.$store.dispatch("setUserName",o.data.nickname),t.setStorage({key:"userName",data:o.data.nickname,success:function(){console.log(n("success"," at pages\\login\\login.vue:63"))}}),t.$emit("login"),t.navigateBack({delta:2}))},function(t){console.log(n(t,"err"," at pages\\login\\login.vue:76"))},function(e){-1==e.data.errorCode&&t.showToast({position:"bottom",icon:"none",title:e.data.errorMsg,duration:2e3})}):t.showToast({position:"bottom",icon:"none",title:"请输入用户名和密码",duration:2e3})}}};e.default=o}).call(this,n("6e42")["default"],n("0de9")["default"])},bae9:function(t,e,n){"use strict";n.r(e);var o=n("4f64"),a=n("1381");for(var i in a)"default"!==i&&function(t){n.d(e,t,function(){return a[t]})}(i);n("f49c");var r=n("2877"),s=Object(r["a"])(a["default"],o["a"],o["b"],!1,null,null,null);e["default"]=s.exports},e17f:function(t,e,n){"use strict";(function(t){n("5b49"),n("921b");o(n("66fd"));var e=o(n("bae9"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("6e42")["createPage"])},f49c:function(t,e,n){"use strict";var o=n("6d8f"),a=n.n(o);a.a}},[["e17f","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "softinputMode": "adjustPan", 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/login/login.wxml: -------------------------------------------------------------------------------- 1 | 登录用户:密码:立即登录没有账号?立即注册 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/mine/mine.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "usingComponents": { 4 | "uni-list": "/components/uni-list/uni-list", 5 | "uni-list-item": "/components/uni-list-item/uni-list-item", 6 | "uni-popup": "/components/uni-popup/uni-popup" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/mine/mine.wxss: -------------------------------------------------------------------------------- 1 | /* 2 | */ 3 | .topbar{ 4 | height: 250px; 5 | background: #DD524D; 6 | text-align: center; 7 | position: relative; 8 | padding-top: 70px; 9 | } 10 | .user_avatar{ 11 | width: 100px; 12 | height: 100px; 13 | border-radius: 50%; 14 | margin: 0 auto; 15 | } 16 | .user_name{ 17 | margin: 20px; 18 | color: #fff; 19 | font-size: 20px; 20 | } 21 | .close_btn{ 22 | position: absolute; 23 | top: 70px; 24 | right: 30px; 25 | font-size: 24px; 26 | color: #fff; 27 | } 28 | .themeList{ 29 | height: 300px; 30 | width: 250px; 31 | overflow: scroll; 32 | } 33 | .themeList view{ 34 | width: 50%; 35 | height: 45px; 36 | background: #999999; 37 | text-align: center; 38 | line-height: 45px; 39 | border-radius: 30px; 40 | margin: 5px auto; 41 | } 42 | .loginbtn{ 43 | color: #fff; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/nav/nav.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/nav/nav"],{"094d":function(t,n,a){"use strict";var e=a("ffab"),u=a.n(e);u.a},"1a14":function(t,n,a){"use strict";a.r(n);var e=a("d2c6"),u=a("9f27");for(var i in u)"default"!==i&&function(t){a.d(n,t,function(){return u[t]})}(i);a("094d");var c=a("2877"),f=Object(c["a"])(u["default"],e["a"],e["b"],!1,null,null,null);n["default"]=f.exports},"1fa1":function(t,n,a){"use strict";(function(t){a("5b49"),a("921b");e(a("66fd"));var n=e(a("1a14"));function e(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,a("6e42")["createPage"])},"7fcd":function(t,n,a){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var a={data:function(){return{scrollInto:"tab0",tabList:[],activeIndex:0}},methods:{tapTab:function(t){this.activeIndex=t,this.scrollInto="tab"+t},scrollleft:function(t){},getnavData:function(){var t=this;this.$ajax(this.$urls._url_nav,"","GET",function(n){var a=n.data;t.tabList=a})},toDetail:function(n){t.navigateTo({url:"../article_detail/article_detail?url="+n})}},mounted:function(){this.getnavData()}};n.default=a}).call(this,a("6e42")["default"])},"9f27":function(t,n,a){"use strict";a.r(n);var e=a("7fcd"),u=a.n(e);for(var i in e)"default"!==i&&function(t){a.d(n,t,function(){return e[t]})}(i);n["default"]=u.a},d2c6:function(t,n,a){"use strict";var e=function(){var t=this,n=t.$createElement;t._self._c},u=[];a.d(n,"a",function(){return e}),a.d(n,"b",function(){return u})},ffab:function(t,n,a){}},[["1fa1","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/nav/nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "导航", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/nav/nav.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.name+''}}{{''+item.name+''}}{{''+tabItem.title+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/nav/nav.wxss: -------------------------------------------------------------------------------- 1 | 2 | .nav{ 3 | display: -webkit-box; 4 | display: -webkit-flex; 5 | display: -ms-flexbox; 6 | display: flex; 7 | -webkit-box-pack: justify; 8 | -webkit-justify-content: space-between; 9 | -ms-flex-pack: justify; 10 | justify-content: space-between; 11 | -webkit-box-align: start; 12 | -webkit-align-items: flex-start; 13 | -ms-flex-align: start; 14 | align-items: flex-start; 15 | } 16 | .left{ 17 | background: #EEEEEE; 18 | width: 30vw; 19 | } 20 | .right{ 21 | background: #EEEEEE; 22 | -webkit-box-flex: 1; 23 | -webkit-flex: 1; 24 | -ms-flex: 1; 25 | flex: 1; 26 | } 27 | .left scroll-view{ 28 | } 29 | .scrollleft{ 30 | height: 100vh; 31 | } 32 | .left .tabs{ 33 | height: 35px; 34 | background:#fefefe; 35 | text-align: center; 36 | line-height: 35px; 37 | font-size: 28rpx; 38 | color: #333; 39 | } 40 | .right scroll-view{ 41 | height: 100vh; 42 | } 43 | .left .tabs.active{ 44 | color: #fff; 45 | background: #DD524D; 46 | } 47 | .contents{ 48 | width: 90%; 49 | padding: 5px; 50 | background: #fff; 51 | margin: 5px auto; 52 | border-radius: 4px; 53 | } 54 | .content_title{ 55 | text-align: center; 56 | font-size: 32rpx; 57 | font-weight: bold; 58 | } 59 | .content_main{ 60 | width: 100%; 61 | padding: 5px; 62 | /* background: #F24544; */ 63 | display: -webkit-box; 64 | display: -webkit-flex; 65 | display: -ms-flexbox; 66 | display: flex; 67 | -webkit-box-pack: start; 68 | -webkit-justify-content: flex-start; 69 | -ms-flex-pack: start; 70 | justify-content: flex-start; 71 | -webkit-box-align: center; 72 | -webkit-align-items: center; 73 | -ms-flex-align: center; 74 | align-items: center; 75 | -webkit-flex-wrap: wrap; 76 | -ms-flex-wrap: wrap; 77 | flex-wrap: wrap; 78 | } 79 | .content_main view{ 80 | font-size: 30rpx; 81 | padding: 2px 8px; 82 | border-radius: 999rpx; 83 | background: #DD524D; 84 | color: #fff; 85 | margin: 4px 3px; 86 | -webkit-box-shadow: 1px 1px 1px #aaa; 87 | box-shadow: 1px 1px 1px #aaa; 88 | } 89 | .hover_class{ 90 | opacity: 0.8; 91 | } 92 | 93 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "注册", 3 | "navigationBarBackgroundColor": "#DD524D", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/register/register.wxml: -------------------------------------------------------------------------------- 1 | 注册用户:密码:确认密码:立即注册已有账号?去登录 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/search/search.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/search/search"],{"063c":function(t,e,a){"use strict";a.r(e);var n=a("4223"),r=a("5a5e");for(var i in r)"default"!==i&&function(t){a.d(e,t,function(){return r[t]})}(i);a("ccea");var s=a("2877"),o=Object(s["a"])(r["default"],n["a"],n["b"],!1,null,null,null);e["default"]=o.exports},"16f3":function(t,e,a){"use strict";(function(t){a("5b49"),a("921b");n(a("66fd"));var e=n(a("063c"));function n(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,a("6e42")["createPage"])},4223:function(t,e,a){"use strict";var n=function(){var t=this,e=t.$createElement;t._self._c},r=[];a.d(e,"a",function(){return n}),a.d(e,"b",function(){return r})},"5a5e":function(t,e,a){"use strict";a.r(e);var n=a("5ee9"),r=a.n(n);for(var i in n)"default"!==i&&function(t){a.d(e,t,function(){return n[t]})}(i);e["default"]=r.a},"5ee9":function(t,e,a){"use strict";(function(t,a){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={data:function(){return{hotKeyList:[],historyList:[]}},methods:{toSearchList:function(e){t.navigateTo({url:"../searchList/searchList?k="+e})},clearHis:function(){t.clearStorage(),this.historyList=[]}},onReady:function(){var e=this,n=this;this.$ajax(this.$urls._url_hotkey,{},"GET",function(t){var a=t.data;e.hotKeyList=a}),t.getStorage({key:"history",complete:function(t){console.log(a(t," at pages\\search\\search.vue:61")),t.data&&(n.historyList=JSON.parse(t.data))}})},onNavigationBarSearchInputConfirmed:function(e){var a=this;t.getStorage({key:"history",complete:function(n){if(n.data){var r=JSON.parse(n.data);r.push(e.text),a.historyList=r,t.setStorage({key:"history",data:JSON.stringify(r)})}else{r=[];r.push(e.text),a.historyList=r,t.setStorage({key:"history",data:JSON.stringify(r)})}}}),t.navigateTo({url:"../searchList/searchList?k="+e.text})}};e.default=n}).call(this,a("6e42")["default"],a("0de9")["default"])},"6e8b":function(t,e,a){},ccea:function(t,e,a){"use strict";var n=a("6e8b"),r=a.n(n);r.a}},[["16f3","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "搜索", 3 | "titleNView": { 4 | "backgroundColor": "#DD524D", 5 | "searchInput": { 6 | "autoFocus": true, 7 | "backgroundColor": "#fefefe", 8 | "borderRadius": "6px", 9 | "placeholder": "请输入关键字", 10 | "placeholderColor": "#999", 11 | "disabled": false, 12 | "align": "left" 13 | }, 14 | "buttons": [ 15 | { 16 | "fontSrc": "", 17 | "text": "", 18 | "width": "30px", 19 | "fontSize": "28px", 20 | "color": "transparent", 21 | "background": "transparent" 22 | } 23 | ] 24 | }, 25 | "usingComponents": {} 26 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | 热门搜索{{item.name}}历史搜索{{item}}清除历史 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | 2 | .hot { 3 | padding: 20px; 4 | } 5 | .title { 6 | font-size: 14px; 7 | color: #333; 8 | } 9 | .item { 10 | padding: 2px 8px; 11 | background: #F24544; 12 | border-radius: 4px; 13 | font-size: 14px; 14 | display: inline-block; 15 | color: #fff; 16 | margin: 5px 5px; 17 | } 18 | .his{ 19 | background: #C0C0C0; 20 | } 21 | 22 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_circle.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/searchList/item_circle"],{3046:function(t,n,e){},7136:function(t,n,e){"use strict";e.r(n);var u=e("c7c1"),a=e.n(u);for(var r in u)"default"!==r&&function(t){e.d(n,t,function(){return u[t]})}(r);n["default"]=a.a},a614:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return a})},c7c1:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u={props:{dataItem:{type:Object,default:function(t){return{}}}},data:function(){return{}},methods:{},onLoad:function(){}};n.default=u},f9de:function(t,n,e){"use strict";var u=e("3046"),a=e.n(u);a.a},fa1e:function(t,n,e){"use strict";e.r(n);var u=e("a614"),a=e("7136");for(var r in a)"default"!==r&&function(t){e.d(n,t,function(){return a[t]})}(r);e("f9de");var c=e("2877"),f=Object(c["a"])(a["default"],u["a"],u["b"],!1,null,null,null);n["default"]=f.exports}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'pages/searchList/item_circle-create-component', 4 | { 5 | 'pages/searchList/item_circle-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("fa1e")) 7 | }) 8 | }, 9 | [['pages/searchList/item_circle-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_circle.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_circle.wxml: -------------------------------------------------------------------------------- 1 | {{''+(dataItem.niceDate?dataItem.niceDate:'未知')+''}}{{''+dataItem.author+''}}{{''+dataItem.superChapterName+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_circle.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle{ 3 | padding: 10px 10px; 4 | width: 100%; 5 | /* background: #fff; */ 6 | display: -webkit-box; 7 | display: -webkit-flex; 8 | display: -ms-flexbox; 9 | display: flex; 10 | -webkit-box-pack: justify; 11 | -webkit-justify-content: space-between; 12 | -ms-flex-pack: justify; 13 | justify-content: space-between; 14 | height: 80px; 15 | 16 | margin-bottom: 5px; 17 | } 18 | .left{ 19 | 20 | -webkit-box-flex: 1; 21 | 22 | -webkit-flex: 1; 23 | 24 | -ms-flex: 1; 25 | 26 | flex: 1; 27 | display: -webkit-box; 28 | display: -webkit-flex; 29 | display: -ms-flexbox; 30 | display: flex; 31 | -webkit-box-align: start; 32 | -webkit-align-items: flex-start; 33 | -ms-flex-align: start; 34 | align-items: flex-start; 35 | -webkit-justify-content: space-around; 36 | -ms-flex-pack: distribute; 37 | justify-content: space-around; 38 | -webkit-box-orient: vertical; 39 | -webkit-box-direction: normal; 40 | -webkit-flex-direction: column; 41 | -ms-flex-direction: column; 42 | flex-direction: column; 43 | } 44 | .title{ 45 | width: 500rpx; 46 | overflow:hidden; 47 | -o-text-overflow:ellipsis; 48 | text-overflow:ellipsis; 49 | white-space:nowrap; 50 | font-size: 16px; 51 | color: #333; 52 | } 53 | .info{ 54 | font-size: 14px; 55 | color: #999; 56 | } 57 | .right{ 58 | width: 60px; 59 | height: 60px; 60 | background: #4CD964; 61 | border-radius: 50%; 62 | line-height: 60px; 63 | text-align: center; 64 | font-size: 12px; 65 | color: #fff; 66 | } 67 | 68 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_pic.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/searchList/item_pic"],{3238:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},c=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return c})},"5f7c":function(t,n,e){"use strict";var u=e("f482"),c=e.n(u);c.a},"760c":function(t,n,e){"use strict";e.r(n);var u=e("cbf3"),c=e.n(u);for(var a in u)"default"!==a&&function(t){e.d(n,t,function(){return u[t]})}(a);n["default"]=c.a},bc80:function(t,n,e){"use strict";e.r(n);var u=e("3238"),c=e("760c");for(var a in c)"default"!==a&&function(t){e.d(n,t,function(){return c[t]})}(a);e("5f7c");var r=e("2877"),f=Object(r["a"])(c["default"],u["a"],u["b"],!1,null,null,null);n["default"]=f.exports},cbf3:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={props:{dataItem:{type:Object,default:function(){return{}}}},data:function(){return{}},methods:{},onLoad:function(){console.log(t("pic",this.dataItem," at pages\\searchList\\item_pic.vue:44"))}};n.default=e}).call(this,e("0de9")["default"])},f482:function(t,n,e){}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'pages/searchList/item_pic-create-component', 4 | { 5 | 'pages/searchList/item_pic-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("bc80")) 7 | }) 8 | }, 9 | [['pages/searchList/item_pic-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_pic.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_pic.wxml: -------------------------------------------------------------------------------- 1 | {{''+dataItem.niceDate+''}}{{''+dataItem.author+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/item_pic.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle{ 3 | padding: 10px 10px; 4 | width: 100%; 5 | 6 | display: -webkit-box; 7 | 8 | display: -webkit-flex; 9 | 10 | display: -ms-flexbox; 11 | 12 | display: flex; 13 | -webkit-box-pack: justify; 14 | -webkit-justify-content: space-between; 15 | -ms-flex-pack: justify; 16 | justify-content: space-between; 17 | height: 120px; 18 | margin-bottom: 5px; 19 | /* background: #007AFF; */ 20 | } 21 | .left{ 22 | 23 | -webkit-box-flex: 1; 24 | 25 | -webkit-flex: 1; 26 | 27 | -ms-flex: 1; 28 | 29 | flex: 1; 30 | display: -webkit-box; 31 | display: -webkit-flex; 32 | display: -ms-flexbox; 33 | display: flex; 34 | -webkit-box-align: start; 35 | -webkit-align-items: flex-start; 36 | -ms-flex-align: start; 37 | align-items: flex-start; 38 | -webkit-justify-content: space-around; 39 | -ms-flex-pack: distribute; 40 | justify-content: space-around; 41 | -webkit-box-orient: vertical; 42 | -webkit-box-direction: normal; 43 | -webkit-flex-direction: column; 44 | -ms-flex-direction: column; 45 | flex-direction: column; 46 | } 47 | .title{ 48 | width: 500rpx; 49 | overflow:hidden; 50 | -o-text-overflow:ellipsis; 51 | text-overflow:ellipsis; 52 | white-space:nowrap; 53 | font-size: 16px; 54 | color: #333; 55 | } 56 | .des{ 57 | width: 500rpx; 58 | overflow:hidden; 59 | -o-text-overflow:ellipsis; 60 | text-overflow:ellipsis; 61 | white-space:nowrap; 62 | font-size: 14px; 63 | color: #666; 64 | } 65 | .info{ 66 | font-size: 14px; 67 | color: #999; 68 | } 69 | .right{ 70 | width: 70px; 71 | height: 100px; 72 | /* background: #4CD964; */ 73 | display: -webkit-box; 74 | display: -webkit-flex; 75 | display: -ms-flexbox; 76 | display: flex; 77 | } 78 | .right image{ 79 | -webkit-box-flex: 1; 80 | -webkit-flex: 1; 81 | -ms-flex: 1; 82 | flex: 1; 83 | width: 100%; 84 | height: 100%; 85 | } 86 | 87 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/searchList.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "pullToRefresh": { 4 | "support": true, 5 | "color": "#DD524D" 6 | }, 7 | "usingComponents": { 8 | "uni-load-more": "/components/uni-load-more/uni-load-more", 9 | "circle": "/pages/searchList/item_circle", 10 | "pic": "/pages/searchList/item_pic" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/searchList.wxml: -------------------------------------------------------------------------------- 1 | 暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/searchList/searchList.wxss: -------------------------------------------------------------------------------- 1 | 2 | .search{ 3 | background: #eee; 4 | } 5 | .wrap{ 6 | background: #fff; 7 | } 8 | .hover{ 9 | background: #eee; 10 | } 11 | .nodata{ 12 | color: #aaa; 13 | font-size: 14px; 14 | text-align: center; 15 | line-height: 90px; 16 | } 17 | 18 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/system/system.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/system/system"],{"3a80":function(t,n,a){"use strict";a.r(n);var e=a("98fb"),u=a("8f14");for(var o in u)"default"!==o&&function(t){a.d(n,t,function(){return u[t]})}(o);a("db02");var f=a("2877"),i=Object(f["a"])(u["default"],e["a"],e["b"],!1,null,null,null);n["default"]=i.exports},"3ffd":function(t,n,a){},7509:function(t,n,a){"use strict";(function(t){a("5b49"),a("921b");e(a("66fd"));var n=e(a("3a80"));function e(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,a("6e42")["createPage"])},"8f14":function(t,n,a){"use strict";a.r(n);var e=a("b98f"),u=a.n(e);for(var o in e)"default"!==o&&function(t){a.d(n,t,function(){return e[t]})}(o);n["default"]=u.a},"98fb":function(t,n,a){"use strict";var e=function(){var t=this,n=t.$createElement;t._self._c},u=[];a.d(n,"a",function(){return e}),a.d(n,"b",function(){return u})},b98f:function(t,n,a){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var a={data:function(){return{text:"hello",opacity:1,sysList:[]}},onReady:function(){this.loadData()},methods:{toTabList:function(n){var a=JSON.stringify(n);t.navigateTo({url:"../system_tab/system_tab?item="+encodeURIComponent(a)})},loadData:function(){var t=this;this.$ajax(this.$urls._url_system,"","GET",function(n){n.data&&(t.sysList=n.data)})}},onLoad:function(){},onUnload:function(){}};n.default=a}).call(this,a("6e42")["default"])},db02:function(t,n,a){"use strict";var e=a("3ffd"),u=a.n(e);u.a}},[["7509","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/system/system.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "体系", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/system/system.wxml: -------------------------------------------------------------------------------- 1 | {{item.name}}{{''+subitem.name+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/system/system.wxss: -------------------------------------------------------------------------------- 1 | .wrap{ 2 | background: #F7F7F7; 3 | /* overflow: hidden; */ 4 | } 5 | .contentList{ 6 | background: #fff; 7 | border-radius: 10px; 8 | width: 90%; 9 | margin: 0 auto; 10 | padding: 5px; 11 | margin-top: 10px; 12 | margin-bottom: 10px; 13 | } 14 | .contentList .title{ 15 | color: #333; 16 | font-size: 16px; 17 | } 18 | .content{ 19 | display: -webkit-box; 20 | display: -webkit-flex; 21 | display: -ms-flexbox; 22 | display: flex; 23 | -webkit-flex-wrap: wrap; 24 | -ms-flex-wrap: wrap; 25 | flex-wrap: wrap; 26 | } 27 | .content text{ 28 | font-size: 14px; 29 | color: #FFF; 30 | padding: 4px 10px; 31 | background: skyblue; 32 | border-radius: 999rpx; 33 | margin: 2px; 34 | } 35 | .media-item-hover{ 36 | background-color: #eee; 37 | } 38 | 39 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/website/website.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/website/website"],{"2fc7":function(t,e,n){"use strict";n.r(e);var u=n("6fdf"),i=n.n(u);for(var a in u)"default"!==a&&function(t){n.d(e,t,function(){return u[t]})}(a);e["default"]=i.a},"6fdf":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={data:function(){return{webSiteList:[]}},methods:{getWebSiteList:function(){var t=this;this.$ajax(this.$urls._url_website,{},"GET",function(e){var n=e.data;t.webSiteList=n})},toDetail:function(e){t.navigateTo({url:"../article_detail/article_detail?url="+e})}},onPullDownRefresh:function(){setTimeout(function(){t.stopPullDownRefresh()},2e3)},onReady:function(){t.startPullDownRefresh(),this.getWebSiteList()}};e.default=n}).call(this,n("6e42")["default"])},b883:function(t,e,n){"use strict";var u=n("c286"),i=n.n(u);i.a},c286:function(t,e,n){},c97e:function(t,e,n){"use strict";(function(t){n("5b49"),n("921b");u(n("66fd"));var e=u(n("ee74"));function u(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("6e42")["createPage"])},d118:function(t,e,n){"use strict";var u=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"a",function(){return u}),n.d(e,"b",function(){return i})},ee74:function(t,e,n){"use strict";n.r(e);var u=n("d118"),i=n("2fc7");for(var a in i)"default"!==a&&function(t){n.d(e,t,function(){return i[t]})}(a);n("b883");var r=n("2877"),o=Object(r["a"])(i["default"],u["a"],u["b"],!1,null,null,null);e["default"]=o.exports}},[["c97e","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/website/website.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "常用网站", 3 | "navigationBarBackgroundColor": "#DD524D", 4 | "navigationBarTextStyle": "white", 5 | "enablePullDownRefresh": true, 6 | "pullToRefresh": { 7 | "support": true, 8 | "color": "#DD524D" 9 | }, 10 | "usingComponents": {} 11 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/website/website.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.name+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/website/website.wxss: -------------------------------------------------------------------------------- 1 | 2 | .web{ 3 | display: -webkit-box; 4 | display: -webkit-flex; 5 | display: -ms-flexbox; 6 | display: flex; 7 | -webkit-box-orient: vertical; 8 | -webkit-box-direction: normal; 9 | -webkit-flex-direction: column; 10 | -ms-flex-direction: column; 11 | flex-direction: column; 12 | -webkit-box-align: center; 13 | -webkit-align-items: center; 14 | -ms-flex-align: center; 15 | align-items: center; 16 | padding: 20px 0; 17 | } 18 | .weblist{ 19 | width: 80%; 20 | height: 50px; 21 | background-color: #4CD964; 22 | border-radius: 999rpx; 23 | margin-top: 15px; 24 | font-size: 36rpx; 25 | color: #fff; 26 | text-align: center; 27 | line-height: 50px; 28 | -webkit-box-shadow: 1px 1px 3px #EEEEEE; 29 | box-shadow: 1px 1px 3px #EEEEEE; 30 | } 31 | .hover{ 32 | opacity: 0.8; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniappnvuecompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/__uniappnvuecompiler.js -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/aboutA/aboutA.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"wrap{ height: 100vh; background: #efefef; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding-bottom: 50px; color: #333; }\n.",[1],"txt{ padding: 0 25px; text-align: center; font-size: ",[0,48],"; }\n.",[1],"top{ width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto; margin-top: 50px; }\n.",[1],"top wx-image{ width: 100%; height: 100%; }\n",],undefined,{path:"./pages/aboutA/aboutA.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/aboutA/aboutA.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/article_detail/article_detail.js: -------------------------------------------------------------------------------- 1 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/article_detail/article_detail.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/collectList/collectList.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"search{ background: #eee; padding-bottom: 5px; }\n.",[1],"wrap{ background: #fff; }\n.",[1],"hover{ background: #eee; }\n.",[1],"nodata{ color: #aaa; font-size: 14px; text-align: center; line-height: 90px; }\n",],undefined,{path:"./pages/collectList/collectList.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/collectList/collectList.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/info/info.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["wx-view { text-align: center; line-height: 35px; color: #333; }\n.",[1],"line { width: 100%; height: 2px; background: #EEEEEE; margin: 20px 0; }\n",],undefined,{path:"./pages/info/info.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/info/info.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/mine/mine.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"topbar{ height: 250px; background: #DD524D; text-align: center; position: relative; padding-top: 70px; }\n.",[1],"user_avatar{ width: 100px; height: 100px; border-radius: 50%; margin: 0 auto; }\n.",[1],"user_name{ margin: 20px; color: #fff; font-size: 20px; }\n.",[1],"close_btn{ position: absolute; top: 70px; right: 30px; font-size: 24px; color: #fff; }\n.",[1],"themeList{ height: 300px; width: 250px; overflow: scroll; }\n.",[1],"themeList wx-view{ width: 50%; height: 45px; background: #999999; text-align: center; line-height: 45px; border-radius: 30px; margin: 5px auto; }\n.",[1],"loginbtn{ color: #fff; }\n",],undefined,{path:"./pages/mine/mine.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/mine/mine.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/nav/nav.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"nav{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; }\n.",[1],"left{ background: #EEEEEE; width: 30vw; }\n.",[1],"right{ background: #EEEEEE; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; }\n.",[1],"left wx-scroll-view{ }\n.",[1],"scrollleft{ height: 100vh; }\n.",[1],"left .",[1],"tabs{ height: 35px; background:#fefefe; text-align: center; line-height: 35px; font-size: ",[0,28],"; color: #333; }\n.",[1],"right wx-scroll-view{ height: 100vh; }\n.",[1],"left .",[1],"tabs.",[1],"active{ color: #fff; background: #DD524D; }\n.",[1],"contents{ width: 90%; padding: 5px; background: #fff; margin: 5px auto; border-radius: 4px; }\n.",[1],"content_title{ text-align: center; font-size: ",[0,32],"; font-weight: bold; }\n.",[1],"content_main{ width: 100%; padding: 5px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"content_main wx-view{ font-size: ",[0,30],"; padding: 2px 8px; border-radius: ",[0,999],"; background: #DD524D; color: #fff; margin: 4px 3px; -webkit-box-shadow: 1px 1px 1px #aaa; box-shadow: 1px 1px 1px #aaa; }\n.",[1],"hover_class{ opacity: 0.8; }\n",],undefined,{path:"./pages/nav/nav.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/nav/nav.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/search/search.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"hot { padding: 20px; }\n.",[1],"title { font-size: 14px; color: #333; }\n.",[1],"item { padding: 2px 8px; background: #F24544; border-radius: 4px; font-size: 14px; display: inline-block; color: #fff; margin: 5px 5px; }\n.",[1],"his{ background: #C0C0C0; }\n",],undefined,{path:"./pages/search/search.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/search/search.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/searchList/searchList.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"search{ background: #eee; }\n.",[1],"wrap{ background: #fff; }\n.",[1],"hover{ background: #eee; }\n.",[1],"nodata{ color: #aaa; font-size: 14px; text-align: center; line-height: 90px; }\n",],undefined,{path:"./pages/searchList/searchList.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/searchList/searchList.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/system/system.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"wrap{ background: #F7F7F7; }\n.",[1],"contentList{ background: #fff; border-radius: 10px; width: 90%; margin: 0 auto; padding: 5px; margin-top: 10px; margin-bottom: 10px; }\n.",[1],"contentList .",[1],"title{ color: #333; font-size: 16px; }\n.",[1],"content{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"content wx-text{ font-size: 14px; color: #FFF; padding: 4px 10px; background: skyblue; border-radius: ",[0,999],"; margin: 2px; }\n.",[1],"media-item-hover{ background-color: #eee; }\n",],undefined,{path:"./pages/system/system.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/system/system.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/website/website.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"web{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding: 20px 0; }\n.",[1],"weblist{ width: 80%; height: 50px; background-color: #4CD964; border-radius: ",[0,999],"; margin-top: 15px; font-size: ",[0,36],"; color: #fff; text-align: center; line-height: 50px; -webkit-box-shadow: 1px 1px 3px #EEEEEE; box-shadow: 1px 1px 3px #EEEEEE; }\n.",[1],"hover{ opacity: 0.8; }\n",],undefined,{path:"./pages/website/website.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/website/website.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/app.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/applogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/applogo.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/avatar.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/location.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/login_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/login_icon.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/start.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/account.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/account_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/account_selected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/home.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/home_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/home_selected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/nav.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/nav_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/nav_selected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/project.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/project_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/project_selected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/system.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tabbarIcon/system_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/tabbarIcon/system_selected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/toTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/build/app-plus/static/toTop.png -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/toTop/toTop.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/toTop/toTop.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/toTop/toTop.wxss: -------------------------------------------------------------------------------- 1 | 2 | .toTop{ 3 | position: fixed; 4 | width: 60px; 5 | height: 60px; 6 | background: #DD524D; 7 | z-index: 55; 8 | bottom: 40px; 9 | right: 15px; 10 | border-radius: 50%; 11 | display: -webkit-box; 12 | display: -webkit-flex; 13 | display: -ms-flexbox; 14 | display: flex; 15 | -webkit-box-pack: center; 16 | -webkit-justify-content: center; 17 | -ms-flex-pack: center; 18 | justify-content: center; 19 | -webkit-box-align: center; 20 | -webkit-align-items: center; 21 | -ms-flex-align: center; 22 | align-items: center; 23 | opacity: .7; 24 | } 25 | .toTop image{ 26 | width: 60%; 27 | height: 60%; 28 | } 29 | 30 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-badge/uni-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-badge/uni-badge.wxml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-badge/uni-badge.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-badge { 28 | font-family: 'Helvetica Neue', Helvetica, sans-serif; 29 | -webkit-box-sizing: border-box; 30 | box-sizing: border-box; 31 | font-size: 12px; 32 | line-height: 1; 33 | display: inline-block; 34 | padding: 3px 6px; 35 | color: #333; 36 | border-radius: 100px; 37 | background-color: #f1f1f1; 38 | } 39 | .uni-badge.uni-badge-inverted { 40 | padding: 0 5px 0 0; 41 | color: #999; 42 | background-color: transparent; 43 | } 44 | .uni-badge-primary { 45 | color: #fff; 46 | background-color: #007aff; 47 | } 48 | .uni-badge-primary.uni-badge-inverted { 49 | color: #007aff; 50 | background-color: transparent; 51 | } 52 | .uni-badge-success { 53 | color: #fff; 54 | background-color: #4cd964; 55 | } 56 | .uni-badge-success.uni-badge-inverted { 57 | color: #4cd964; 58 | background-color: transparent; 59 | } 60 | .uni-badge-warning { 61 | color: #fff; 62 | background-color: #f0ad4e; 63 | } 64 | .uni-badge-warning.uni-badge-inverted { 65 | color: #f0ad4e; 66 | background-color: transparent; 67 | } 68 | .uni-badge-error { 69 | color: #fff; 70 | background-color: #dd524d; 71 | } 72 | .uni-badge-error.uni-badge-inverted { 73 | color: #dd524d; 74 | background-color: transparent; 75 | } 76 | .uni-badge--small { 77 | -webkit-transform: scale(0.8); 78 | -ms-transform: scale(0.8); 79 | transform: scale(0.8); 80 | -webkit-transform-origin: center center; 81 | -ms-transform-origin: center center; 82 | transform-origin: center center; 83 | } 84 | 85 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list-item/uni-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-badge": "/components/uni-badge/uni-badge" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list-item/uni-list-item.wxml: -------------------------------------------------------------------------------- 1 | {{title}}{{note}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-list/uni-list.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-list { 28 | background-color: #ffffff; 29 | position: relative; 30 | width: 100%; 31 | display: -webkit-box; 32 | display: -webkit-flex; 33 | display: -ms-flexbox; 34 | display: flex; 35 | -webkit-box-orient: vertical; 36 | -webkit-box-direction: normal; 37 | -webkit-flex-direction: column; 38 | -ms-flex-direction: column; 39 | flex-direction: column; 40 | } 41 | .uni-list:after { 42 | position: absolute; 43 | z-index: 10; 44 | right: 0; 45 | bottom: 0; 46 | left: 0; 47 | height: 1px; 48 | content: ''; 49 | -webkit-transform: scaleY(0.5); 50 | -ms-transform: scaleY(0.5); 51 | transform: scaleY(0.5); 52 | background-color: #c8c7cc; 53 | } 54 | .uni-list:before { 55 | position: absolute; 56 | z-index: 10; 57 | right: 0; 58 | top: 0; 59 | left: 0; 60 | height: 1px; 61 | content: ''; 62 | -webkit-transform: scaleY(0.5); 63 | -ms-transform: scaleY(0.5); 64 | transform: scaleY(0.5); 65 | background-color: #c8c7cc; 66 | } 67 | 68 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-load-more/uni-load-more.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-load-more/uni-load-more.wxml: -------------------------------------------------------------------------------- 1 | {{''+(status==='more'?contentText.contentdown:status==='loading'?contentText.contentrefresh:contentText.contentnomore)+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-popup/uni-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/components/uni-popup/uni-popup.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/aboutA/aboutA.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于作者", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/aboutA/aboutA.wxml: -------------------------------------------------------------------------------- 1 | 基于玩安卓api与uniapp开发安卓平台玩安卓客户端QQ:572410049邮箱:572410049@qq.comgithub:https://github.com/Mstian本项目仅作学习使用,不得做商业用途 -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/aboutA/aboutA.wxss: -------------------------------------------------------------------------------- 1 | 2 | .wrap{ 3 | height: 100vh; 4 | background: #efefef; 5 | display: -webkit-box; 6 | display: -webkit-flex; 7 | display: -ms-flexbox; 8 | display: flex; 9 | -webkit-box-orient: vertical; 10 | -webkit-box-direction: normal; 11 | -webkit-flex-direction: column; 12 | -ms-flex-direction: column; 13 | flex-direction: column; 14 | -webkit-justify-content: space-around; 15 | -ms-flex-pack: distribute; 16 | justify-content: space-around; 17 | -webkit-box-align: center; 18 | -webkit-align-items: center; 19 | -ms-flex-align: center; 20 | align-items: center; 21 | padding-bottom: 50px; 22 | color: #333; 23 | } 24 | .txt{ 25 | padding: 0 25px; 26 | text-align: center; 27 | font-size: 48rpx; 28 | } 29 | .top{ 30 | width: 100px; 31 | height: 100px; 32 | border-radius: 50%; 33 | overflow: hidden; 34 | margin: 0 auto; 35 | margin-top: 50px; 36 | } 37 | .top image{ 38 | width: 100%; 39 | height: 100%; 40 | } 41 | 42 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/article_detail/article_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/article_detail/article_detail.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/collectList.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "pullToRefresh": { 4 | "support": true, 5 | "color": "#DD524D" 6 | }, 7 | "usingComponents": { 8 | "uni-load-more": "/components/uni-load-more/uni-load-more", 9 | "circle": "/pages/collectList/item_circle", 10 | "pic": "/pages/collectList/item_pic" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/collectList.wxml: -------------------------------------------------------------------------------- 1 | 暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/collectList.wxss: -------------------------------------------------------------------------------- 1 | 2 | .search{ 3 | background: #eee; 4 | padding-bottom: 5px; 5 | } 6 | .wrap{ 7 | background: #fff; 8 | } 9 | .hover{ 10 | background: #eee; 11 | } 12 | .nodata{ 13 | color: #aaa; 14 | font-size: 14px; 15 | text-align: center; 16 | line-height: 90px; 17 | } 18 | 19 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/item_circle.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/item_circle.wxml: -------------------------------------------------------------------------------- 1 | {{''+dataState.title+''}}{{''+(dataState.niceDate?dataState.niceDate:'未知')+''}}{{''+(dataState.author?dataState.author:'未知')+''}}{{''+dataState.chapterName+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/item_circle.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle { 3 | padding: 10px 10px; 4 | width: 100%; 5 | /* background: #fff; */ 6 | display: -webkit-box; 7 | display: -webkit-flex; 8 | display: -ms-flexbox; 9 | display: flex; 10 | -webkit-box-pack: justify; 11 | -webkit-justify-content: space-between; 12 | -ms-flex-pack: justify; 13 | justify-content: space-between; 14 | height: 80px; 15 | 16 | margin-bottom: 5px; 17 | } 18 | .left { 19 | 20 | -webkit-box-flex: 1; 21 | 22 | -webkit-flex: 1; 23 | 24 | -ms-flex: 1; 25 | 26 | flex: 1; 27 | display: -webkit-box; 28 | display: -webkit-flex; 29 | display: -ms-flexbox; 30 | display: flex; 31 | -webkit-box-align: start; 32 | -webkit-align-items: flex-start; 33 | -ms-flex-align: start; 34 | align-items: flex-start; 35 | -webkit-justify-content: space-around; 36 | -ms-flex-pack: distribute; 37 | justify-content: space-around; 38 | -webkit-box-orient: vertical; 39 | -webkit-box-direction: normal; 40 | -webkit-flex-direction: column; 41 | -ms-flex-direction: column; 42 | flex-direction: column; 43 | } 44 | .title { 45 | width: 500rpx; 46 | overflow: hidden; 47 | -o-text-overflow: ellipsis; 48 | text-overflow: ellipsis; 49 | white-space: nowrap; 50 | font-size: 16px; 51 | color: #333; 52 | } 53 | .info { 54 | font-size: 14px; 55 | color: #999; 56 | } 57 | .info text { 58 | margin-right: 10px; 59 | } 60 | .right { 61 | width: 60px; 62 | height: 60px; 63 | background: #4CD964; 64 | border-radius: 50%; 65 | line-height: 60px; 66 | text-align: center; 67 | font-size: 12px; 68 | color: #fff; 69 | overflow: hidden; 70 | white-space: nowrap; 71 | -o-text-overflow: ellipsis; 72 | text-overflow: ellipsis; 73 | } 74 | .collec_true { 75 | color: #DD524D; 76 | font-size: 16px; 77 | } 78 | .collect_status { 79 | color: #999999; 80 | font-size: 16px; 81 | } 82 | 83 | 84 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/item_pic.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/item_pic.wxml: -------------------------------------------------------------------------------- 1 | {{''+dataItem.title+''}}{{''+dataItem.niceDate+''}}{{''+dataItem.author+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/collectList/item_pic.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle{ 3 | padding: 10px 10px; 4 | width: 100%; 5 | 6 | display: -webkit-box; 7 | 8 | display: -webkit-flex; 9 | 10 | display: -ms-flexbox; 11 | 12 | display: flex; 13 | -webkit-box-pack: justify; 14 | -webkit-justify-content: space-between; 15 | -ms-flex-pack: justify; 16 | justify-content: space-between; 17 | height: 120px; 18 | margin-bottom: 5px; 19 | /* background: #007AFF; */ 20 | } 21 | .left{ 22 | 23 | -webkit-box-flex: 1; 24 | 25 | -webkit-flex: 1; 26 | 27 | -ms-flex: 1; 28 | 29 | flex: 1; 30 | display: -webkit-box; 31 | display: -webkit-flex; 32 | display: -ms-flexbox; 33 | display: flex; 34 | -webkit-box-align: start; 35 | -webkit-align-items: flex-start; 36 | -ms-flex-align: start; 37 | align-items: flex-start; 38 | -webkit-justify-content: space-around; 39 | -ms-flex-pack: distribute; 40 | justify-content: space-around; 41 | -webkit-box-orient: vertical; 42 | -webkit-box-direction: normal; 43 | -webkit-flex-direction: column; 44 | -ms-flex-direction: column; 45 | flex-direction: column; 46 | } 47 | .title{ 48 | width: 500rpx; 49 | overflow:hidden; 50 | -o-text-overflow:ellipsis; 51 | text-overflow:ellipsis; 52 | white-space:nowrap; 53 | font-size: 16px; 54 | color: #333; 55 | } 56 | .des{ 57 | width: 500rpx; 58 | overflow:hidden; 59 | -o-text-overflow:ellipsis; 60 | text-overflow:ellipsis; 61 | white-space:nowrap; 62 | font-size: 14px; 63 | color: #666; 64 | } 65 | .info{ 66 | font-size: 14px; 67 | color: #999; 68 | } 69 | .info text{ 70 | margin-right: 10px; 71 | } 72 | .right{ 73 | width: 70px; 74 | height: 100px; 75 | /* background: #4CD964; */ 76 | display: -webkit-box; 77 | display: -webkit-flex; 78 | display: -ms-flexbox; 79 | display: flex; 80 | } 81 | .right image{ 82 | -webkit-box-flex: 1; 83 | -webkit-flex: 1; 84 | -ms-flex: 1; 85 | flex: 1; 86 | width: 100%; 87 | height: 100%; 88 | } 89 | .collect_status { 90 | font-size: 16px; 91 | } 92 | .collec_true { 93 | color: #DD524D; 94 | font-size: 16px; 95 | } 96 | 97 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/home/home.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "enablePullDownRefresh": true, 4 | "pullToRefresh": { 5 | "support": true, 6 | "color": "#DD524D", 7 | "offset": "70px" 8 | }, 9 | "usingComponents": { 10 | "uni-load-more": "/components/uni-load-more/uni-load-more", 11 | "backtop": "/components/toTop/toTop" 12 | } 13 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/home/home.wxml: -------------------------------------------------------------------------------- 1 | 玩安卓{{nowIndex+"/"+bannerArr.length}}{{item.title}}{{''+(item.niceDate?item.niceDate:'')+''}}{{''+(item.shareUser?item.shareUser:item.author)+''}}{{item.superChapterName?item.superChapterName:'暂未分类'}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/info/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/info/info.wxml: -------------------------------------------------------------------------------- 1 | 我的位置在应用中打开手机信息手机品牌:{{info.brand}}手机型号:{{info.model}}设备像素比:{{info.pixelRatio}}屏幕宽度:{{info.screenWidth}}屏幕高度:{{info.screenHeight}}可使用窗口宽度:{{info.windowWidth}}可使用窗口高度:{{info.windowHeight}}语言:{{info.language}}操作系统版本:{{info.system}}客户端平台:{{info.platform}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/info/info.wxss: -------------------------------------------------------------------------------- 1 | 2 | view { 3 | text-align: center; 4 | line-height: 35px; 5 | color: #333; 6 | } 7 | .line { 8 | width: 100%; 9 | height: 2px; 10 | background: #EEEEEE; 11 | margin: 20px 0; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "softinputMode": "adjustPan", 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/login/login.wxml: -------------------------------------------------------------------------------- 1 | 登录用户:密码:立即登录没有账号?立即注册 -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/mine/mine.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "usingComponents": { 4 | "uni-list": "/components/uni-list/uni-list", 5 | "uni-list-item": "/components/uni-list-item/uni-list-item", 6 | "uni-popup": "/components/uni-popup/uni-popup" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/mine/mine.wxss: -------------------------------------------------------------------------------- 1 | /* 2 | */ 3 | .topbar{ 4 | height: 250px; 5 | background: #DD524D; 6 | text-align: center; 7 | position: relative; 8 | padding-top: 70px; 9 | } 10 | .user_avatar{ 11 | width: 100px; 12 | height: 100px; 13 | border-radius: 50%; 14 | margin: 0 auto; 15 | } 16 | .user_name{ 17 | margin: 20px; 18 | color: #fff; 19 | font-size: 20px; 20 | } 21 | .close_btn{ 22 | position: absolute; 23 | top: 70px; 24 | right: 30px; 25 | font-size: 24px; 26 | color: #fff; 27 | } 28 | .themeList{ 29 | height: 300px; 30 | width: 250px; 31 | overflow: scroll; 32 | } 33 | .themeList view{ 34 | width: 50%; 35 | height: 45px; 36 | background: #999999; 37 | text-align: center; 38 | line-height: 45px; 39 | border-radius: 30px; 40 | margin: 5px auto; 41 | } 42 | .loginbtn{ 43 | color: #fff; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/nav/nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "导航", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/nav/nav.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.name+''}}{{''+item.name+''}}{{''+tabItem.title+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/nav/nav.wxss: -------------------------------------------------------------------------------- 1 | 2 | .nav{ 3 | display: -webkit-box; 4 | display: -webkit-flex; 5 | display: -ms-flexbox; 6 | display: flex; 7 | -webkit-box-pack: justify; 8 | -webkit-justify-content: space-between; 9 | -ms-flex-pack: justify; 10 | justify-content: space-between; 11 | -webkit-box-align: start; 12 | -webkit-align-items: flex-start; 13 | -ms-flex-align: start; 14 | align-items: flex-start; 15 | } 16 | .left{ 17 | background: #EEEEEE; 18 | width: 30vw; 19 | } 20 | .right{ 21 | background: #EEEEEE; 22 | -webkit-box-flex: 1; 23 | -webkit-flex: 1; 24 | -ms-flex: 1; 25 | flex: 1; 26 | } 27 | .left scroll-view{ 28 | } 29 | .scrollleft{ 30 | height: 100vh; 31 | } 32 | .left .tabs{ 33 | height: 35px; 34 | background:#fefefe; 35 | text-align: center; 36 | line-height: 35px; 37 | font-size: 28rpx; 38 | color: #333; 39 | } 40 | .right scroll-view{ 41 | height: 100vh; 42 | } 43 | .left .tabs.active{ 44 | color: #fff; 45 | background: #DD524D; 46 | } 47 | .contents{ 48 | width: 90%; 49 | padding: 5px; 50 | background: #fff; 51 | margin: 5px auto; 52 | border-radius: 4px; 53 | } 54 | .content_title{ 55 | text-align: center; 56 | font-size: 32rpx; 57 | font-weight: bold; 58 | } 59 | .content_main{ 60 | width: 100%; 61 | padding: 5px; 62 | /* background: #F24544; */ 63 | display: -webkit-box; 64 | display: -webkit-flex; 65 | display: -ms-flexbox; 66 | display: flex; 67 | -webkit-box-pack: start; 68 | -webkit-justify-content: flex-start; 69 | -ms-flex-pack: start; 70 | justify-content: flex-start; 71 | -webkit-box-align: center; 72 | -webkit-align-items: center; 73 | -ms-flex-align: center; 74 | align-items: center; 75 | -webkit-flex-wrap: wrap; 76 | -ms-flex-wrap: wrap; 77 | flex-wrap: wrap; 78 | } 79 | .content_main view{ 80 | font-size: 30rpx; 81 | padding: 2px 8px; 82 | border-radius: 999rpx; 83 | background: #DD524D; 84 | color: #fff; 85 | margin: 4px 3px; 86 | -webkit-box-shadow: 1px 1px 1px #aaa; 87 | box-shadow: 1px 1px 1px #aaa; 88 | } 89 | .hover_class{ 90 | opacity: 0.8; 91 | } 92 | 93 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "注册", 3 | "navigationBarBackgroundColor": "#DD524D", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/register/register.wxml: -------------------------------------------------------------------------------- 1 | 注册用户:密码:确认密码:立即注册已有账号?去登录 -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "搜索", 3 | "titleNView": { 4 | "backgroundColor": "#DD524D", 5 | "searchInput": { 6 | "autoFocus": true, 7 | "backgroundColor": "#fefefe", 8 | "borderRadius": "6px", 9 | "placeholder": "请输入关键字", 10 | "placeholderColor": "#999", 11 | "disabled": false, 12 | "align": "left" 13 | }, 14 | "buttons": [ 15 | { 16 | "fontSrc": "", 17 | "text": "", 18 | "width": "30px", 19 | "fontSize": "28px", 20 | "color": "transparent", 21 | "background": "transparent" 22 | } 23 | ] 24 | }, 25 | "usingComponents": {} 26 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | 热门搜索{{item.name}}历史搜索{{item}}清除历史 -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | 2 | .hot { 3 | padding: 20px; 4 | } 5 | .title { 6 | font-size: 14px; 7 | color: #333; 8 | } 9 | .item { 10 | padding: 2px 8px; 11 | background: #F24544; 12 | border-radius: 4px; 13 | font-size: 14px; 14 | display: inline-block; 15 | color: #fff; 16 | margin: 5px 5px; 17 | } 18 | .his{ 19 | background: #C0C0C0; 20 | } 21 | 22 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/item_circle.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/item_circle.wxml: -------------------------------------------------------------------------------- 1 | {{''+(dataItem.niceDate?dataItem.niceDate:'未知')+''}}{{''+dataItem.author+''}}{{''+dataItem.superChapterName+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/item_circle.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle{ 3 | padding: 10px 10px; 4 | width: 100%; 5 | /* background: #fff; */ 6 | display: -webkit-box; 7 | display: -webkit-flex; 8 | display: -ms-flexbox; 9 | display: flex; 10 | -webkit-box-pack: justify; 11 | -webkit-justify-content: space-between; 12 | -ms-flex-pack: justify; 13 | justify-content: space-between; 14 | height: 80px; 15 | 16 | margin-bottom: 5px; 17 | } 18 | .left{ 19 | 20 | -webkit-box-flex: 1; 21 | 22 | -webkit-flex: 1; 23 | 24 | -ms-flex: 1; 25 | 26 | flex: 1; 27 | display: -webkit-box; 28 | display: -webkit-flex; 29 | display: -ms-flexbox; 30 | display: flex; 31 | -webkit-box-align: start; 32 | -webkit-align-items: flex-start; 33 | -ms-flex-align: start; 34 | align-items: flex-start; 35 | -webkit-justify-content: space-around; 36 | -ms-flex-pack: distribute; 37 | justify-content: space-around; 38 | -webkit-box-orient: vertical; 39 | -webkit-box-direction: normal; 40 | -webkit-flex-direction: column; 41 | -ms-flex-direction: column; 42 | flex-direction: column; 43 | } 44 | .title{ 45 | width: 500rpx; 46 | overflow:hidden; 47 | -o-text-overflow:ellipsis; 48 | text-overflow:ellipsis; 49 | white-space:nowrap; 50 | font-size: 16px; 51 | color: #333; 52 | } 53 | .info{ 54 | font-size: 14px; 55 | color: #999; 56 | } 57 | .right{ 58 | width: 60px; 59 | height: 60px; 60 | background: #4CD964; 61 | border-radius: 50%; 62 | line-height: 60px; 63 | text-align: center; 64 | font-size: 12px; 65 | color: #fff; 66 | } 67 | 68 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/item_pic.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/item_pic.wxml: -------------------------------------------------------------------------------- 1 | {{''+dataItem.niceDate+''}}{{''+dataItem.author+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/item_pic.wxss: -------------------------------------------------------------------------------- 1 | 2 | .circle{ 3 | padding: 10px 10px; 4 | width: 100%; 5 | 6 | display: -webkit-box; 7 | 8 | display: -webkit-flex; 9 | 10 | display: -ms-flexbox; 11 | 12 | display: flex; 13 | -webkit-box-pack: justify; 14 | -webkit-justify-content: space-between; 15 | -ms-flex-pack: justify; 16 | justify-content: space-between; 17 | height: 120px; 18 | margin-bottom: 5px; 19 | /* background: #007AFF; */ 20 | } 21 | .left{ 22 | 23 | -webkit-box-flex: 1; 24 | 25 | -webkit-flex: 1; 26 | 27 | -ms-flex: 1; 28 | 29 | flex: 1; 30 | display: -webkit-box; 31 | display: -webkit-flex; 32 | display: -ms-flexbox; 33 | display: flex; 34 | -webkit-box-align: start; 35 | -webkit-align-items: flex-start; 36 | -ms-flex-align: start; 37 | align-items: flex-start; 38 | -webkit-justify-content: space-around; 39 | -ms-flex-pack: distribute; 40 | justify-content: space-around; 41 | -webkit-box-orient: vertical; 42 | -webkit-box-direction: normal; 43 | -webkit-flex-direction: column; 44 | -ms-flex-direction: column; 45 | flex-direction: column; 46 | } 47 | .title{ 48 | width: 500rpx; 49 | overflow:hidden; 50 | -o-text-overflow:ellipsis; 51 | text-overflow:ellipsis; 52 | white-space:nowrap; 53 | font-size: 16px; 54 | color: #333; 55 | } 56 | .des{ 57 | width: 500rpx; 58 | overflow:hidden; 59 | -o-text-overflow:ellipsis; 60 | text-overflow:ellipsis; 61 | white-space:nowrap; 62 | font-size: 14px; 63 | color: #666; 64 | } 65 | .info{ 66 | font-size: 14px; 67 | color: #999; 68 | } 69 | .right{ 70 | width: 70px; 71 | height: 100px; 72 | /* background: #4CD964; */ 73 | display: -webkit-box; 74 | display: -webkit-flex; 75 | display: -ms-flexbox; 76 | display: flex; 77 | } 78 | .right image{ 79 | -webkit-box-flex: 1; 80 | -webkit-flex: 1; 81 | -ms-flex: 1; 82 | flex: 1; 83 | width: 100%; 84 | height: 100%; 85 | } 86 | 87 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/searchList.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "pullToRefresh": { 4 | "support": true, 5 | "color": "#DD524D" 6 | }, 7 | "usingComponents": { 8 | "uni-load-more": "/components/uni-load-more/uni-load-more", 9 | "circle": "/pages/searchList/item_circle", 10 | "pic": "/pages/searchList/item_pic" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/searchList.wxml: -------------------------------------------------------------------------------- 1 | 暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/searchList/searchList.wxss: -------------------------------------------------------------------------------- 1 | 2 | .search{ 3 | background: #eee; 4 | } 5 | .wrap{ 6 | background: #fff; 7 | } 8 | .hover{ 9 | background: #eee; 10 | } 11 | .nodata{ 12 | color: #aaa; 13 | font-size: 14px; 14 | text-align: center; 15 | line-height: 90px; 16 | } 17 | 18 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/share_article/share_article.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "分享文章", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/share_article/share_article.wxml: -------------------------------------------------------------------------------- 1 | 确认分享 -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/share_article/share_article.wxss: -------------------------------------------------------------------------------- 1 | 2 | .share{ 3 | padding: 20px; 4 | } 5 | .share view{ 6 | padding: 5px; 7 | margin: 10px 0; 8 | } 9 | input{ 10 | border: 1px solid #eee; 11 | padding: 10px; 12 | font-size: 14px; 13 | color: #666666; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/system/system.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "体系", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/system/system.wxml: -------------------------------------------------------------------------------- 1 | {{item.name}}{{''+subitem.name+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/system/system.wxss: -------------------------------------------------------------------------------- 1 | .wrap{ 2 | background: #F7F7F7; 3 | /* overflow: hidden; */ 4 | } 5 | .contentList{ 6 | background: #fff; 7 | border-radius: 10px; 8 | width: 90%; 9 | margin: 0 auto; 10 | padding: 5px; 11 | margin-top: 10px; 12 | margin-bottom: 10px; 13 | } 14 | .contentList .title{ 15 | color: #333; 16 | font-size: 16px; 17 | } 18 | .content{ 19 | display: -webkit-box; 20 | display: -webkit-flex; 21 | display: -ms-flexbox; 22 | display: flex; 23 | -webkit-flex-wrap: wrap; 24 | -ms-flex-wrap: wrap; 25 | flex-wrap: wrap; 26 | } 27 | .content text{ 28 | font-size: 14px; 29 | color: #FFF; 30 | padding: 4px 10px; 31 | background: skyblue; 32 | border-radius: 999rpx; 33 | margin: 2px; 34 | } 35 | .media-item-hover{ 36 | background-color: #eee; 37 | } 38 | 39 | -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/website/website.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "常用网站", 3 | "navigationBarBackgroundColor": "#DD524D", 4 | "navigationBarTextStyle": "white", 5 | "enablePullDownRefresh": true, 6 | "pullToRefresh": { 7 | "support": true, 8 | "color": "#DD524D" 9 | }, 10 | "usingComponents": {} 11 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/website/website.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.name+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/.tmp/app-plus/pages/website/website.wxss: -------------------------------------------------------------------------------- 1 | 2 | .web{ 3 | display: -webkit-box; 4 | display: -webkit-flex; 5 | display: -ms-flexbox; 6 | display: flex; 7 | -webkit-box-orient: vertical; 8 | -webkit-box-direction: normal; 9 | -webkit-flex-direction: column; 10 | -ms-flex-direction: column; 11 | flex-direction: column; 12 | -webkit-box-align: center; 13 | -webkit-align-items: center; 14 | -ms-flex-align: center; 15 | align-items: center; 16 | padding: 20px 0; 17 | } 18 | .weblist{ 19 | width: 80%; 20 | height: 50px; 21 | background-color: #4CD964; 22 | border-radius: 999rpx; 23 | margin-top: 15px; 24 | font-size: 36rpx; 25 | color: #fff; 26 | text-align: center; 27 | line-height: 50px; 28 | -webkit-box-shadow: 1px 1px 3px #EEEEEE; 29 | box-shadow: 1px 1px 3px #EEEEEE; 30 | } 31 | .hover{ 32 | opacity: 0.8; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniappmarker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/__uniappmarker@3x.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniappnvuecompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/__uniappnvuecompiler.js -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniapptabbar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TabBar 6 | 7 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/aboutA/aboutA.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"wrap{ height: 100vh; background: #efefef; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding-bottom: 50px; color: #333; }\n.",[1],"txt{ padding: 0 25px; text-align: center; font-size: ",[0,48],"; }\n.",[1],"top{ width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto; margin-top: 50px; }\n.",[1],"top wx-image{ width: 100%; height: 100%; }\n",],undefined,{path:"./pages/aboutA/aboutA.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/aboutA/aboutA.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/article_detail/article_detail.js: -------------------------------------------------------------------------------- 1 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/article_detail/article_detail.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/collectList/collectList.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"search{ background: #eee; padding-bottom: 5px; }\n.",[1],"wrap{ background: #fff; }\n.",[1],"hover{ background: #eee; }\n.",[1],"nodata{ color: #aaa; font-size: 14px; text-align: center; line-height: 90px; }\n",],undefined,{path:"./pages/collectList/collectList.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/collectList/collectList.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/info/info.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["wx-view { text-align: center; line-height: 35px; color: #333; }\n.",[1],"line { width: 100%; height: 2px; background: #EEEEEE; margin: 20px 0; }\n",],undefined,{path:"./pages/info/info.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/info/info.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/mine/mine.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"topbar{ height: 250px; background: #DD524D; text-align: center; position: relative; padding-top: 70px; }\n.",[1],"user_avatar{ width: 100px; height: 100px; border-radius: 50%; margin: 0 auto; }\n.",[1],"user_name{ margin: 20px; color: #fff; font-size: 20px; }\n.",[1],"close_btn{ position: absolute; top: 70px; right: 30px; font-size: 24px; color: #fff; }\n.",[1],"themeList{ height: 300px; width: 250px; overflow: scroll; }\n.",[1],"themeList wx-view{ width: 50%; height: 45px; background: #999999; text-align: center; line-height: 45px; border-radius: 30px; margin: 5px auto; }\n.",[1],"loginbtn{ color: #fff; }\n",],undefined,{path:"./pages/mine/mine.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/mine/mine.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/nav/nav.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"nav{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; }\n.",[1],"left{ background: #EEEEEE; width: 30vw; }\n.",[1],"right{ background: #EEEEEE; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; }\n.",[1],"left wx-scroll-view{ }\n.",[1],"scrollleft{ height: 100vh; }\n.",[1],"left .",[1],"tabs{ height: 35px; background:#fefefe; text-align: center; line-height: 35px; font-size: ",[0,28],"; color: #333; }\n.",[1],"right wx-scroll-view{ height: 100vh; }\n.",[1],"left .",[1],"tabs.",[1],"active{ color: #fff; background: #DD524D; }\n.",[1],"contents{ width: 90%; padding: 5px; background: #fff; margin: 5px auto; border-radius: 4px; }\n.",[1],"content_title{ text-align: center; font-size: ",[0,32],"; font-weight: bold; }\n.",[1],"content_main{ width: 100%; padding: 5px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"content_main wx-view{ font-size: ",[0,30],"; padding: 2px 8px; border-radius: ",[0,999],"; background: #DD524D; color: #fff; margin: 4px 3px; -webkit-box-shadow: 1px 1px 1px #aaa; box-shadow: 1px 1px 1px #aaa; }\n.",[1],"hover_class{ opacity: 0.8; }\n",],undefined,{path:"./pages/nav/nav.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/nav/nav.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/search/search.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"hot { padding: 20px; }\n.",[1],"title { font-size: 14px; color: #333; }\n.",[1],"item { padding: 2px 8px; background: #F24544; border-radius: 4px; font-size: 14px; display: inline-block; color: #fff; margin: 5px 5px; }\n.",[1],"his{ background: #C0C0C0; }\n",],undefined,{path:"./pages/search/search.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/search/search.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/searchList/searchList.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"search{ background: #eee; }\n.",[1],"wrap{ background: #fff; }\n.",[1],"hover{ background: #eee; }\n.",[1],"nodata{ color: #aaa; font-size: 14px; text-align: center; line-height: 90px; }\n",],undefined,{path:"./pages/searchList/searchList.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/searchList/searchList.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/share_article/share_article.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"share{ padding: 20px; }\n.",[1],"share wx-view{ padding: 5px; margin: 10px 0; }\nwx-input{ border: 1px solid #eee; padding: 10px; font-size: 14px; color: #666666; }\n",],undefined,{path:"./pages/share_article/share_article.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/share_article/share_article.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/system/system.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"wrap{ background: #F7F7F7; }\n.",[1],"contentList{ background: #fff; border-radius: 10px; width: 90%; margin: 0 auto; padding: 5px; margin-top: 10px; margin-bottom: 10px; }\n.",[1],"contentList .",[1],"title{ color: #333; font-size: 16px; }\n.",[1],"content{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"content wx-text{ font-size: 14px; color: #FFF; padding: 4px 10px; background: skyblue; border-radius: ",[0,999],"; margin: 2px; }\n.",[1],"media-item-hover{ background-color: #eee; }\n",],undefined,{path:"./pages/system/system.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/system/system.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/website/website.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"web{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding: 20px 0; }\n.",[1],"weblist{ width: 80%; height: 50px; background-color: #4CD964; border-radius: ",[0,999],"; margin-top: 15px; font-size: ",[0,36],"; color: #fff; text-align: center; line-height: 50px; -webkit-box-shadow: 1px 1px 3px #EEEEEE; box-shadow: 1px 1px 3px #EEEEEE; }\n.",[1],"hover{ opacity: 0.8; }\n",],undefined,{path:"./pages/website/website.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/website/website.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/app.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/applogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/applogo.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/avatar.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/location.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/login_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/login_icon.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/start.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/account.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/account_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/account_selected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/home.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/home_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/home_selected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/nav.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/nav_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/nav_selected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/project.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/project_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/project_selected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/system.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tabbarIcon/system_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/tabbarIcon/system_selected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/timg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/timg.gif -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/timg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/timg2.gif -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/toTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/dist/dev/app-plus/static/toTop.png -------------------------------------------------------------------------------- /unpackage/res/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/1024x1024.png -------------------------------------------------------------------------------- /unpackage/res/icons/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/120x120.png -------------------------------------------------------------------------------- /unpackage/res/icons/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/144x144.png -------------------------------------------------------------------------------- /unpackage/res/icons/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/152x152.png -------------------------------------------------------------------------------- /unpackage/res/icons/167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/167x167.png -------------------------------------------------------------------------------- /unpackage/res/icons/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/180x180.png -------------------------------------------------------------------------------- /unpackage/res/icons/192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/192x192.png -------------------------------------------------------------------------------- /unpackage/res/icons/20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/20x20.png -------------------------------------------------------------------------------- /unpackage/res/icons/29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/29x29.png -------------------------------------------------------------------------------- /unpackage/res/icons/40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/40x40.png -------------------------------------------------------------------------------- /unpackage/res/icons/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/58x58.png -------------------------------------------------------------------------------- /unpackage/res/icons/60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/60x60.png -------------------------------------------------------------------------------- /unpackage/res/icons/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/72x72.png -------------------------------------------------------------------------------- /unpackage/res/icons/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/76x76.png -------------------------------------------------------------------------------- /unpackage/res/icons/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/80x80.png -------------------------------------------------------------------------------- /unpackage/res/icons/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/87x87.png -------------------------------------------------------------------------------- /unpackage/res/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/res/icons/96x96.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/__uniappnvuecompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/__uniappnvuecompiler.js -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/manifest.json: -------------------------------------------------------------------------------- 1 | {"@platforms":["android","iPhone","iPad"],"id":"__UNI__D010B51","name":"android","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Push":{},"Statistic":{},"VideoPlayer":{},"Maps":{"coordType":"gcj02"},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview","uni-app":"auto"},"statusbar":{"immersed":"supportedDevice","style":"light","background":"#DD524D"},"usingComponents":true,"nvueCompiler":"uni-app","allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"2.4.2","control":"v8","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"}},"tabBar":{"color":"#7a7e83","selectedColor":"#DD524D","backgroundColor":"#ffffff","list":[{"pagePath":"pages/home/home","text":"首页","iconPath":"static/tabbarIcon/home.png","selectedIconPath":"static/tabbarIcon/home_selected.png"},{"pagePath":"pages/system/system","text":"体系","iconPath":"static/tabbarIcon/system.png","selectedIconPath":"static/tabbarIcon/system_selected.png"},{"pagePath":"pages/account/account","text":"公众号","iconPath":"static/tabbarIcon/account.png","selectedIconPath":"static/tabbarIcon/account_selected.png"},{"pagePath":"pages/project/project","text":"项目","iconPath":"static/tabbarIcon/project.png","selectedIconPath":"static/tabbarIcon/project_selected.png"},{"pagePath":"pages/nav/nav","text":"导航","iconPath":"static/tabbarIcon/nav.png","selectedIconPath":"static/tabbarIcon/nav_selected.png"}],"borderStyle":"rgba(0,0,0,0.4)","height":"50px","child":["lauchwebview"],"selected":0}}} -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/aboutA/aboutA.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"wrap{ height: 100vh; background: #efefef; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding-bottom: 50px; }\n.",[1],"txt{ padding: 0 25px; text-align: center; font-size: ",[0,48],"; }\n.",[1],"top{ width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto; margin-top: 50px; }\n.",[1],"top wx-image{ width: 100%; height: 100%; }\n",],undefined,{path:"./pages/aboutA/aboutA.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/aboutA/aboutA.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/article_detail/article_detail.js: -------------------------------------------------------------------------------- 1 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/article_detail/article_detail.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/info/info.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["wx-view { text-align: center; line-height: 35px; color: #333; }\n.",[1],"line { width: 100%; height: 2px; background: #EEEEEE; margin: 20px 0; }\n",],undefined,{path:"./pages/info/info.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/info/info.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/mine/mine.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"topbar{ height: 250px; background: #DD524D; text-align: center; position: relative; padding-top: 70px; }\n.",[1],"user_avatar{ width: 100px; height: 100px; border-radius: 50%; margin: 0 auto; }\n.",[1],"user_name{ margin: 20px; color: #fff; font-size: 20px; }\n.",[1],"close_btn{ position: absolute; top: 70px; right: 30px; font-size: 24px; color: #fff; }\n.",[1],"themeList{ height: 300px; width: 250px; overflow: scroll; }\n.",[1],"themeList wx-view{ width: 50%; height: 45px; background: #999999; text-align: center; line-height: 45px; border-radius: 30px; margin: 5px auto; }\n",],undefined,{path:"./pages/mine/mine.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/mine/mine.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/nav/nav.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"nav{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; }\n.",[1],"left{ background: #EEEEEE; width: 30vw; }\n.",[1],"right{ background: #EEEEEE; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; }\n.",[1],"left wx-scroll-view{ }\n.",[1],"scrollleft{ height: 100vh; }\n.",[1],"left .",[1],"tabs{ height: 35px; background:#fefefe; text-align: center; line-height: 35px; font-size: ",[0,28],"; color: #333; }\n.",[1],"right wx-scroll-view{ height: 100vh; }\n.",[1],"left .",[1],"tabs.",[1],"active{ color: #fff; background: #DD524D; }\n.",[1],"contents{ width: 90%; padding: 5px; background: #fff; margin: 5px auto; border-radius: 4px; }\n.",[1],"content_title{ text-align: center; font-size: ",[0,32],"; font-weight: bold; }\n.",[1],"content_main{ width: 100%; padding: 5px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"content_main wx-view{ font-size: ",[0,30],"; padding: 2px 8px; border-radius: ",[0,999],"; background: #F24544; color: #fff; margin: 4px 3px; -webkit-box-shadow: 1px 1px 1px #888888; box-shadow: 1px 1px 1px #888888; }\n.",[1],"hover_class{ opacity: 0.8; }\n",],undefined,{path:"./pages/nav/nav.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/nav/nav.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/search/search.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"hot { padding: 20px; }\n.",[1],"title { font-size: 14px; color: #333; }\n.",[1],"item { padding: 2px 8px; background: #F24544; border-radius: 4px; font-size: 14px; display: inline-block; color: #fff; margin: 5px 5px; }\n.",[1],"his{ background: #C0C0C0; }\n",],undefined,{path:"./pages/search/search.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/search/search.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/searchList/searchList.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"search{ background: #eee; }\n.",[1],"wrap{ background: #fff; }\n.",[1],"hover{ background: #eee; }\n.",[1],"nodata{ color: #aaa; font-size: 14px; text-align: center; line-height: 90px; }\n",],undefined,{path:"./pages/searchList/searchList.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/searchList/searchList.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/system/system.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"wrap{ background: #eeeeee; overflow: hidden; }\n.",[1],"contentList{ background: #fff; border-radius: 10px; width: 90%; margin: 0 auto; padding: 5px; margin-top: 10px; margin-bottom: 10px; }\n.",[1],"contentList .",[1],"title{ color: #333; font-size: 16px; }\n.",[1],"content{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"content wx-text{ font-size: 14px; color: #FFF; padding: 4px 10px; background: skyblue; border-radius: ",[0,999],"; margin: 2px; }\n.",[1],"media-item-hover{ background-color: #eee; }\n",],undefined,{path:"./pages/system/system.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/system/system.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/pages/website/website.js: -------------------------------------------------------------------------------- 1 | setCssToHead([".",[1],"web{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding: 20px 0; }\n.",[1],"weblist{ width: 80%; height: 50px; background-color: #4CD964; border-radius: ",[0,999],"; margin-top: 15px; font-size: ",[0,36],"; color: #fff; text-align: center; line-height: 50px; -webkit-box-shadow: 1px 1px 3px #EEEEEE; box-shadow: 1px 1px 3px #EEEEEE; }\n.",[1],"hover{ opacity: 0.8; }\n",],undefined,{path:"./pages/website/website.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/website/website.wxml') } })); -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/app.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/applogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/applogo.jpg -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/avatar.jpg -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/location.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/login_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/login_icon.jpg -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/start.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/account.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/account_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/account_selected.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/home.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/home_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/home_selected.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/nav.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/nav_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/nav_selected.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/project.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/project_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/project_selected.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/system.png -------------------------------------------------------------------------------- /unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/system_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mstian/wanAndroid/6ae5e866c80e41b280f1a493cc84859ba1347aba/unpackage/resources/__UNI__D010B51/www/static/tabbarIcon/system_selected.png -------------------------------------------------------------------------------- /yes: -------------------------------------------------------------------------------- 1 | -----BEGIN OPENSSH PRIVATE KEY----- 2 | b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABFwAAAAdzc2gtcn 3 | NhAAAAAwEAAQAAAQEA6V0ZLvwUTUxwLGGMlqtUvLBwahytisUvg4PyWdUpFURlAXTnhf3g 4 | +dybrwI1By/ViFET4FKa1vFw70i0FntUeVc4WN593atXx456UYrqjXvP4AdH/ggLXLJo38 5 | iUiO0n74gUp8URVNuDkEPhIRISkwIYnEXm7TGahc+nOCdVWPp5hSdLuOcwxm1+rqbWcylU 6 | IJ+3LGAAUXNTP064MuIPV6Erwv6swYY3Fdh5WGq5FQjtmyLW8ISIH9numrFI5dEGkq1DGt 7 | AqKx/6e2iR72ELqMjxY/xc4LTiGwOz1JP6RFKDM4w6nGIzVF5GoEtlRkbgj3Si3thODRiR 8 | Ngz0G1TA9QAAA8jbjMKG24zChgAAAAdzc2gtcnNhAAABAQDpXRku/BRNTHAsYYyWq1S8sH 9 | BqHK2KxS+Dg/JZ1SkVRGUBdOeF/eD53JuvAjUHL9WIURPgUprW8XDvSLQWe1R5VzhY3n3d 10 | q1fHjnpRiuqNe8/gB0f+CAtcsmjfyJSI7SfviBSnxRFU24OQQ+EhEhKTAhicRebtMZqFz6 11 | c4J1VY+nmFJ0u45zDGbX6uptZzKVQgn7csYABRc1M/Trgy4g9XoSvC/qzBhjcV2HlYarkV 12 | CO2bItbwhIgf2e6asUjl0QaSrUMa0CorH/p7aJHvYQuoyPFj/FzgtOIbA7PUk/pEUoMzjD 13 | qcYjNUXkagS2VGRuCPdKLe2E4NGJE2DPQbVMD1AAAAAwEAAQAAAQB156vJqWM4it5CDidS 14 | GM5/Z0Xk1wh3jJktAYV5DdHsBNpjmgVAFb2NgIDIM31HXEuuzAgW1qWU4/gDbeBPW5Cang 15 | 7CF+fQD7oSAVKb0Gwhf+TPc95T4wyakSmbp2Qkqm36/+4vtcnD7gTS5vjgFJl93RlCG69J 16 | OD6yTPBX1sewZCXy2iCk5AMLx3Nw0WrLIupBQ/xmJ6QnqoZiw317ojl/ThXfkB/6Os3acn 17 | UMIEsreXqAx+QeKuc94OCCqHF33dnGjgeO+q5WyXUL0d6O54RwAXGHKskGQJCB5s4a5ik8 18 | Hf7Pz1LjIgQU6042tFpE1Z0GT93fhk8KpFLhV9hCLQkBAAAAgQCxJjqKcY/79T3vftalpk 19 | FMGv0sU+w89G43PyPM624NRpXLwdibY3jjSwJdydv3KPZ+CXrysdcnoYRCVlU7Vgp91OKj 20 | cAxqYi1kyrP+8ohm6b1a35RVHnl6UA6Z3QcCJmu2BbERDaXG9etspI9P7N0Pz8CQLG+EMC 21 | kqhjwP5bOJAwAAAIEA9plV8UmRPBXD4wDuAZXmL7RegDZDkiL92KiuHGU6b2gSc+9VEz/5 22 | W+N993+ybQKrXN26T8U/24gBUzKn42QxpZfQambgdoFHixU1Gimlr3gTI96mpofhK8HyMo 23 | pccg8u/3YwhEDXsGFrhxu8wdNFsov1dnPqbrKkwHRsA6eZ5ckAAACBAPJCl/2ax+KhnQ73 24 | WT6ILGbBn07B4LoECh8CK9UlTKohGmYUEIXRv8I68smatEhFDA/TWMexvT3AK/6GlWUCVt 25 | C1xudyS6H2euMklfpFd+rCgjUds5mj5sWbIVa5NLeBd+sMG8y6gXzFraL9NUG3Seba4okD 26 | TAUy14m1PMpl9UfNAAAAETE0MDQ3NDYyMzlAcXEuY29tAQ== 27 | -----END OPENSSH PRIVATE KEY----- 28 | -------------------------------------------------------------------------------- /yes.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDpXRku/BRNTHAsYYyWq1S8sHBqHK2KxS+Dg/JZ1SkVRGUBdOeF/eD53JuvAjUHL9WIURPgUprW8XDvSLQWe1R5VzhY3n3dq1fHjnpRiuqNe8/gB0f+CAtcsmjfyJSI7SfviBSnxRFU24OQQ+EhEhKTAhicRebtMZqFz6c4J1VY+nmFJ0u45zDGbX6uptZzKVQgn7csYABRc1M/Trgy4g9XoSvC/qzBhjcV2HlYarkVCO2bItbwhIgf2e6asUjl0QaSrUMa0CorH/p7aJHvYQuoyPFj/FzgtOIbA7PUk/pEUoMzjDqcYjNUXkagS2VGRuCPdKLe2E4NGJE2DPQbVMD1 1404746239@qq.com 2 | --------------------------------------------------------------------------------