├── kepu ├── unpackage │ ├── dist │ │ ├── build │ │ │ ├── .automator │ │ │ │ ├── h5 │ │ │ │ │ └── .automator.json │ │ │ │ ├── app-plus │ │ │ │ │ └── .automator.json │ │ │ │ └── mp-weixin │ │ │ │ │ └── .automator.json │ │ │ ├── mp-weixin │ │ │ │ ├── pages │ │ │ │ │ ├── shoucang │ │ │ │ │ │ ├── shoucang.wxml │ │ │ │ │ │ ├── shoucang.json │ │ │ │ │ │ └── shoucang.js │ │ │ │ │ ├── sorry │ │ │ │ │ │ ├── sorry.wxml │ │ │ │ │ │ ├── sorry.wxss │ │ │ │ │ │ ├── sorry.json │ │ │ │ │ │ └── sorry.js │ │ │ │ │ ├── center │ │ │ │ │ │ ├── center.json │ │ │ │ │ │ └── center.js │ │ │ │ │ ├── about │ │ │ │ │ │ ├── about.json │ │ │ │ │ │ ├── about.wxml │ │ │ │ │ │ ├── about.wxss │ │ │ │ │ │ └── about.js │ │ │ │ │ ├── register │ │ │ │ │ │ ├── register.wxss │ │ │ │ │ │ ├── register.json │ │ │ │ │ │ ├── register.wxml │ │ │ │ │ │ └── register.js │ │ │ │ │ ├── privacy │ │ │ │ │ │ ├── privacy.json │ │ │ │ │ │ ├── privacy.wxss │ │ │ │ │ │ ├── privacy.wxml │ │ │ │ │ │ └── privacy.js │ │ │ │ │ ├── QuShe-login │ │ │ │ │ │ └── QuShe-login.json │ │ │ │ │ ├── feedback │ │ │ │ │ │ ├── feedback.json │ │ │ │ │ │ ├── feedback.wxss │ │ │ │ │ │ ├── feedback.wxml │ │ │ │ │ │ └── feedback.js │ │ │ │ │ ├── VideoDetail-Game │ │ │ │ │ │ └── VideoDetail-Game.json │ │ │ │ │ ├── VideoDetail-Life │ │ │ │ │ │ └── VideoDetail-Life.json │ │ │ │ │ ├── ArticleDetail-Game │ │ │ │ │ │ └── ArticleDetail-Game.json │ │ │ │ │ ├── ArticleDetail-Life │ │ │ │ │ │ └── ArticleDetail-Life.json │ │ │ │ │ ├── VideoDetail-Animal │ │ │ │ │ │ └── VideoDetail-Animal.json │ │ │ │ │ ├── VideoDetail-Beauty │ │ │ │ │ │ └── VideoDetail-Beauty.json │ │ │ │ │ ├── ArticleDetail-Animal │ │ │ │ │ │ └── ArticleDetail-Animal.json │ │ │ │ │ ├── ArticleDetail-Beauty │ │ │ │ │ │ └── ArticleDetail-Beauty.json │ │ │ │ │ ├── ArticleDetail-Interset │ │ │ │ │ │ └── ArticleDetail-Interset.json │ │ │ │ │ ├── VideoDetail-FamilyLife │ │ │ │ │ │ └── VideoDetail-FamilyLife.json │ │ │ │ │ ├── VideoDetail-Interset │ │ │ │ │ │ └── VideoDetail-Interset.json │ │ │ │ │ ├── VideoDetail-Technology │ │ │ │ │ │ └── VideoDetail-Technology.json │ │ │ │ │ ├── ArticleDetail-FamilyLife │ │ │ │ │ │ └── ArticleDetail-FamilyLife.json │ │ │ │ │ ├── ArticleDetail-Technology │ │ │ │ │ │ └── ArticleDetail-Technology.json │ │ │ │ │ └── index │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxss │ │ │ │ ├── components │ │ │ │ │ ├── share-btn │ │ │ │ │ │ ├── share-btn.json │ │ │ │ │ │ └── share-btn.wxml │ │ │ │ │ ├── uni-icons │ │ │ │ │ │ ├── uni-icons.json │ │ │ │ │ │ ├── uni-icons.wxml │ │ │ │ │ │ └── uni-icons.js │ │ │ │ │ ├── uni-transition │ │ │ │ │ │ ├── uni-transition.json │ │ │ │ │ │ ├── uni-transition.wxml │ │ │ │ │ │ └── uni-transition.wxss │ │ │ │ │ ├── uni-popup │ │ │ │ │ │ ├── uni-popup.json │ │ │ │ │ │ ├── uni-popup.wxml │ │ │ │ │ │ └── uni-popup.wxss │ │ │ │ │ ├── Game │ │ │ │ │ │ └── Game.json │ │ │ │ │ ├── Life │ │ │ │ │ │ └── Life.json │ │ │ │ │ ├── Animal │ │ │ │ │ │ └── Animal.json │ │ │ │ │ ├── Beauty │ │ │ │ │ │ └── Beauty.json │ │ │ │ │ ├── Interset │ │ │ │ │ │ └── Interset.json │ │ │ │ │ ├── FamilyLife │ │ │ │ │ │ └── FamilyLife.json │ │ │ │ │ └── Technology │ │ │ │ │ │ └── Technology.json │ │ │ │ ├── app.js │ │ │ │ ├── static │ │ │ │ │ ├── QQ.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── self.png │ │ │ │ │ ├── uni.ttf │ │ │ │ │ ├── homea.png │ │ │ │ │ ├── selfa.png │ │ │ │ │ ├── weixin.png │ │ │ │ │ ├── cirfrend.png │ │ │ │ │ ├── copylink.png │ │ │ │ │ ├── uni-center │ │ │ │ │ │ └── logo.png │ │ │ │ │ └── QuShe-login │ │ │ │ │ │ └── QuShe-login.jpeg │ │ │ │ ├── app.wxss │ │ │ │ ├── sitemap.json │ │ │ │ └── project.config.json │ │ │ ├── h5 │ │ │ │ ├── static │ │ │ │ │ ├── QQ.png │ │ │ │ │ ├── uni.ttf │ │ │ │ │ ├── 个人.png │ │ │ │ │ ├── 个人a.png │ │ │ │ │ ├── 分享.png │ │ │ │ │ ├── 微信.png │ │ │ │ │ ├── 朋友圈.png │ │ │ │ │ ├── 点赞.png │ │ │ │ │ ├── 阅读.png │ │ │ │ │ ├── 首页.png │ │ │ │ │ ├── 首页a.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── homea.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── self.png │ │ │ │ │ ├── selfa.png │ │ │ │ │ ├── weixin.png │ │ │ │ │ ├── 复制链接.png │ │ │ │ │ ├── 点赞 (2).png │ │ │ │ │ ├── 观看ico.png │ │ │ │ │ ├── cirfrend.png │ │ │ │ │ ├── copylink.png │ │ │ │ │ ├── uni-center │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── QuShe-login │ │ │ │ │ │ └── QuShe-login.jpeg │ │ │ │ │ ├── img │ │ │ │ │ │ └── QuShe-login.2c97b557.jpeg │ │ │ │ │ └── js │ │ │ │ │ │ └── pages-shoucang-shoucang.1f8e19ca.js │ │ │ │ └── index.html │ │ │ └── app-plus │ │ │ │ ├── static │ │ │ │ ├── QQ.png │ │ │ │ ├── home.png │ │ │ │ ├── homea.png │ │ │ │ ├── logo.png │ │ │ │ ├── self.png │ │ │ │ ├── selfa.png │ │ │ │ ├── uni.ttf │ │ │ │ ├── weixin.png │ │ │ │ ├── cirfrend.png │ │ │ │ ├── copylink.png │ │ │ │ ├── uni-center │ │ │ │ │ └── logo.png │ │ │ │ └── QuShe-login │ │ │ │ │ └── QuShe-login.jpeg │ │ │ │ ├── __uniappsuccess.png │ │ │ │ ├── __uniappview.html │ │ │ │ └── app-config.js │ │ └── dev │ │ │ ├── .automator │ │ │ ├── mp-alipay │ │ │ │ └── .automator.json │ │ │ └── mp-weixin │ │ │ │ └── .automator.json │ │ │ ├── mp-alipay │ │ │ ├── mini.project.json │ │ │ ├── app.acss │ │ │ ├── pages │ │ │ │ ├── shoucang │ │ │ │ │ ├── shoucang.axml │ │ │ │ │ ├── shoucang.acss │ │ │ │ │ └── shoucang.json │ │ │ │ ├── sorry │ │ │ │ │ ├── sorry.axml │ │ │ │ │ ├── sorry.json │ │ │ │ │ └── sorry.acss │ │ │ │ ├── center │ │ │ │ │ └── center.json │ │ │ │ ├── about │ │ │ │ │ ├── about.json │ │ │ │ │ ├── about.axml │ │ │ │ │ └── about.acss │ │ │ │ ├── privacy │ │ │ │ │ ├── privacy.json │ │ │ │ │ ├── privacy.axml │ │ │ │ │ └── privacy.acss │ │ │ │ ├── register │ │ │ │ │ ├── register.json │ │ │ │ │ ├── register.acss │ │ │ │ │ └── register.axml │ │ │ │ ├── QuShe-login │ │ │ │ │ └── QuShe-login.json │ │ │ │ ├── feedback │ │ │ │ │ ├── feedback.json │ │ │ │ │ ├── feedback.axml │ │ │ │ │ └── feedback.acss │ │ │ │ ├── ArticleDetail-Game │ │ │ │ │ └── ArticleDetail-Game.json │ │ │ │ ├── ArticleDetail-Life │ │ │ │ │ └── ArticleDetail-Life.json │ │ │ │ ├── VideoDetail-Animal │ │ │ │ │ └── VideoDetail-Animal.json │ │ │ │ ├── VideoDetail-Beauty │ │ │ │ │ └── VideoDetail-Beauty.json │ │ │ │ ├── VideoDetail-Game │ │ │ │ │ └── VideoDetail-Game.json │ │ │ │ ├── VideoDetail-Life │ │ │ │ │ └── VideoDetail-Life.json │ │ │ │ ├── ArticleDetail-Animal │ │ │ │ │ └── ArticleDetail-Animal.json │ │ │ │ ├── ArticleDetail-Beauty │ │ │ │ │ └── ArticleDetail-Beauty.json │ │ │ │ ├── VideoDetail-Interset │ │ │ │ │ └── VideoDetail-Interset.json │ │ │ │ ├── ArticleDetail-Interset │ │ │ │ │ └── ArticleDetail-Interset.json │ │ │ │ ├── VideoDetail-FamilyLife │ │ │ │ │ └── VideoDetail-FamilyLife.json │ │ │ │ ├── VideoDetail-Technology │ │ │ │ │ └── VideoDetail-Technology.json │ │ │ │ ├── ArticleDetail-FamilyLife │ │ │ │ │ └── ArticleDetail-FamilyLife.json │ │ │ │ ├── ArticleDetail-Technology │ │ │ │ │ └── ArticleDetail-Technology.json │ │ │ │ └── index │ │ │ │ │ ├── index.json │ │ │ │ │ └── index.acss │ │ │ ├── components │ │ │ │ ├── share-btn │ │ │ │ │ ├── share-btn.json │ │ │ │ │ └── share-btn.axml │ │ │ │ ├── uni-icons │ │ │ │ │ ├── uni-icons.json │ │ │ │ │ └── uni-icons.axml │ │ │ │ ├── uni-transition │ │ │ │ │ ├── uni-transition.json │ │ │ │ │ ├── uni-transition.axml │ │ │ │ │ └── uni-transition.acss │ │ │ │ ├── uni-popup │ │ │ │ │ ├── uni-popup.json │ │ │ │ │ └── uni-popup.axml │ │ │ │ ├── Game │ │ │ │ │ └── Game.json │ │ │ │ ├── Life │ │ │ │ │ └── Life.json │ │ │ │ ├── Animal │ │ │ │ │ └── Animal.json │ │ │ │ ├── Beauty │ │ │ │ │ └── Beauty.json │ │ │ │ ├── Interset │ │ │ │ │ └── Interset.json │ │ │ │ ├── FamilyLife │ │ │ │ │ └── FamilyLife.json │ │ │ │ └── Technology │ │ │ │ │ └── Technology.json │ │ │ ├── app.js │ │ │ ├── static │ │ │ │ ├── QQ.png │ │ │ │ ├── uni.ttf │ │ │ │ ├── 个人.png │ │ │ │ ├── 个人a.png │ │ │ │ ├── 分享.png │ │ │ │ ├── 微信.png │ │ │ │ ├── 朋友圈.png │ │ │ │ ├── 点赞.png │ │ │ │ ├── 阅读.png │ │ │ │ ├── 首页.png │ │ │ │ ├── 首页a.png │ │ │ │ ├── home.png │ │ │ │ ├── homea.png │ │ │ │ ├── logo.png │ │ │ │ ├── self.png │ │ │ │ ├── selfa.png │ │ │ │ ├── weixin.png │ │ │ │ ├── 复制链接.png │ │ │ │ ├── 点赞 (2).png │ │ │ │ ├── 观看ico.png │ │ │ │ ├── cirfrend.png │ │ │ │ ├── copylink.png │ │ │ │ ├── uni-center │ │ │ │ │ └── logo.png │ │ │ │ └── QuShe-login │ │ │ │ │ └── QuShe-login.jpeg │ │ │ ├── .tea │ │ │ │ └── entryFiles-development │ │ │ │ │ ├── config$.js │ │ │ │ │ └── importScripts$.js │ │ │ └── app.json │ │ │ ├── mp-weixin │ │ │ ├── pages │ │ │ │ ├── shoucang │ │ │ │ │ ├── shoucang.wxml │ │ │ │ │ └── shoucang.json │ │ │ │ ├── sorry │ │ │ │ │ ├── sorry.wxml │ │ │ │ │ ├── sorry.json │ │ │ │ │ └── sorry.wxss │ │ │ │ ├── center │ │ │ │ │ └── center.json │ │ │ │ ├── about │ │ │ │ │ ├── about.json │ │ │ │ │ ├── about.wxml │ │ │ │ │ └── about.wxss │ │ │ │ ├── privacy │ │ │ │ │ ├── privacy.json │ │ │ │ │ ├── privacy.wxml │ │ │ │ │ └── privacy.wxss │ │ │ │ ├── register │ │ │ │ │ ├── register.json │ │ │ │ │ ├── register.wxss │ │ │ │ │ └── register.wxml │ │ │ │ ├── QuShe-login │ │ │ │ │ └── QuShe-login.json │ │ │ │ ├── feedback │ │ │ │ │ ├── feedback.json │ │ │ │ │ ├── feedback.wxml │ │ │ │ │ └── feedback.wxss │ │ │ │ ├── ArticleDetail-Game │ │ │ │ │ └── ArticleDetail-Game.json │ │ │ │ ├── ArticleDetail-Life │ │ │ │ │ └── ArticleDetail-Life.json │ │ │ │ ├── VideoDetail-Animal │ │ │ │ │ └── VideoDetail-Animal.json │ │ │ │ ├── VideoDetail-Beauty │ │ │ │ │ └── VideoDetail-Beauty.json │ │ │ │ ├── VideoDetail-Game │ │ │ │ │ └── VideoDetail-Game.json │ │ │ │ ├── VideoDetail-Life │ │ │ │ │ └── VideoDetail-Life.json │ │ │ │ ├── ArticleDetail-Animal │ │ │ │ │ └── ArticleDetail-Animal.json │ │ │ │ ├── ArticleDetail-Beauty │ │ │ │ │ └── ArticleDetail-Beauty.json │ │ │ │ ├── VideoDetail-Interset │ │ │ │ │ └── VideoDetail-Interset.json │ │ │ │ ├── ArticleDetail-Interset │ │ │ │ │ └── ArticleDetail-Interset.json │ │ │ │ ├── VideoDetail-FamilyLife │ │ │ │ │ └── VideoDetail-FamilyLife.json │ │ │ │ ├── VideoDetail-Technology │ │ │ │ │ └── VideoDetail-Technology.json │ │ │ │ ├── ArticleDetail-FamilyLife │ │ │ │ │ └── ArticleDetail-FamilyLife.json │ │ │ │ ├── ArticleDetail-Technology │ │ │ │ │ └── ArticleDetail-Technology.json │ │ │ │ └── index │ │ │ │ │ ├── index.json │ │ │ │ │ └── index.wxss │ │ │ ├── components │ │ │ │ ├── share-btn │ │ │ │ │ ├── share-btn.json │ │ │ │ │ └── share-btn.wxml │ │ │ │ ├── uni-icons │ │ │ │ │ ├── uni-icons.json │ │ │ │ │ └── uni-icons.wxml │ │ │ │ ├── uni-transition │ │ │ │ │ ├── uni-transition.json │ │ │ │ │ ├── uni-transition.wxml │ │ │ │ │ └── uni-transition.wxss │ │ │ │ ├── uni-popup │ │ │ │ │ ├── uni-popup.json │ │ │ │ │ └── uni-popup.wxml │ │ │ │ ├── Game │ │ │ │ │ └── Game.json │ │ │ │ ├── Life │ │ │ │ │ └── Life.json │ │ │ │ ├── Animal │ │ │ │ │ └── Animal.json │ │ │ │ ├── Beauty │ │ │ │ │ └── Beauty.json │ │ │ │ ├── Interset │ │ │ │ │ └── Interset.json │ │ │ │ ├── FamilyLife │ │ │ │ │ └── FamilyLife.json │ │ │ │ └── Technology │ │ │ │ │ └── Technology.json │ │ │ ├── app.js │ │ │ ├── static │ │ │ │ ├── QQ.png │ │ │ │ ├── uni.ttf │ │ │ │ ├── 个人.png │ │ │ │ ├── 个人a.png │ │ │ │ ├── 分享.png │ │ │ │ ├── 微信.png │ │ │ │ ├── 朋友圈.png │ │ │ │ ├── 点赞.png │ │ │ │ ├── 阅读.png │ │ │ │ ├── 首页.png │ │ │ │ ├── 首页a.png │ │ │ │ ├── home.png │ │ │ │ ├── homea.png │ │ │ │ ├── logo.png │ │ │ │ ├── self.png │ │ │ │ ├── selfa.png │ │ │ │ ├── weixin.png │ │ │ │ ├── 复制链接.png │ │ │ │ ├── 点赞 (2).png │ │ │ │ ├── 观看ico.png │ │ │ │ ├── cirfrend.png │ │ │ │ ├── copylink.png │ │ │ │ ├── uni-center │ │ │ │ │ └── logo.png │ │ │ │ └── QuShe-login │ │ │ │ │ └── QuShe-login.jpeg │ │ │ ├── app.wxss │ │ │ ├── sitemap.json │ │ │ ├── sitemap1.json │ │ │ ├── sitemap11.json │ │ │ ├── sitemap12.json │ │ │ ├── sitemap16.json │ │ │ ├── sitemap18.json │ │ │ ├── sitemap2.json │ │ │ ├── sitemap20.json │ │ │ ├── sitemap22.json │ │ │ ├── sitemap23.json │ │ │ ├── sitemap26.json │ │ │ ├── sitemap30.json │ │ │ ├── sitemap31.json │ │ │ ├── sitemap32.json │ │ │ ├── sitemap33.json │ │ │ ├── sitemap35.json │ │ │ ├── sitemap39.json │ │ │ ├── sitemap4.json │ │ │ ├── sitemap40.json │ │ │ ├── sitemap47.json │ │ │ ├── sitemap49.json │ │ │ ├── sitemap5.json │ │ │ ├── sitemap53.json │ │ │ ├── sitemap54.json │ │ │ ├── sitemap58.json │ │ │ ├── sitemap59.json │ │ │ ├── sitemap60.json │ │ │ ├── sitemap61.json │ │ │ ├── sitemap62.json │ │ │ ├── sitemap64.json │ │ │ ├── sitemap66.json │ │ │ ├── sitemap69.json │ │ │ ├── sitemap70.json │ │ │ ├── sitemap71.json │ │ │ ├── sitemap73.json │ │ │ ├── sitemap75.json │ │ │ ├── sitemap77.json │ │ │ ├── sitemap78.json │ │ │ ├── sitemap8.json │ │ │ ├── sitemap80.json │ │ │ ├── sitemap81.json │ │ │ ├── sitemap84.json │ │ │ ├── sitemap85.json │ │ │ ├── sitemap87.json │ │ │ ├── sitemap89.json │ │ │ ├── sitemap90.json │ │ │ ├── sitemap91.json │ │ │ ├── sitemap92.json │ │ │ ├── sitemap94.json │ │ │ ├── sitemap95.json │ │ │ ├── sitemap96.json │ │ │ ├── project.config.json │ │ │ └── app.json │ │ │ └── .sourcemap │ │ │ └── mp-weixin │ │ │ ├── components │ │ │ ├── zuj1 │ │ │ │ └── zuj1.js.map │ │ │ ├── zuj2 │ │ │ │ └── zuj2.js.map │ │ │ ├── zuj3 │ │ │ │ └── zuj3.js.map │ │ │ ├── zuj4 │ │ │ │ └── zuj4.js.map │ │ │ ├── zuj5 │ │ │ │ └── zuj5.js.map │ │ │ ├── zuj6 │ │ │ │ └── zuj6.js.map │ │ │ └── zuj7 │ │ │ │ └── zuj7.js.map │ │ │ └── pages │ │ │ ├── my │ │ │ └── my.js.map │ │ │ ├── detail05 │ │ │ └── detail05.js.map │ │ │ └── vdetail05 │ │ │ └── vdetail05.js.map │ └── res │ │ └── icons │ │ ├── 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 │ │ └── 1024x1024.png ├── static │ ├── QQ.png │ ├── 个人.png │ ├── 分享.png │ ├── 微信.png │ ├── 点赞.png │ ├── 阅读.png │ ├── 首页.png │ ├── home.png │ ├── homea.png │ ├── logo.png │ ├── self.png │ ├── selfa.png │ ├── uni.ttf │ ├── 个人a.png │ ├── 复制链接.png │ ├── 朋友圈.png │ ├── 观看ico.png │ ├── 首页a.png │ ├── weixin.png │ ├── 点赞 (2).png │ ├── cirfrend.png │ ├── copylink.png │ ├── uni-center │ │ └── logo.png │ └── QuShe-login │ │ └── QuShe-login.jpeg ├── components │ ├── .DS_Store │ ├── v-tabs │ │ └── .DS_Store │ ├── uni │ │ ├── uni-icons │ │ │ └── uni.ttf │ │ ├── uni-test │ │ │ └── uni-test.vue │ │ ├── uni-popup │ │ │ ├── share.js │ │ │ ├── message.js │ │ │ └── popup.js │ │ ├── uni-status-bar │ │ │ └── uni-status-bar.vue │ │ ├── uni-swipe-action │ │ │ └── uni-swipe-action.vue │ │ ├── uni-list-chat │ │ │ └── uni-list-chat.scss │ │ ├── uni-collapse │ │ │ └── uni-collapse.vue │ │ ├── uni-easyinput │ │ │ └── common.js │ │ ├── uni-td │ │ │ └── uni-td.vue │ │ └── uni-list │ │ │ └── uni-refresh.vue │ └── uni-icon.vue ├── data.js ├── pages │ ├── shoucang │ │ └── shoucang.vue │ ├── sorry │ │ └── sorry.vue │ ├── about │ │ └── about.vue │ └── privacy │ │ └── privacy.vue ├── utils │ ├── request.js │ └── format.js └── main.js ├── 头像挂件 ├── README.md ├── app.css ├── static │ └── image │ │ ├── left.png │ │ ├── mask │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ └── avatar_mask.png │ │ ├── right.png │ │ ├── china │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── avatar_mask.png │ │ ├── newyear │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ └── avatar_mask.png │ │ ├── page-bg.png │ │ ├── christmas │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ └── avatar_mask.png │ │ └── left.svg ├── main.js ├── pages.json ├── App.vue └── LICENSE └── 页面加载 ├── static └── logo.png ├── main.js ├── App.vue ├── pages └── index │ ├── loader.vue │ ├── index.vue │ └── Buttons.vue ├── README.md └── pages.json /kepu/unpackage/dist/build/.automator/h5/.automator.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/.automator/app-plus/.automator.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/.automator/mp-weixin/.automator.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.automator/mp-alipay/.automator.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.automator/mp-weixin/.automator.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/mini.project.json: -------------------------------------------------------------------------------- 1 | { 2 | "appid": "" 3 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/app.acss: -------------------------------------------------------------------------------- 1 | @import './common/main.acss'; 2 | 3 | -------------------------------------------------------------------------------- /头像挂件/README.md: -------------------------------------------------------------------------------- 1 | # 头像挂件小助手 2 | ### 头像加挂件小程序模板,直接下载可用 3 | 4 | #### 微信搜索『红旗头像小帮手』或者扫描小程序码体验 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/shoucang/shoucang.axml: -------------------------------------------------------------------------------- 1 | 我的收藏 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/shoucang/shoucang.wxml: -------------------------------------------------------------------------------- 1 | 我的收藏 -------------------------------------------------------------------------------- /头像挂件/app.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | page { 5 | height: 100%; 6 | } 7 | -------------------------------------------------------------------------------- /kepu/static/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/QQ.png -------------------------------------------------------------------------------- /kepu/static/个人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/个人.png -------------------------------------------------------------------------------- /kepu/static/分享.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/分享.png -------------------------------------------------------------------------------- /kepu/static/微信.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/微信.png -------------------------------------------------------------------------------- /kepu/static/点赞.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/点赞.png -------------------------------------------------------------------------------- /kepu/static/阅读.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/阅读.png -------------------------------------------------------------------------------- /kepu/static/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/首页.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/shoucang/shoucang.wxml: -------------------------------------------------------------------------------- 1 | 我的收藏 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/shoucang/shoucang.acss: -------------------------------------------------------------------------------- 1 | /* required by usingComponents */ -------------------------------------------------------------------------------- /kepu/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/home.png -------------------------------------------------------------------------------- /kepu/static/homea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/homea.png -------------------------------------------------------------------------------- /kepu/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/logo.png -------------------------------------------------------------------------------- /kepu/static/self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/self.png -------------------------------------------------------------------------------- /kepu/static/selfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/selfa.png -------------------------------------------------------------------------------- /kepu/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/uni.ttf -------------------------------------------------------------------------------- /kepu/static/个人a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/个人a.png -------------------------------------------------------------------------------- /kepu/static/复制链接.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/复制链接.png -------------------------------------------------------------------------------- /kepu/static/朋友圈.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/朋友圈.png -------------------------------------------------------------------------------- /kepu/static/观看ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/观看ico.png -------------------------------------------------------------------------------- /kepu/static/首页a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/首页a.png -------------------------------------------------------------------------------- /页面加载/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/页面加载/static/logo.png -------------------------------------------------------------------------------- /kepu/static/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/weixin.png -------------------------------------------------------------------------------- /kepu/static/点赞 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/点赞 (2).png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/sorry/sorry.wxml: -------------------------------------------------------------------------------- 1 | 抱歉!此功能尚未开发 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/sorry/sorry.axml: -------------------------------------------------------------------------------- 1 | 抱歉!此功能尚未开发 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/sorry/sorry.wxml: -------------------------------------------------------------------------------- 1 | 抱歉!此功能尚未开发 -------------------------------------------------------------------------------- /kepu/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/components/.DS_Store -------------------------------------------------------------------------------- /kepu/static/cirfrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/cirfrend.png -------------------------------------------------------------------------------- /kepu/static/copylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/copylink.png -------------------------------------------------------------------------------- /头像挂件/static/image/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/left.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/0.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/1.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/2.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/3.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/4.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/5.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/6.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/7.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/8.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/9.png -------------------------------------------------------------------------------- /头像挂件/static/image/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/right.png -------------------------------------------------------------------------------- /kepu/static/uni-center/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/uni-center/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/center/center.json: -------------------------------------------------------------------------------- 1 | { 2 | "pullRefresh": false, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /头像挂件/static/image/china/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/0.png -------------------------------------------------------------------------------- /头像挂件/static/image/china/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/1.png -------------------------------------------------------------------------------- /头像挂件/static/image/china/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/2.png -------------------------------------------------------------------------------- /头像挂件/static/image/china/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/3.png -------------------------------------------------------------------------------- /头像挂件/static/image/china/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/4.png -------------------------------------------------------------------------------- /头像挂件/static/image/china/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/5.png -------------------------------------------------------------------------------- /头像挂件/static/image/china/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/6.png -------------------------------------------------------------------------------- /头像挂件/static/image/china/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/7.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/10.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/11.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/12.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/13.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/14.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/15.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/16.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/17.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/18.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/19.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/20.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/21.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/22.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/23.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/24.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/25.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/26.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/27.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/28.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/0.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/1.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/2.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/3.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/4.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/5.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/6.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/7.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/8.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/9.png -------------------------------------------------------------------------------- /头像挂件/static/image/page-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/page-bg.png -------------------------------------------------------------------------------- /kepu/components/v-tabs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/components/v-tabs/.DS_Store -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/0.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/1.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/2.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/3.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/4.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/5.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/6.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/7.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/8.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/9.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/10.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/11.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/12.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/13.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/14.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/15.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/16.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/share-btn/share-btn.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/center/center.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": false, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/sorry/sorry.wxss: -------------------------------------------------------------------------------- 1 | .sorry{margin-top:20px;text-align:center;font-size:20px;font-weight:600} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/share-btn/share-btn.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/share-btn/share-btn.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/center/center.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": false, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/120x120.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/144x144.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/152x152.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/167x167.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/180x180.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/192x192.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/20x20.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/29x29.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/40x40.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/58x58.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/60x60.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/72x72.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/76x76.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/80x80.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/87x87.png -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/96x96.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/10.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/11.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/12.png -------------------------------------------------------------------------------- /kepu/components/uni/uni-icons/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/components/uni/uni-icons/uni.ttf -------------------------------------------------------------------------------- /kepu/unpackage/res/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/res/icons/1024x1024.png -------------------------------------------------------------------------------- /头像挂件/static/image/mask/avatar_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/mask/avatar_mask.png -------------------------------------------------------------------------------- /kepu/static/QuShe-login/QuShe-login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/static/QuShe-login/QuShe-login.jpeg -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-transition/uni-transition.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/uni-transition/uni-transition.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/uni-transition/uni-transition.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /头像挂件/static/image/china/avatar_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/china/avatar_mask.png -------------------------------------------------------------------------------- /头像挂件/static/image/newyear/avatar_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/newyear/avatar_mask.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/QQ.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/uni.ttf -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/个人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/个人.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/个人a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/个人a.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/分享.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/分享.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/微信.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/微信.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/朋友圈.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/朋友圈.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/点赞.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/点赞.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/阅读.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/阅读.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/首页.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/首页a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/首页a.png -------------------------------------------------------------------------------- /头像挂件/static/image/christmas/avatar_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/头像挂件/static/image/christmas/avatar_mask.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/home.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/homea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/homea.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/self.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/selfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/selfa.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/weixin.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/复制链接.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/复制链接.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/点赞 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/点赞 (2).png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/观看ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/观看ico.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/sorry/sorry.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "敬请期待", 3 | "pullRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/QQ.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/cirfrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/cirfrend.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/copylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/copylink.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/shoucang/shoucang.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "我的收藏", 3 | "pullRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/QQ.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/uni.ttf -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/个人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/个人.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/个人a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/个人a.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/分享.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/分享.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/微信.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/微信.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/朋友圈.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/朋友圈.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/点赞.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/点赞.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/阅读.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/阅读.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/首页.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/首页a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/首页a.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/QQ.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/uni.ttf -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/个人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/个人.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/个人a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/个人a.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/分享.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/分享.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/微信.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/微信.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/朋友圈.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/朋友圈.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/点赞.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/点赞.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/阅读.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/阅读.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/首页.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/首页a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/首页a.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/home.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/homea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/homea.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/self.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/selfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/selfa.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/uni.ttf -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/QQ.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/home.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/self.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/uni.ttf -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/home.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/homea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/homea.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/self.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/selfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/selfa.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/weixin.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/复制链接.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/复制链接.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/点赞 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/点赞 (2).png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/观看ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/观看ico.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/home.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/homea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/homea.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/self.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/selfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/selfa.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/weixin.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/复制链接.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/复制链接.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/点赞 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/点赞 (2).png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/观看ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/观看ico.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/weixin.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/homea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/homea.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/selfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/selfa.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/weixin.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/cirfrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/cirfrend.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/copylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/copylink.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | 3 | [data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/cirfrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/cirfrend.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/copylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/copylink.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/cirfrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/cirfrend.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/copylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/copylink.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/uni-center/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/uni-center/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | 3 | [data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;} -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/sorry/sorry.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "敬请期待", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/cirfrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/cirfrend.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/copylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/copylink.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/components/zuj1/zuj1.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"components/zuj1/zuj1.js","sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/components/zuj2/zuj2.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"components/zuj2/zuj2.js","sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/components/zuj3/zuj3.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"components/zuj3/zuj3.js","sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/components/zuj4/zuj4.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"components/zuj4/zuj4.js","sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/components/zuj5/zuj5.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"components/zuj5/zuj5.js","sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/components/zuj6/zuj6.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"components/zuj6/zuj6.js","sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/components/zuj7/zuj7.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"components/zuj7/zuj7.js","sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/sorry/sorry.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "敬请期待", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/shoucang/shoucang.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的收藏", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/shoucang/shoucang.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的收藏", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/uni-center/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/uni-center/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "关于", 3 | "pullRefresh": false, 4 | "titleBarColor": "#FFFFFF", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/uni-center/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/uni-center/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/uni-center/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/uni-center/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/uni-center/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/uni-center/logo.png -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/QuShe-login/QuShe-login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/QuShe-login/QuShe-login.jpeg -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/img/QuShe-login.2c97b557.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/h5/static/img/QuShe-login.2c97b557.jpeg -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/privacy/privacy.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "服务条款与隐私", 3 | "pullRefresh": false, 4 | "titleBarColor": "#FFFFFF", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "欢迎来到注册页面", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/static/QuShe-login/QuShe-login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/app-plus/static/QuShe-login/QuShe-login.jpeg -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/static/QuShe-login/QuShe-login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/build/mp-weixin/static/QuShe-login/QuShe-login.jpeg -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/static/QuShe-login/QuShe-login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-alipay/static/QuShe-login/QuShe-login.jpeg -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/static/QuShe-login/QuShe-login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-songyuan/plug-in-unit/HEAD/kepu/unpackage/dist/dev/mp-weixin/static/QuShe-login/QuShe-login.jpeg -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-popup/uni-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-transition": "/components/uni-transition/uni-transition" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/uni-popup/uni-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-transition": "/components/uni-transition/uni-transition" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/uni-popup/uni-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-transition": "/components/uni-transition/uni-transition" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#FFFFFF", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/register/register.wxss: -------------------------------------------------------------------------------- 1 | input{border:1px solid #000;width:90%;margin:50rpx auto;height:50rpx}button{margin-top:100rpx;width:80%}text{margin-left:50rpx}.b1{background-color:#3c3} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#FFFFFF", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /页面加载/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | 4 | Vue.config.productionTip = false 5 | 6 | App.mpType = 'app' 7 | 8 | const app = new Vue({ 9 | ...App 10 | }) 11 | app.$mount() 12 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/privacy/privacy.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "服务条款与隐私", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#FFFFFF", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "欢迎来到注册页面", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/privacy/privacy.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "服务条款与隐私", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#FFFFFF", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "欢迎来到注册页面", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /头像挂件/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | 4 | Vue.config.productionTip = false 5 | 6 | 7 | App.mpType = 'app' 8 | 9 | const app = new Vue({ 10 | ...App 11 | }) 12 | app.$mount() 13 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/.tea/entryFiles-development/config$.js: -------------------------------------------------------------------------------- 1 | 2 | const g = typeof global !== 'undefined' ? global : self; 3 | g.appXAppJson = { 4 | "app": { 5 | "$homepage": "pages/index/index" 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/QuShe-login/QuShe-login.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "欢迎来到登录页面", 3 | "titleBarColor": "#fff", 4 | "usingComponents": { 5 | "uni-icon": "/components/uni-icons/uni-icons" 6 | } 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap1.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap11.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap12.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap16.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap18.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap2.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap20.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap22.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap23.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap26.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap30.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap31.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap32.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap33.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap35.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap39.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap4.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap40.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap47.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap49.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap5.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap53.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap54.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap58.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap59.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap60.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap61.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap62.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap64.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap66.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap69.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap70.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap71.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap73.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap75.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap77.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap78.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap8.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap80.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap81.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap84.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap85.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap87.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap89.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap90.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap91.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap92.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap94.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap95.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/sitemap96.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/about/about.axml: -------------------------------------------------------------------------------- 1 | 本平台所有资源由以下资源库授权使用:以上排名不分先后 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/about/about.wxml: -------------------------------------------------------------------------------- 1 | 本平台所有资源由以下资源库授权使用:以上排名不分先后 -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/about/about.wxml: -------------------------------------------------------------------------------- 1 | 本平台所有资源由以下资源库授权使用:以上排名不分先后 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/.tea/entryFiles-development/importScripts$.js: -------------------------------------------------------------------------------- 1 | if(!self.Map || !self.Set || !self.Symbol) { 2 | importScripts('https://gw.alipayobjects.com/as/g/appx_release/deps/1.0.3/es6-set-map-symbol.js'); 3 | } 4 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/feedback/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "用户反馈", 3 | "pullRefresh": false, 4 | "titleBarColor": "#0984e3", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/QuShe-login/QuShe-login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "欢迎来到登录页面", 3 | "navigationBarBackgroundColor": "#fff", 4 | "usingComponents": { 5 | "uni-icon": "/components/uni-icons/uni-icons" 6 | } 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/QuShe-login/QuShe-login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "欢迎来到登录页面", 3 | "navigationBarBackgroundColor": "#fff", 4 | "usingComponents": { 5 | "uni-icon": "/components/uni-icons/uni-icons" 6 | } 7 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/uni-icons/uni-icons.axml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /kepu/components/uni/uni-test/uni-test.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | 17 | 20 | -------------------------------------------------------------------------------- /kepu/data.js: -------------------------------------------------------------------------------- 1 | //var url3 = 'https://openapp.fatiao.pro/api/v1/fatiao/index/list?id=1&p=1¬channel=27&order=1&limit=1&channel_id=1'; 2 | 3 | const dataInfo = { 4 | "IS_PRAISE": "0", //是否点赞 5 | "PRAISE_NUM": "1", //点赞数 6 | }; 7 | 8 | export default { 9 | dataInfo, 10 | } 11 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/Game/Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/Life/Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/Game/Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/Life/Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/pages/shoucang/shoucang.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | 17 | 20 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/Game/Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/Life/Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/Animal/Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/Beauty/Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/Animal/Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/Beauty/Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/Animal/Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/Beauty/Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/Interset/Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/Interset/Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/Interset/Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/FamilyLife/FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/Technology/Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/FamilyLife/FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/Technology/Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/FamilyLife/FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-icons/uni-icons", 4 | "uni-popup": "/components/uni-popup/uni-popup", 5 | "share-btn": "/components/share-btn/share-btn" 6 | }, 7 | "component": true 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/Technology/Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons", 5 | "uni-popup": "/components/uni-popup/uni-popup", 6 | "share-btn": "/components/share-btn/share-btn" 7 | } 8 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/about/about.wxss: -------------------------------------------------------------------------------- 1 | page{background-color:#f1f1f1}.Box{margin:40rpx auto}.Box .content{text-align:center;font-size:40rpx}.Box .image{margin-top:12%;text-align:center}.Box .image image{width:200rpx}.Box .rank{margin-top:80rpx;font-size:30rpx;text-align:center;color:#7f8fa6} -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-transition/uni-transition.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/uni-transition/uni-transition.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/feedback/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "用户反馈", 3 | "enablePullDownRefresh": false, 4 | "navigationBarTextStyle": "white", 5 | "navigationBarBackgroundColor": "#0984e3", 6 | "usingComponents": { 7 | "uni-icons": "/components/uni-icons/uni-icons" 8 | } 9 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/feedback/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "用户反馈", 3 | "enablePullDownRefresh": false, 4 | "navigationBarTextStyle": "white", 5 | "navigationBarBackgroundColor": "#0984e3", 6 | "usingComponents": { 7 | "uni-icons": "/components/uni-icons/uni-icons" 8 | } 9 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/uni-transition/uni-transition.axml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/components/uni/uni-popup/share.js: -------------------------------------------------------------------------------- 1 | export default { 2 | created() { 3 | if (this.type === 'share') { 4 | // 关闭点击 5 | this.mkclick = false 6 | } 7 | }, 8 | methods: { 9 | customOpen() { 10 | console.log('share 打开了'); 11 | }, 12 | customClose() { 13 | console.log('share 关闭了'); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /页面加载/App.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 18 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/register/register.acss: -------------------------------------------------------------------------------- 1 | 2 | input{ 3 | border: 1px solid #000000; 4 | width: 90%; 5 | margin: 50rpx auto; 6 | height: 50rpx; 7 | } 8 | button{ 9 | margin-top: 100rpx; 10 | width: 80%; 11 | } 12 | text{ 13 | margin-left: 50rpx; 14 | } 15 | .b1{ 16 | background-color: rgb(51,204,51); 17 | } 18 | 19 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/register/register.wxss: -------------------------------------------------------------------------------- 1 | 2 | input{ 3 | border: 1px solid #000000; 4 | width: 90%; 5 | margin: 50rpx auto; 6 | height: 50rpx; 7 | } 8 | button{ 9 | margin-top: 100rpx; 10 | width: 80%; 11 | } 12 | text{ 13 | margin-left: 50rpx; 14 | } 15 | .b1{ 16 | background-color: rgb(51,204,51); 17 | } 18 | 19 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/pages/my/my.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["uni-app:///main.js"],"names":["createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mF;AACAA,UAAU,CAACC,WAAD,CAAV,C","file":"pages/my/my.js","sourcesContent":["import 'uni-pages';\nimport Vue from 'vue'\nimport Page from './pages/my/my.vue'\ncreatePage(Page)"],"sourceRoot":""} -------------------------------------------------------------------------------- /kepu/pages/sorry/sorry.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 12 | 13 | 21 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/ArticleDetail-Game/ArticleDetail-Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/ArticleDetail-Life/ArticleDetail-Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/VideoDetail-Animal/VideoDetail-Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/VideoDetail-Beauty/VideoDetail-Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-popup": "/components/uni-popup/uni-popup", 7 | "share-btn": "/components/share-btn/share-btn", 8 | "uni-icons": "/components/uni-icons/uni-icons" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/VideoDetail-Game/VideoDetail-Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/VideoDetail-Life/VideoDetail-Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/ArticleDetail-Animal/ArticleDetail-Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/ArticleDetail-Beauty/ArticleDetail-Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/VideoDetail-Interset/VideoDetail-Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/ArticleDetail-Interset/ArticleDetail-Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/VideoDetail-FamilyLife/VideoDetail-FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/VideoDetail-Technology/VideoDetail-Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/feedback/feedback.wxss: -------------------------------------------------------------------------------- 1 | page{background-color:#f1f1f1}.Box .uni-textarea{margin-top:20rpx;padding:40rpx 0 0 70rpx;background-color:#fff}.Box .picture{margin:60rpx 0 0 60rpx;width:200rpx;height:180rpx;border:1px dashed #a4b0be;padding:20rpx 0 0 0;text-align:center}.Box .picture .tianjia{font-size:30rpx;color:#a4b0be}.Box .button{margin-top:60rpx;padding:60rpx} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/ArticleDetail-FamilyLife/ArticleDetail-FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/ArticleDetail-Technology/ArticleDetail-Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "详情", 3 | "pullRefresh": false, 4 | "titleBarColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/register/register.wxml: -------------------------------------------------------------------------------- 1 | 请填写用户名:请填写密码: -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/pages/detail05/detail05.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["uni-app:///main.js"],"names":["createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mG;AACAA,UAAU,CAACC,eAAD,CAAV,C","file":"pages/detail05/detail05.js","sourcesContent":["import 'uni-pages';\nimport Vue from 'vue'\nimport Page from './pages/detail05/detail05.vue'\ncreatePage(Page)"],"sourceRoot":""} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/.sourcemap/mp-weixin/pages/vdetail05/vdetail05.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["uni-app:///main.js"],"names":["createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,sG;AACAA,UAAU,CAACC,gBAAD,CAAV,C","file":"pages/vdetail05/vdetail05.js","sourcesContent":["import 'uni-pages';\nimport Vue from 'vue'\nimport Page from './pages/vdetail05/vdetail05.vue'\ncreatePage(Page)"],"sourceRoot":""} -------------------------------------------------------------------------------- /头像挂件/pages.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | { 4 | "path": "pages/index/index", 5 | "style": { 6 | "disableScroll": true, 7 | "navigationStyle": "custom" 8 | } 9 | } 10 | ], 11 | "globalStyle": { 12 | "navigationBarTextStyle": "black", 13 | "navigationBarTitleText": "头像挂件小帮手", 14 | "navigationBarBackgroundColor": "#FFF", 15 | "backgroundColor": "#C12928" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/VideoDetail-Game/VideoDetail-Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/VideoDetail-Life/VideoDetail-Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/ArticleDetail-Game/ArticleDetail-Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/ArticleDetail-Life/ArticleDetail-Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/VideoDetail-Animal/VideoDetail-Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/VideoDetail-Beauty/VideoDetail-Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-popup": "/components/uni-popup/uni-popup", 7 | "share-btn": "/components/share-btn/share-btn", 8 | "uni-icons": "/components/uni-icons/uni-icons" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/VideoDetail-Game/VideoDetail-Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/VideoDetail-Life/VideoDetail-Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/ArticleDetail-Game/ArticleDetail-Game.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/ArticleDetail-Life/ArticleDetail-Life.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/VideoDetail-Animal/VideoDetail-Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/VideoDetail-Beauty/VideoDetail-Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-popup": "/components/uni-popup/uni-popup", 7 | "share-btn": "/components/share-btn/share-btn", 8 | "uni-icons": "/components/uni-icons/uni-icons" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/ArticleDetail-Animal/ArticleDetail-Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/ArticleDetail-Beauty/ArticleDetail-Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/VideoDetail-Interset/VideoDetail-Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/ArticleDetail-Animal/ArticleDetail-Animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/ArticleDetail-Beauty/ArticleDetail-Beauty.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/ArticleDetail-Interset/ArticleDetail-Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/VideoDetail-FamilyLife/VideoDetail-FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/VideoDetail-Interset/VideoDetail-Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/VideoDetail-Technology/VideoDetail-Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/ArticleDetail-Interset/ArticleDetail-Interset.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/VideoDetail-FamilyLife/VideoDetail-FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/VideoDetail-Technology/VideoDetail-Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/ArticleDetail-FamilyLife/ArticleDetail-FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/ArticleDetail-Technology/ArticleDetail-Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/ArticleDetail-FamilyLife/ArticleDetail-FamilyLife.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/ArticleDetail-Technology/ArticleDetail-Technology.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": false, 4 | "navigationBarBackgroundColor": "#fff", 5 | "usingComponents": { 6 | "uni-icons": "/components/uni-icons/uni-icons", 7 | "uni-popup": "/components/uni-popup/uni-popup", 8 | "share-btn": "/components/share-btn/share-btn" 9 | } 10 | } -------------------------------------------------------------------------------- /头像挂件/App.vue: -------------------------------------------------------------------------------- 1 | 8 | 18 | 19 | 22 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "family-life": "/components/FamilyLife/FamilyLife", 4 | "technology": "/components/Technology/Technology", 5 | "beauty": "/components/Beauty/Beauty", 6 | "animal": "/components/Animal/Animal", 7 | "game": "/components/Game/Game", 8 | "life": "/components/Life/Life", 9 | "interset": "/components/Interset/Interset" 10 | } 11 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "family-life": "/components/FamilyLife/FamilyLife", 4 | "technology": "/components/Technology/Technology", 5 | "beauty": "/components/Beauty/Beauty", 6 | "animal": "/components/Animal/Animal", 7 | "game": "/components/Game/Game", 8 | "life": "/components/Life/Life", 9 | "interset": "/components/Interset/Interset" 10 | } 11 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "family-life": "/components/FamilyLife/FamilyLife", 4 | "technology": "/components/Technology/Technology", 5 | "beauty": "/components/Beauty/Beauty", 6 | "animal": "/components/Animal/Animal", 7 | "game": "/components/Game/Game", 8 | "life": "/components/Life/Life", 9 | "interset": "/components/Interset/Interset" 10 | } 11 | } -------------------------------------------------------------------------------- /kepu/components/uni/uni-popup/message.js: -------------------------------------------------------------------------------- 1 | export default { 2 | created() { 3 | if (this.type === 'message') { 4 | // 不显示遮罩 5 | this.maskShow = false 6 | // 获取子组件对象 7 | this.childrenMsg = null 8 | } 9 | }, 10 | methods: { 11 | customOpen() { 12 | if (this.childrenMsg) { 13 | this.childrenMsg.open() 14 | } 15 | }, 16 | customClose() { 17 | if (this.childrenMsg) { 18 | this.childrenMsg.close() 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/privacy/privacy.wxss: -------------------------------------------------------------------------------- 1 | page{background-color:#f1f1f1}.Box{margin:50rpx auto}.Box .title{width:100%;height:100rpx;font-size:60rpx;font-weight:700;text-align:center}.Box .message{margin-top:20rpx;padding:20rpx;font-size:40rpx;line-height:1.5em;text-indent:2em}.Box .message text{color:#0652dd}.Box .message .content{text-indent:2em}.Box .button{padding:20rpx;display:-webkit-box;display:-webkit-flex;display:flex}.Box .button button{color:#2980b9} -------------------------------------------------------------------------------- /kepu/components/uni/uni-popup/popup.js: -------------------------------------------------------------------------------- 1 | import message from './message.js'; 2 | // 定义 type 类型:弹出类型:top/bottom/center 3 | const config = { 4 | // 顶部弹出 5 | top:'top', 6 | // 底部弹出 7 | bottom:'bottom', 8 | // 居中弹出 9 | center:'center', 10 | // 消息提示 11 | message:'top', 12 | // 对话框 13 | dialog:'center', 14 | // 分享 15 | share:'bottom', 16 | } 17 | 18 | export default { 19 | data(){ 20 | return { 21 | config:config 22 | } 23 | }, 24 | mixins: [message] 25 | } 26 | -------------------------------------------------------------------------------- /kepu/utils/request.js: -------------------------------------------------------------------------------- 1 | const baseUrl = "https://openapp.fatiao.pro" 2 | 3 | export function myRequestGet(url, data) { 4 | return new Promise((resolve, reject) => { 5 | uni.request({ 6 | url: baseUrl + url, 7 | method: "GET", 8 | data: data, 9 | success: function(res) { 10 | // console.log("get请求到了数据",res) 11 | resolve(res.data.data.list) 12 | }, 13 | fail: function(err) { 14 | console.log("没拿到数据") 15 | reject(err) 16 | } 17 | }) 18 | }) 19 | } 20 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/share-btn/share-btn.axml: -------------------------------------------------------------------------------- 1 | {{item.text}} -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/share-btn/share-btn.wxml: -------------------------------------------------------------------------------- 1 | {{item.text}} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/share-btn/share-btn.wxml: -------------------------------------------------------------------------------- 1 | {{item.text}} -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/feedback/feedback.axml: -------------------------------------------------------------------------------- 1 | 添加图片 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/feedback/feedback.wxml: -------------------------------------------------------------------------------- 1 | 添加图片 -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/feedback/feedback.wxml: -------------------------------------------------------------------------------- 1 | 添加图片 -------------------------------------------------------------------------------- /kepu/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | // 全局引入字体图标组件 4 | import uniIcons from './components/uni-icons/uni-icons.vue' 5 | Vue.component('uniIcons', uniIcons) 6 | 7 | //引入插件 8 | import uniPopup from './components/uni-popup/uni-popup.vue'; 9 | import shareBtn from './components/share-btn/share-btn.vue'; 10 | // 注册插件 11 | components: { 12 | 'uniPopup,' 13 | uniPopup, 14 | 'shareBtn', 15 | shareBtn 16 | } 17 | 18 | Vue.config.productionTip = false 19 | 20 | App.mpType = 'app' 21 | 22 | const app = new Vue({ 23 | ...App 24 | }) 25 | app.$mount() 26 | -------------------------------------------------------------------------------- /页面加载/pages/index/loader.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 27 | 28 | 33 | -------------------------------------------------------------------------------- /kepu/components/uni/uni-status-bar/uni-status-bar.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 18 | 19 | 26 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/privacy/privacy.axml: -------------------------------------------------------------------------------- 1 | 服务协议和隐私政策尊敬的用户,欢迎您注册成为本应用用户,在注册前请您仔细阅读《用户协议》《隐私政策》, 2 | 了解我们对您使用我们APP制定的规则,您个人信息的处理以及申请权限的目的和使用范围。经您确认后,本用户协议和隐私权政策即在您和本应用之间产生法律效力。请您务必在注册之前认真阅读全部服务协议内容,如有任何疑问,可向本应用客服咨询。 -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/privacy/privacy.wxml: -------------------------------------------------------------------------------- 1 | 服务协议和隐私政策尊敬的用户,欢迎您注册成为本应用用户,在注册前请您仔细阅读《用户协议》《隐私政策》, 2 | 了解我们对您使用我们APP制定的规则,您个人信息的处理以及申请权限的目的和使用范围。经您确认后,本用户协议和隐私权政策即在您和本应用之间产生法律效力。请您务必在注册之前认真阅读全部服务协议内容,如有任何疑问,可向本应用客服咨询。 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/privacy/privacy.wxml: -------------------------------------------------------------------------------- 1 | 服务协议和隐私政策尊敬的用户,欢迎您注册成为本应用用户,在注册前请您仔细阅读《用户协议》《隐私政策》, 2 | 了解我们对您使用我们APP制定的规则,您个人信息的处理以及申请权限的目的和使用范围。经您确认后,本用户协议和隐私权政策即在您和本应用之间产生法律效力。请您务必在注册之前认真阅读全部服务协议内容,如有任何疑问,可向本应用客服咨询。 -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/register/register.axml: -------------------------------------------------------------------------------- 1 | 请填写用户名:请填写密码: -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/register/register.wxml: -------------------------------------------------------------------------------- 1 | 请填写用户名:请填写密码: -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "packOptions": { 4 | "ignore": [] 5 | }, 6 | "setting": { 7 | "urlCheck": false, 8 | "es6": true, 9 | "minified": true 10 | }, 11 | "compileType": "miniprogram", 12 | "libVersion": "", 13 | "appid": "wx459341bc79e9fcaa", 14 | "projectname": "KePu", 15 | "condition": { 16 | "search": { 17 | "list": [] 18 | }, 19 | "conversation": { 20 | "list": [] 21 | }, 22 | "game": { 23 | "list": [] 24 | }, 25 | "miniprogram": { 26 | "list": [] 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | .Box .top .nav.data-v-5bf17846{background-color:#fff;display:-webkit-box;display:-webkit-flex;display:flex;height:44px;color:#353b48;font-size:16px;overflow:scroll}.Box .top .nav .nav-item.data-v-5bf17846{-webkit-box-flex:1;-webkit-flex:1;flex:1}.Box .top .nav .nav-item .item.data-v-5bf17846{width:70px;text-align:center;line-height:33px;height:33px;margin-top:10px}.Box .top .nav .nav-item .active.data-v-5bf17846{color:#2f3640;font-weight:550;position:relative}.Box .top .nav .nav-item .active.data-v-5bf17846::after{content:"";position:absolute;top:25px;width:55rpx;height:8rpx;background-color:#74b9ff;left:0;right:0;bottom:0;margin:auto} -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "packOptions": { 4 | "ignore": [] 5 | }, 6 | "setting": { 7 | "urlCheck": false, 8 | "es6": true, 9 | "minified": true 10 | }, 11 | "compileType": "miniprogram", 12 | "libVersion": "", 13 | "appid": "wxcd7b44caa5ddb547", 14 | "projectname": "KePu", 15 | "simulatorType": "wechat", 16 | "simulatorPluginLibVersion": {}, 17 | "condition": { 18 | "search": { 19 | "list": [] 20 | }, 21 | "conversation": { 22 | "list": [] 23 | }, 24 | "game": { 25 | "list": [] 26 | }, 27 | "miniprogram": { 28 | "list": [] 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /页面加载/pages/index/index.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 28 | 29 | 34 | -------------------------------------------------------------------------------- /页面加载/README.md: -------------------------------------------------------------------------------- 1 | # cc-Loding 2 | #### 介绍 3 | {**以下是码云平台说明,您可以替换此简介** 4 | 码云是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 5 | 无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} 6 | 7 | #### 软件架构 8 | 软件架构说明 9 | ![输入图片说明](https://images.gitee.com/uploads/images/2020/0930/103907_17e0cbf7_1005889.png "微信图片_20200930103900.png") 10 | ![输入图片说明](https://images.gitee.com/uploads/images/2020/0930/103921_8106a2df_1005889.png "微信图片_20200930103855.png") 11 | ![输入图片说明](https://images.gitee.com/uploads/images/2020/0930/103930_9f8f6baf_1005889.png "微信图片_20200930103851.png") 12 | ![输入图片说明](https://images.gitee.com/uploads/images/2020/0930/103938_945e6bca_1005889.png "微信图片_20200930103834.png") 13 | #### 使用说明 14 | 15 | 16 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/sorry/sorry.acss: -------------------------------------------------------------------------------- 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 | .sorry { 28 | margin-top: 20px; 29 | text-align: center; 30 | font-size: 20px; 31 | font-weight: 600; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/sorry/sorry.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 | .sorry { 28 | margin-top: 20px; 29 | text-align: center; 30 | font-size: 20px; 31 | font-weight: 600; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/index.html: -------------------------------------------------------------------------------- 1 | 科普小站
-------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/uni-popup/uni-popup.axml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /头像挂件/static/image/left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/uni-popup/uni-popup.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-popup/uni-popup.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kepu/pages/about/about.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 23 | 24 | 47 | -------------------------------------------------------------------------------- /kepu/utils/format.js: -------------------------------------------------------------------------------- 1 | export function formatRichText(html) { 2 | var html = new String(html) 3 | let newContent = html.replace(/]*>/gi, function(match, capture) { 4 | match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, ''); 5 | match = match.replace(/width="[^"]+"/gi, '').replace(/width='[^']+'/gi, ''); 6 | match = match.replace(/height="[^"]+"/gi, '').replace(/height='[^']+'/gi, ''); 7 | return match; 8 | }); 9 | newContent = newContent.replace(/style="[^"]+"/gi, function(match, capture) { 10 | match = match.replace(/width:[^;]+;/gi, 'max-width:100%;').replace(/width:[^;]+;/gi, 'max-width:100%;'); 11 | return match; 12 | }); 13 | newContent = newContent.replace(/]*\/>/gi, ''); 14 | newContent = newContent.replace(/\ 2 | 3 | 4 | 5 | 6 | 7 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/__uniappview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 14 | View 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /kepu/components/uni-icon.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 34 | 35 | 38 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/h5/static/js/pages-shoucang-shoucang.1f8e19ca.js: -------------------------------------------------------------------------------- 1 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-shoucang-shoucang"],{"0533":function(n,t,u){"use strict";u.r(t);var e=u("705b"),r=u("cbde");for(var c in r)"default"!==c&&function(n){u.d(t,n,(function(){return r[n]}))}(c);var a,i=u("f0c5"),f=Object(i["a"])(r["default"],e["b"],e["c"],!1,null,"ab1fa8dc",null,!1,e["a"],a);t["default"]=f.exports},"705b":function(n,t,u){"use strict";var e;u.d(t,"b",(function(){return r})),u.d(t,"c",(function(){return c})),u.d(t,"a",(function(){return e}));var r=function(){var n=this,t=n.$createElement,u=n._self._c||t;return u("v-uni-view",[u("v-uni-text",[n._v("我的收藏")])],1)},c=[]},cbde:function(n,t,u){"use strict";u.r(t);var e=u("d59c"),r=u.n(e);for(var c in e)"default"!==c&&function(n){u.d(t,n,(function(){return e[n]}))}(c);t["default"]=r.a},d59c:function(n,t,u){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={data:function(){return{}}};t.default=e}}]); -------------------------------------------------------------------------------- /页面加载/pages.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages 3 | { 4 | "path": "pages/index/index", 5 | "style": { 6 | "navigationBarTitleText": "uni-app" 7 | } 8 | }, 9 | { 10 | "path": "pages/index/ring", 11 | "style": { 12 | "navigationBarTitleText": "uni-app" 13 | } 14 | }, 15 | { 16 | "path": "pages/index/wrapper", 17 | "style": { 18 | "navigationBarTitleText": "uni-app" 19 | } 20 | }, 21 | { 22 | "path": "pages/index/Buttons", 23 | "style": { 24 | "navigationBarTitleText": "uni-app" 25 | } 26 | }, 27 | { 28 | "path": "pages/index/loader", 29 | "style": { 30 | "navigationBarTitleText": "uni-app" 31 | } 32 | }, 33 | { 34 | "path": "pages/index/preloader", 35 | "style": { 36 | "navigationBarTitleText": "uni-app" 37 | } 38 | } 39 | ], 40 | "globalStyle": { 41 | "navigationBarTextStyle": "black", 42 | "navigationBarTitleText": "uni-app", 43 | "navigationBarBackgroundColor": "#F8F8F8", 44 | "backgroundColor": "#F8F8F8" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/about/about.acss: -------------------------------------------------------------------------------- 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 | page { 28 | background-color: #f1f1f1; 29 | } 30 | .Box { 31 | margin: 40rpx auto; 32 | } 33 | .Box .content { 34 | text-align: center; 35 | font-size: 40rpx; 36 | } 37 | .Box .image { 38 | margin-top: 12%; 39 | text-align: center; 40 | } 41 | .Box .image image { 42 | width: 200rpx; 43 | } 44 | .Box .rank { 45 | margin-top: 80rpx; 46 | font-size: 30rpx; 47 | text-align: center; 48 | color: #7f8fa6; 49 | } 50 | 51 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/about/about.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 | page { 28 | background-color: #f1f1f1; 29 | } 30 | .Box { 31 | margin: 40rpx auto; 32 | } 33 | .Box .content { 34 | text-align: center; 35 | font-size: 40rpx; 36 | } 37 | .Box .image { 38 | margin-top: 12%; 39 | text-align: center; 40 | } 41 | .Box .image image { 42 | width: 200rpx; 43 | } 44 | .Box .rank { 45 | margin-top: 80rpx; 46 | font-size: 30rpx; 47 | text-align: center; 48 | color: #7f8fa6; 49 | } 50 | 51 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/shoucang/shoucang.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/shoucang/shoucang"],{"2db1":function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={data:function(){return{}}};t.default=u},"3d88":function(n,t,e){"use strict";var u;e.d(t,"b",(function(){return r})),e.d(t,"c",(function(){return a})),e.d(t,"a",(function(){return u}));var r=function(){var n=this,t=n.$createElement;n._self._c},a=[]},"45b4":function(n,t,e){"use strict";e.r(t);var u=e("2db1"),r=e.n(u);for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);t["default"]=r.a},e172:function(n,t,e){"use strict";(function(n){e("4ffc");u(e("66fd"));var t=u(e("f9f4"));function u(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},f9f4:function(n,t,e){"use strict";e.r(t);var u=e("3d88"),r=e("45b4");for(var a in r)"default"!==a&&function(n){e.d(t,n,(function(){return r[n]}))}(a);var c,f=e("f0c5"),o=Object(f["a"])(r["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],c);t["default"]=o.exports}},[["e172","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /头像挂件/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Infinityu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/feedback/feedback.acss: -------------------------------------------------------------------------------- 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 | page { 28 | background-color: #f1f1f1; 29 | } 30 | .Box .uni-textarea { 31 | margin-top: 20rpx; 32 | padding: 40rpx 0 0 70rpx; 33 | background-color: #ffffff; 34 | } 35 | .Box .picture { 36 | margin: 60rpx 0 0 60rpx; 37 | width: 200rpx; 38 | height: 180rpx; 39 | border: 1px dashed #a4b0be; 40 | padding: 20rpx 0 0 0; 41 | text-align: center; 42 | } 43 | .Box .picture .tianjia { 44 | font-size: 30rpx; 45 | color: #a4b0be; 46 | } 47 | .Box .button { 48 | margin-top: 60rpx; 49 | padding: 60rpx; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/feedback/feedback.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 | page { 28 | background-color: #f1f1f1; 29 | } 30 | .Box .uni-textarea { 31 | margin-top: 20rpx; 32 | padding: 40rpx 0 0 70rpx; 33 | background-color: #ffffff; 34 | } 35 | .Box .picture { 36 | margin: 60rpx 0 0 60rpx; 37 | width: 200rpx; 38 | height: 180rpx; 39 | border: 1px dashed #a4b0be; 40 | padding: 20rpx 0 0 0; 41 | text-align: center; 42 | } 43 | .Box .picture .tianjia { 44 | font-size: 30rpx; 45 | color: #a4b0be; 46 | } 47 | .Box .button { 48 | margin-top: 60rpx; 49 | padding: 60rpx; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/sorry/sorry.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/sorry/sorry"],{"1b69":function(n,t,e){},"3f5a":function(n,t,e){"use strict";e.r(t);var u=e("74ed"),r=e.n(u);for(var c in u)"default"!==c&&function(n){e.d(t,n,(function(){return u[n]}))}(c);t["default"]=r.a},"74ed":function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={data:function(){return{}}};t.default=u},"989e":function(n,t,e){"use strict";(function(n){e("4ffc");u(e("66fd"));var t=u(e("cf2d"));function u(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},c92a:function(n,t,e){"use strict";var u=e("1b69"),r=e.n(u);r.a},cf2d:function(n,t,e){"use strict";e.r(t);var u=e("eedd"),r=e("3f5a");for(var c in r)"default"!==c&&function(n){e.d(t,n,(function(){return r[n]}))}(c);e("c92a");var a,f=e("f0c5"),o=Object(f["a"])(r["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],a);t["default"]=o.exports},eedd:function(n,t,e){"use strict";var u;e.d(t,"b",(function(){return r})),e.d(t,"c",(function(){return c})),e.d(t,"a",(function(){return u}));var r=function(){var n=this,t=n.$createElement;n._self._c},c=[]}},[["989e","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-transition/uni-transition.wxss: -------------------------------------------------------------------------------- 1 | .uni-transition{-webkit-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fade-in{opacity:0}.fade-active{opacity:1}.slide-top-in{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.slide-top-active{-webkit-transform:translateY(0);transform:translateY(0)}.slide-right-in{-webkit-transform:translateX(100%);transform:translateX(100%)}.slide-right-active{-webkit-transform:translateX(0);transform:translateX(0)}.slide-bottom-in{-webkit-transform:translateY(100%);transform:translateY(100%)}.slide-bottom-active{-webkit-transform:translateY(0);transform:translateY(0)}.slide-left-in{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.slide-left-active{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.zoom-in-in{-webkit-transform:scale(.8);transform:scale(.8)}.zoom-out-active{-webkit-transform:scale(1);transform:scale(1)}.zoom-out-in{-webkit-transform:scale(1.2);transform:scale(1.2)} -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/about/about.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/about/about"],{"02b7":function(t,n,e){"use strict";(function(t){e("4ffc");u(e("66fd"));var n=u(e("e638"));function u(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},"059e":function(t,n,e){"use strict";var u=e("05bf"),r=e.n(u);r.a},"05bf":function(t,n,e){},abd6:function(t,n,e){"use strict";e.r(n);var u=e("e850"),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},e638:function(t,n,e){"use strict";e.r(n);var u=e("ef7e"),r=e("abd6");for(var a in r)"default"!==a&&function(t){e.d(n,t,(function(){return r[t]}))}(a);e("059e");var f,c=e("f0c5"),o=Object(c["a"])(r["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],f);n["default"]=o.exports},e850: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},ef7e:function(t,n,e){"use strict";var u;e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return a})),e.d(n,"a",(function(){return u}));var r=function(){var t=this,n=t.$createElement;t._self._c},a=[]}},[["02b7","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /kepu/components/uni/uni-list-chat/uni-list-chat.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * 这里是 uni-list 组件内置的常用样式变量 3 | * 如果需要覆盖样式,这里提供了基本的组件样式变量,您可以尝试修改这里的变量,去完成样式替换,而不用去修改源码 4 | * 5 | */ 6 | 7 | // 背景色 8 | $background-color : #fff; 9 | // 分割线颜色 10 | $divide-line-color : #e5e5e5; 11 | 12 | // 默认头像大小,如需要修改此值,注意同步修改 js 中的值 const avatarWidth = xx ,目前只支持方形头像 13 | // nvue 页面不支持修改头像大小 14 | $avatar-width : 45px ; 15 | 16 | // 头像边框 17 | $avatar-border-radius: 5px; 18 | $avatar-border-color: #eee; 19 | $avatar-border-width: 1px; 20 | 21 | // 标题文字样式 22 | $title-size : 16px; 23 | $title-color : #3b4144; 24 | $title-weight : normal; 25 | 26 | // 描述文字样式 27 | $note-size : 12px; 28 | $note-color : #999; 29 | $note-weight : normal; 30 | 31 | // 右侧额外内容默认样式 32 | $right-text-size : 12px; 33 | $right-text-color : #999; 34 | $right-text-weight : normal; 35 | 36 | // 角标样式 37 | // nvue 页面不支持修改圆点位置以及大小 38 | // 角标在左侧时,角标的位置,默认为 0 ,负数左/下移动,正数右/上移动 39 | $badge-left: 0px; 40 | $badge-top: 0px; 41 | 42 | // 显示圆点时,圆点大小 43 | $dot-width: 10px; 44 | $dot-height: 10px; 45 | 46 | // 显示角标时,角标大小和字体大小 47 | $badge-size : 18px; 48 | $badge-font : 12px; 49 | // 显示角标时,角标前景色 50 | $badge-color : #fff; 51 | // 显示角标时,角标背景色 52 | $badge-background-color : #ff5a5f; 53 | // 显示角标时,角标左右间距 54 | $badge-space : 6px; 55 | 56 | // 状态样式 57 | // 选中颜色 58 | $hover : #f5f5f5; 59 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/pages/privacy/privacy.acss: -------------------------------------------------------------------------------- 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 | page { 28 | background-color: #f1f1f1; 29 | } 30 | .Box { 31 | margin: 50rpx auto; 32 | } 33 | .Box .title { 34 | width: 100%; 35 | height: 100rpx; 36 | font-size: 60rpx; 37 | font-weight: 700; 38 | text-align: center; 39 | } 40 | .Box .message { 41 | margin-top: 20rpx; 42 | padding: 20rpx; 43 | font-size: 40rpx; 44 | line-height: 1.5em; 45 | text-indent: 2em; 46 | } 47 | .Box .message text { 48 | color: #0652DD; 49 | } 50 | .Box .message .content { 51 | text-indent: 2em; 52 | } 53 | .Box .button { 54 | padding: 20rpx; 55 | display: -webkit-box; 56 | display: -webkit-flex; 57 | display: flex; 58 | } 59 | .Box .button button { 60 | color: #2980b9; 61 | } 62 | 63 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/pages/privacy/privacy.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 | page { 28 | background-color: #f1f1f1; 29 | } 30 | .Box { 31 | margin: 50rpx auto; 32 | } 33 | .Box .title { 34 | width: 100%; 35 | height: 100rpx; 36 | font-size: 60rpx; 37 | font-weight: 700; 38 | text-align: center; 39 | } 40 | .Box .message { 41 | margin-top: 20rpx; 42 | padding: 20rpx; 43 | font-size: 40rpx; 44 | line-height: 1.5em; 45 | text-indent: 2em; 46 | } 47 | .Box .message text { 48 | color: #0652DD; 49 | } 50 | .Box .message .content { 51 | text-indent: 2em; 52 | } 53 | .Box .button { 54 | padding: 20rpx; 55 | display: -webkit-box; 56 | display: -webkit-flex; 57 | display: flex; 58 | } 59 | .Box .button button { 60 | color: #2980b9; 61 | } 62 | 63 | -------------------------------------------------------------------------------- /kepu/components/uni/uni-collapse/uni-collapse.vue: -------------------------------------------------------------------------------- 1 | 6 | 47 | 60 | -------------------------------------------------------------------------------- /kepu/components/uni/uni-easyinput/common.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @desc 函数防抖 3 | * @param func 目标函数 4 | * @param wait 延迟执行毫秒数 5 | * @param immediate true - 立即执行, false - 延迟执行 6 | */ 7 | export const debounce = function(func, wait = 1000, immediate = true) { 8 | let timer; 9 | console.log(1); 10 | return function() { 11 | console.log(123); 12 | let context = this, 13 | args = arguments; 14 | if (timer) clearTimeout(timer); 15 | if (immediate) { 16 | let callNow = !timer; 17 | timer = setTimeout(() => { 18 | timer = null; 19 | }, wait); 20 | if (callNow) func.apply(context, args); 21 | } else { 22 | timer = setTimeout(() => { 23 | func.apply(context, args); 24 | }, wait) 25 | } 26 | } 27 | } 28 | /** 29 | * @desc 函数节流 30 | * @param func 函数 31 | * @param wait 延迟执行毫秒数 32 | * @param type 1 使用表时间戳,在时间段开始的时候触发 2 使用表定时器,在时间段结束的时候触发 33 | */ 34 | export const throttle = (func, wait = 1000, type = 1) => { 35 | let previous = 0; 36 | let timeout; 37 | return function() { 38 | let context = this; 39 | let args = arguments; 40 | if (type === 1) { 41 | let now = Date.now(); 42 | 43 | if (now - previous > wait) { 44 | func.apply(context, args); 45 | previous = now; 46 | } 47 | } else if (type === 2) { 48 | if (!timeout) { 49 | timeout = setTimeout(() => { 50 | timeout = null; 51 | func.apply(context, args) 52 | }, wait) 53 | } 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/register/register.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/register/register"],{"216b":function(t,n,e){},"2a22":function(t,n,e){"use strict";(function(t){e("4ffc");u(e("66fd"));var n=u(e("5511"));function u(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},5511:function(t,n,e){"use strict";e.r(n);var u=e("ad68"),a=e("b07b");for(var c in a)"default"!==c&&function(t){e.d(n,t,(function(){return a[t]}))}(c);e("ee48");var o,r=e("f0c5"),i=Object(r["a"])(a["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],o);n["default"]=i.exports},ad68:function(t,n,e){"use strict";var u;e.d(n,"b",(function(){return a})),e.d(n,"c",(function(){return c})),e.d(n,"a",(function(){return u}));var a=function(){var t=this,n=t.$createElement;t._self._c},c=[]},b07b:function(t,n,e){"use strict";e.r(n);var u=e("e5d0"),a=e.n(u);for(var c in u)"default"!==c&&function(t){e.d(n,t,(function(){return u[t]}))}(c);n["default"]=a.a},e5d0:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={data:function(){return{}},methods:{goDetail:function(){t.navigateTo({url:"/pages/QuShe-login/QuShe-login"})},account_loginFc:function(){this.account_accountNum&&this.account_password||t.showToast({title:"注册成功"})}}};n.default=e}).call(this,e("543d")["default"])},ee48:function(t,n,e){"use strict";var u=e("216b"),a=e.n(u);a.a}},[["2a22","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /页面加载/pages/index/Buttons.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 28 | 29 | 71 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/app-plus/app-config.js: -------------------------------------------------------------------------------- 1 | (function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c 2 | 3 | 4 | 5 | 6 | 7 | 8 | 56 | 57 | 75 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-icons/uni-icons.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-icons/uni-icons"],{2692:function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u=c(e("1e17"));function c(n){return n&&n.__esModule?n:{default:n}}var r={name:"UniIcons",props:{type:{type:String,default:""},color:{type:String,default:"#333333"},size:{type:[Number,String],default:16}},data:function(){return{icons:u.default}},methods:{_onClick:function(){this.$emit("click")}}};t.default=r},"2c0e":function(n,t,e){"use strict";var u=e("d2d1"),c=e.n(u);c.a},"4ac2":function(n,t,e){"use strict";e.r(t);var u=e("66ac"),c=e("fbe3");for(var r in c)"default"!==r&&function(n){e.d(t,n,(function(){return c[n]}))}(r);e("2c0e");var a,i=e("f0c5"),o=Object(i["a"])(c["default"],u["b"],u["c"],!1,null,"37e596a8",null,!1,u["a"],a);t["default"]=o.exports},"66ac":function(n,t,e){"use strict";var u;e.d(t,"b",(function(){return c})),e.d(t,"c",(function(){return r})),e.d(t,"a",(function(){return u}));var c=function(){var n=this,t=n.$createElement;n._self._c},r=[]},d2d1:function(n,t,e){},fbe3:function(n,t,e){"use strict";e.r(t);var u=e("2692"),c=e.n(u);for(var r in u)"default"!==r&&function(n){e.d(t,n,(function(){return u[n]}))}(r);t["default"]=c.a}}]); 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__('543d')['createComponent'](__webpack_require__("4ac2")) 7 | }) 8 | }, 9 | [['components/uni-icons/uni-icons-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/center/center.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/center/center"],{"1eba":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={data:function(){return{avatarUrl:"../../static/uni-center/logo.png",userinfo:{}}},onShow:function(){var t=n.getStorageSync("userinfo");this.userinfo=JSON.parse(t),console.log(this.userinfo)},methods:{goDetail:function(){n.navigateTo({url:"/pages/QuShe-login/QuShe-login"})},none:function(){n.navigateTo({url:"../sorry/sorry"})},goFeedback:function(){n.navigateTo({url:"../feedback/feedback"})},shoucang:function(){n.navigateTo({url:"../shoucang/shoucang"})},privacy:function(){n.navigateTo({url:"../privacy/privacy"})},about:function(){n.navigateTo({url:"../about/about"})}}};t.default=e}).call(this,e("543d")["default"])},"4d97":function(n,t,e){"use strict";var a=e("5950"),u=e.n(a);u.a},5950:function(n,t,e){},"81d6":function(n,t,e){"use strict";(function(n){e("4ffc");a(e("66fd"));var t=a(e("8664"));function a(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},8664:function(n,t,e){"use strict";e.r(t);var a=e("a63f"),u=e("b008");for(var o in u)"default"!==o&&function(n){e.d(t,n,(function(){return u[n]}))}(o);e("4d97");var r,c=e("f0c5"),i=Object(c["a"])(u["default"],a["b"],a["c"],!1,null,"61da6e3b",null,!1,a["a"],r);t["default"]=i.exports},a63f:function(n,t,e){"use strict";var a;e.d(t,"b",(function(){return u})),e.d(t,"c",(function(){return o})),e.d(t,"a",(function(){return a}));var u=function(){var n=this,t=n.$createElement;n._self._c},o=[]},b008:function(n,t,e){"use strict";e.r(t);var a=e("1eba"),u=e.n(a);for(var o in a)"default"!==o&&function(n){e.d(t,n,(function(){return a[n]}))}(o);t["default"]=u.a}},[["81d6","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/center/center", 5 | "pages/QuShe-login/QuShe-login", 6 | "pages/register/register", 7 | "pages/shoucang/shoucang", 8 | "pages/sorry/sorry", 9 | "pages/ArticleDetail-Game/ArticleDetail-Game", 10 | "pages/VideoDetail-Game/VideoDetail-Game", 11 | "pages/VideoDetail-FamilyLife/VideoDetail-FamilyLife", 12 | "pages/ArticleDetail-FamilyLife/ArticleDetail-FamilyLife", 13 | "pages/ArticleDetail-Technology/ArticleDetail-Technology", 14 | "pages/VideoDetail-Technology/VideoDetail-Technology", 15 | "pages/ArticleDetail-Beauty/ArticleDetail-Beauty", 16 | "pages/VideoDetail-Beauty/VideoDetail-Beauty", 17 | "pages/ArticleDetail-Animal/ArticleDetail-Animal", 18 | "pages/VideoDetail-Animal/VideoDetail-Animal", 19 | "pages/ArticleDetail-Life/ArticleDetail-Life", 20 | "pages/VideoDetail-Life/VideoDetail-Life", 21 | "pages/ArticleDetail-Interset/ArticleDetail-Interset", 22 | "pages/VideoDetail-Interset/VideoDetail-Interset", 23 | "pages/feedback/feedback", 24 | "pages/privacy/privacy", 25 | "pages/about/about" 26 | ], 27 | "subPackages": [], 28 | "window": { 29 | "defaultTitle": "科普小站", 30 | "titleBarColor": "#74b9ff" 31 | }, 32 | "tabBar": { 33 | "items": [ 34 | { 35 | "pagePath": "pages/index/index", 36 | "name": "首页", 37 | "icon": "static/home.png", 38 | "activeIcon": "static/homea.png" 39 | }, 40 | { 41 | "pagePath": "pages/center/center", 42 | "name": "我的", 43 | "icon": "static/self.png", 44 | "activeIcon": "static/selfa.png" 45 | } 46 | ] 47 | }, 48 | "usingComponents": { 49 | "uni-icons": "/components/uni-icons/uni-icons" 50 | } 51 | } -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/components/uni-popup/uni-popup.wxss: -------------------------------------------------------------------------------- 1 | .uni-popup.data-v-0f86992c{position:fixed;top:0;bottom:0;left:0;right:0;z-index:99999999999}.uni-popup__mask.data-v-0f86992c{position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.4);opacity:0}.mask-ani.data-v-0f86992c{-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.2s;transition-duration:.2s}.uni-top-mask.data-v-0f86992c{opacity:1}.uni-bottom-mask.data-v-0f86992c{opacity:1}.uni-center-mask.data-v-0f86992c{opacity:1}.uni-popup__wrapper.data-v-0f86992c{display:block;position:absolute}.top.data-v-0f86992c{top:0;left:0;right:0;-webkit-transform:translateY(-500px);transform:translateY(-500px)}.bottom.data-v-0f86992c{bottom:0;left:0;right:0;-webkit-transform:translateY(500px);transform:translateY(500px)}.center.data-v-0f86992c{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;bottom:0;left:0;right:0;top:0;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-transform:scale(1.2);transform:scale(1.2);opacity:0}.uni-popup__wrapper-box.data-v-0f86992c{display:block;position:relative}.content-ani.data-v-0f86992c{-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transition-duration:.2s;transition-duration:.2s}.uni-top-content.data-v-0f86992c{-webkit-transform:translateY(0);transform:translateY(0)}.uni-bottom-content.data-v-0f86992c{-webkit-transform:translateY(0);transform:translateY(0)}.uni-center-content.data-v-0f86992c{-webkit-transform:scale(1);transform:scale(1);opacity:1} -------------------------------------------------------------------------------- /kepu/components/uni/uni-list/uni-refresh.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 59 | 60 | 66 | -------------------------------------------------------------------------------- /kepu/pages/privacy/privacy.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 52 | 53 | 86 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-alipay/components/uni-transition/uni-transition.acss: -------------------------------------------------------------------------------- 1 | 2 | .uni-transition { 3 | -webkit-transition-timing-function: ease; 4 | transition-timing-function: ease; 5 | -webkit-transition-duration: 0.3s; 6 | transition-duration: 0.3s; 7 | -webkit-transition-property: opacity, -webkit-transform; 8 | transition-property: opacity, -webkit-transform; 9 | transition-property: transform, opacity; 10 | transition-property: transform, opacity, -webkit-transform; 11 | } 12 | .fade-in { 13 | opacity: 0; 14 | } 15 | .fade-active { 16 | opacity: 1; 17 | } 18 | .slide-top-in { 19 | /* transition-property: transform, opacity; */ 20 | -webkit-transform: translateY(-100%); 21 | transform: translateY(-100%); 22 | } 23 | .slide-top-active { 24 | -webkit-transform: translateY(0); 25 | transform: translateY(0); 26 | /* opacity: 1; */ 27 | } 28 | .slide-right-in { 29 | -webkit-transform: translateX(100%); 30 | transform: translateX(100%); 31 | } 32 | .slide-right-active { 33 | -webkit-transform: translateX(0); 34 | transform: translateX(0); 35 | } 36 | .slide-bottom-in { 37 | -webkit-transform: translateY(100%); 38 | transform: translateY(100%); 39 | } 40 | .slide-bottom-active { 41 | -webkit-transform: translateY(0); 42 | transform: translateY(0); 43 | } 44 | .slide-left-in { 45 | -webkit-transform: translateX(-100%); 46 | transform: translateX(-100%); 47 | } 48 | .slide-left-active { 49 | -webkit-transform: translateX(0); 50 | transform: translateX(0); 51 | opacity: 1; 52 | } 53 | .zoom-in-in { 54 | -webkit-transform: scale(0.8); 55 | transform: scale(0.8); 56 | } 57 | .zoom-out-active { 58 | -webkit-transform: scale(1); 59 | transform: scale(1); 60 | } 61 | .zoom-out-in { 62 | -webkit-transform: scale(1.2); 63 | transform: scale(1.2); 64 | } 65 | 66 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/components/uni-transition/uni-transition.wxss: -------------------------------------------------------------------------------- 1 | 2 | .uni-transition { 3 | -webkit-transition-timing-function: ease; 4 | transition-timing-function: ease; 5 | -webkit-transition-duration: 0.3s; 6 | transition-duration: 0.3s; 7 | -webkit-transition-property: opacity, -webkit-transform; 8 | transition-property: opacity, -webkit-transform; 9 | transition-property: transform, opacity; 10 | transition-property: transform, opacity, -webkit-transform; 11 | } 12 | .fade-in { 13 | opacity: 0; 14 | } 15 | .fade-active { 16 | opacity: 1; 17 | } 18 | .slide-top-in { 19 | /* transition-property: transform, opacity; */ 20 | -webkit-transform: translateY(-100%); 21 | transform: translateY(-100%); 22 | } 23 | .slide-top-active { 24 | -webkit-transform: translateY(0); 25 | transform: translateY(0); 26 | /* opacity: 1; */ 27 | } 28 | .slide-right-in { 29 | -webkit-transform: translateX(100%); 30 | transform: translateX(100%); 31 | } 32 | .slide-right-active { 33 | -webkit-transform: translateX(0); 34 | transform: translateX(0); 35 | } 36 | .slide-bottom-in { 37 | -webkit-transform: translateY(100%); 38 | transform: translateY(100%); 39 | } 40 | .slide-bottom-active { 41 | -webkit-transform: translateY(0); 42 | transform: translateY(0); 43 | } 44 | .slide-left-in { 45 | -webkit-transform: translateX(-100%); 46 | transform: translateX(-100%); 47 | } 48 | .slide-left-active { 49 | -webkit-transform: translateX(0); 50 | transform: translateX(0); 51 | opacity: 1; 52 | } 53 | .zoom-in-in { 54 | -webkit-transform: scale(0.8); 55 | transform: scale(0.8); 56 | } 57 | .zoom-out-active { 58 | -webkit-transform: scale(1); 59 | transform: scale(1); 60 | } 61 | .zoom-out-in { 62 | -webkit-transform: scale(1.2); 63 | transform: scale(1.2); 64 | } 65 | 66 | -------------------------------------------------------------------------------- /kepu/unpackage/dist/build/mp-weixin/pages/feedback/feedback.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/feedback/feedback"],{1073:function(n,e,t){"use strict";(function(n){t("4ffc");c(t("66fd"));var e=c(t("36e0"));function c(n){return n&&n.__esModule?n:{default:n}}n(e.default)}).call(this,t("543d")["createPage"])},"33ca":function(n,e,t){},"36e0":function(n,e,t){"use strict";t.r(e);var c=t("4a33"),o=t("d6a3");for(var u in o)"default"!==u&&function(n){t.d(e,n,(function(){return o[n]}))}(u);t("748c");var i,s=t("f0c5"),a=Object(s["a"])(o["default"],c["b"],c["c"],!1,null,null,null,!1,c["a"],i);e["default"]=a.exports},"4a33":function(n,e,t){"use strict";t.d(e,"b",(function(){return o})),t.d(e,"c",(function(){return u})),t.d(e,"a",(function(){return c}));var c={uniIcons:function(){return Promise.all([t.e("common/vendor"),t.e("components/uni-icons/uni-icons")]).then(t.bind(null,"4ac2"))}},o=function(){var n=this,e=n.$createElement;n._self._c},u=[]},"748c":function(n,e,t){"use strict";var c=t("33ca"),o=t.n(c);o.a},7738:function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t={data:function(){return{}},methods:{upload:function(){n.chooseImage({count:1,sizeType:["original","compressed"],sourceType:["albuum"],success:function(e){n.getImageInfo({src:e.tempFilePaths[0],success:function(n){console.log(n)}}),n.previewImage({urls:e.tempFilePaths,longPressActions:{itemList:["首页","收藏","系统"],success:function(n){console.log(n)}}})},fail:function(n){console.log(n)}})},sub:function(){n.showToast({title:"上传成功",icon:"success",duration:1e3}),setTimeout((function(){n.switchTab({url:"../my/my"})}),600)}}};e.default=t}).call(this,t("543d")["default"])},d6a3:function(n,e,t){"use strict";t.r(e);var c=t("7738"),o=t.n(c);for(var u in c)"default"!==u&&function(n){t.d(e,n,(function(){return c[n]}))}(u);e["default"]=o.a}},[["1073","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /kepu/unpackage/dist/dev/mp-weixin/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/center/center", 5 | "pages/QuShe-login/QuShe-login", 6 | "pages/register/register", 7 | "pages/shoucang/shoucang", 8 | "pages/sorry/sorry", 9 | "pages/ArticleDetail-Game/ArticleDetail-Game", 10 | "pages/VideoDetail-Game/VideoDetail-Game", 11 | "pages/VideoDetail-FamilyLife/VideoDetail-FamilyLife", 12 | "pages/ArticleDetail-FamilyLife/ArticleDetail-FamilyLife", 13 | "pages/ArticleDetail-Technology/ArticleDetail-Technology", 14 | "pages/VideoDetail-Technology/VideoDetail-Technology", 15 | "pages/ArticleDetail-Beauty/ArticleDetail-Beauty", 16 | "pages/VideoDetail-Beauty/VideoDetail-Beauty", 17 | "pages/ArticleDetail-Animal/ArticleDetail-Animal", 18 | "pages/VideoDetail-Animal/VideoDetail-Animal", 19 | "pages/ArticleDetail-Life/ArticleDetail-Life", 20 | "pages/VideoDetail-Life/VideoDetail-Life", 21 | "pages/ArticleDetail-Interset/ArticleDetail-Interset", 22 | "pages/VideoDetail-Interset/VideoDetail-Interset", 23 | "pages/feedback/feedback", 24 | "pages/privacy/privacy", 25 | "pages/about/about" 26 | ], 27 | "subPackages": [], 28 | "window": { 29 | "navigationBarTextStyle": "black", 30 | "navigationBarTitleText": "科普小站", 31 | "navigationBarBackgroundColor": "#74b9ff" 32 | }, 33 | "tabBar": { 34 | "list": [ 35 | { 36 | "text": "首页", 37 | "pagePath": "pages/index/index", 38 | "iconPath": "static/home.png", 39 | "selectedIconPath": "static/homea.png" 40 | }, 41 | { 42 | "text": "我的", 43 | "pagePath": "pages/center/center", 44 | "iconPath": "static/self.png", 45 | "selectedIconPath": "static/selfa.png" 46 | } 47 | ] 48 | }, 49 | "usingComponents": { 50 | "uni-icons": "/components/uni-icons/uni-icons" 51 | } 52 | } --------------------------------------------------------------------------------