diff --git a/App.vue b/App.vue index ae737fc..f4d3f52 100644 --- a/App.vue +++ b/App.vue @@ -16,6 +16,10 @@ }, onHide: function() { console.log('App Hide') + }, + globalData: { + webApi: 'https://apijy.leapy.cn/', + imgUrl: 'https://resource.leapy.cn/', } } @@ -47,4 +51,4 @@ } /* #endif */ - + \ No newline at end of file diff --git a/README.md b/README.md index 2fcf195..d723b74 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,6 @@ [TOC] # 一、项目介绍 -1. 项目描述:“share-bbs”是一套采用“uni-App”开发的分享社交论坛,兼容Android、IOS、微信小程序。 -2. 代码说明:此项目为纯前端项目,不含后端、数据库等(方便本地运行、学习、复用)。前端框架:uni-app,vue.js,uViewUI。 -3. 仓库地址:[社交论坛] https://gitee.com/mrthinco/share-bbs -4. 项目展示: -![页面效果](static/profile/1.jpg) -![页面效果](static/profile/2.jpg) -![页面效果](static/profile/3.jpg) +1. 项目描述:采用“uni-App”开发的分享社交论坛,兼容Android、IOS、微信小程序。 # 二、目录说明 ## 2.1 目录 @@ -44,11 +38,7 @@ share-bbs └─uni.scss // 这里是uni-app内置的常用样式变量 ``` -## 2.2 pages 模块/页面 -1. home 首页模块 -2. mine 我的模块 -3. news 动态模块 -4. paper 小纸条模块 + ## 2.3 components 组件 ### 2.3.1 组件命名规范 diff --git a/api/login.js b/api/login.js new file mode 100644 index 0000000..e8fb261 --- /dev/null +++ b/api/login.js @@ -0,0 +1,18 @@ +import { apiResquest } from '@/utils/lib/request.js' + +export const login = (query) => { + return apiResquest({ + url: 'v1/user.login', + method: 'post', + query: query + }) +} + +export const register = (query) => { + return apiResquest({ + url: 'v1/user.register', + method: 'post', + query: query + }) +} + diff --git a/main.js b/main.js index c91de4d..7776984 100644 --- a/main.js +++ b/main.js @@ -5,9 +5,7 @@ import Vue from 'vue' // uViewUI import uView from '@/uni_modules/uview-ui' Vue.use(uView) -// 引入配置文件 -import $config from "@/utils/lib/config.js" -Vue.prototype.$config = $config + // 引入助手函数 import $tool from '@/utils/lib/tool.js' Vue.prototype.$tool = $tool diff --git a/pages.json b/pages.json index c3449fb..2ccd3f9 100644 --- a/pages.json +++ b/pages.json @@ -147,7 +147,7 @@ "bounce": "none" } } - }, + }, { // 新鲜事/话题/详情 "path": "pages/news/news-topic-detail", "style": { @@ -296,7 +296,7 @@ "navigationStyle": "custom", // 隐藏系统导航栏 // App生效: "app-plus": { - "titleNView":"none" + "titleNView": "none" } } }, @@ -356,7 +356,7 @@ // 全局样式 "globalStyle": { "navigationBarTextStyle": "black", - "navigationBarTitleText": "社交论坛", + "navigationBarTitleText": "退役军人平台", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#FFFFFF", "app-plus": { @@ -365,25 +365,27 @@ }, // 底部标签栏 "tabBar": { - "color": "#ADADAD", // tab 上的文字颜色 - "selectedColor": "#278E6F", // tab 上的文字选中时的颜色 + "color": "#666666", // tab 上的文字颜色 + "selectedColor": "#006EEF", // tab 上的文字选中时的颜色 "backgroundColor": "#FFFFFF", // tab 的背景颜色 "borderStyle": "black", // tabbar 上边框的颜色 + "fontSize": "16px", + "iconWidth": "24px", "list": [{ "pagePath": "pages/home/home", - "text": "首页", + "text": "招聘", "iconPath": "/static/img/tabbar/home.png", "selectedIconPath": "/static/img/tabbar/home-ed.png" }, { "pagePath": "pages/news/news", - "text": "新鲜事", + "text": "培训", "iconPath": "/static/img/tabbar/news.png", "selectedIconPath": "/static/img/tabbar/news-ed.png" }, { "pagePath": "pages/paper/paper", - "text": "小纸条", + "text": "技能", "iconPath": "/static/img/tabbar/paper.png", "selectedIconPath": "/static/img/tabbar/paper-ed.png" }, @@ -403,4 +405,4 @@ // "query": "" //启动参数,在页面的onLoad函数里面得到 // }] // } -} +} \ No newline at end of file diff --git a/pages/home/cpns/info-list.vue b/pages/home/cpns/info-list.vue index 28c3f77..abb7ce4 100644 --- a/pages/home/cpns/info-list.vue +++ b/pages/home/cpns/info-list.vue @@ -8,15 +8,15 @@ {{item.username}} - {{item.age}} - + --> - - @@ -50,6 +50,9 @@ import { newsList } from "@/utils/data/data.js" + import { + register + } from '@/api/login.js' import InfoList from "@/pages/home/cpns/info-list.vue" export default { components: { @@ -100,6 +103,13 @@ } }, methods: { + btn() { + uni.login({ + success: (res) => { + console.log(res); + } + }) + }, // 发布 handlePublish() { this.$u.route('/pages/home/release') @@ -198,7 +208,7 @@ flex-direction: column; height: calc(100vh - var(--window-top) - var(--window-bottom)); // 视高 - 内容区顶部 - 内容区底部 width: 100%; - + // 小程序导航栏 /* #ifdef MP-WEIXIN */ /deep/ .u-navbar { @@ -222,11 +232,11 @@ bottom: 100rpx; height: 80rpx; width: 80rpx; - background: #E5E7EB; + background: #ffffff; display: flex; justify-content: center; align-items: center; border-radius: 100%; } } - + \ No newline at end of file diff --git a/pages/home/release.vue b/pages/home/release.vue index 37c81cd..46e6bf7 100644 --- a/pages/home/release.vue +++ b/pages/home/release.vue @@ -41,7 +41,7 @@ - + 严禁发表以下信息: @@ -80,10 +80,10 @@ actionShow: false, // 图片列表 imgList: [{ - url: '/static/img/demo/autumn.svg', + url: '/static/img/demo/winter.png', }, { - url: '/static/img/demo/winter.svg', + url: '/static/img/demo/winter.png', } ], // 弹窗公告 diff --git a/pages/mine/about.vue b/pages/mine/about.vue index ac02877..e8c9c79 100644 --- a/pages/mine/about.vue +++ b/pages/mine/about.vue @@ -3,7 +3,7 @@ - + Version {{version}} diff --git a/pages/mine/mine.vue b/pages/mine/mine.vue index 1cd22fc..9e5d5d9 100644 --- a/pages/mine/mine.vue +++ b/pages/mine/mine.vue @@ -5,7 +5,7 @@ - MrThinco @@ -27,7 +27,7 @@ - + diff --git a/pages/mine/user-space.vue b/pages/mine/user-space.vue index 61a349a..372d819 100644 --- a/pages/mine/user-space.vue +++ b/pages/mine/user-space.vue @@ -3,7 +3,7 @@ - + diff --git a/pages/news/cpns/news-topic-nav.vue b/pages/news/cpns/news-topic-nav.vue index e669477..d241fdf 100644 --- a/pages/news/cpns/news-topic-nav.vue +++ b/pages/news/cpns/news-topic-nav.vue @@ -6,9 +6,9 @@ 更多 - + @@ -39,9 +39,10 @@ + \ No newline at end of file diff --git a/pages/paper/friend.vue b/pages/paper/friend.vue index 1cd6902..0e0b899 100644 --- a/pages/paper/friend.vue +++ b/pages/paper/friend.vue @@ -32,7 +32,7 @@ diff --git a/pages/paper/paper.vue b/pages/paper/paper.vue index 6346456..3f7b679 100644 --- a/pages/paper/paper.vue +++ b/pages/paper/paper.vue @@ -17,7 +17,7 @@ - diff --git a/static/img/demo/01.svg b/static/img/demo/01.svg deleted file mode 100644 index 6a9c846..0000000 --- a/static/img/demo/01.svg +++ /dev/null @@ -1,1489 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/02.svg b/static/img/demo/02.svg deleted file mode 100644 index 325f476..0000000 --- a/static/img/demo/02.svg +++ /dev/null @@ -1,1842 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/03.svg b/static/img/demo/03.svg deleted file mode 100644 index 9996a2b..0000000 --- a/static/img/demo/03.svg +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/04.svg b/static/img/demo/04.svg deleted file mode 100644 index f5ccec4..0000000 --- a/static/img/demo/04.svg +++ /dev/null @@ -1,1283 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/05.svg b/static/img/demo/05.svg deleted file mode 100644 index 038a162..0000000 --- a/static/img/demo/05.svg +++ /dev/null @@ -1,2931 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/06.svg b/static/img/demo/06.svg deleted file mode 100644 index 1d4ff65..0000000 --- a/static/img/demo/06.svg +++ /dev/null @@ -1,580 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/07.svg b/static/img/demo/07.svg deleted file mode 100644 index 45a7b72..0000000 --- a/static/img/demo/07.svg +++ /dev/null @@ -1,876 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/08.svg b/static/img/demo/08.svg deleted file mode 100644 index 23aa36d..0000000 --- a/static/img/demo/08.svg +++ /dev/null @@ -1,4687 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/09.svg b/static/img/demo/09.svg deleted file mode 100644 index 075b9a3..0000000 --- a/static/img/demo/09.svg +++ /dev/null @@ -1,12123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/10.svg b/static/img/demo/10.svg deleted file mode 100644 index f7d81bd..0000000 --- a/static/img/demo/10.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/11.svg b/static/img/demo/11.svg deleted file mode 100644 index 29eeb22..0000000 --- a/static/img/demo/11.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - 植物-芭蕉叶 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/12.svg b/static/img/demo/12.svg deleted file mode 100644 index 287878a..0000000 --- a/static/img/demo/12.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - 植物-大叶盆 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/13.svg b/static/img/demo/13.svg deleted file mode 100644 index 715dc8f..0000000 --- a/static/img/demo/13.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - 植物-芦荟草 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/14.svg b/static/img/demo/14.svg deleted file mode 100644 index e079982..0000000 --- a/static/img/demo/14.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - 植物-盆栽1 - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/15.svg b/static/img/demo/15.svg deleted file mode 100644 index 37248ba..0000000 --- a/static/img/demo/15.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - 植物-双紫叶 - Created with Sketch. - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/16.svg b/static/img/demo/16.svg deleted file mode 100644 index 260953d..0000000 --- a/static/img/demo/16.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - 植物-水草 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/17.svg b/static/img/demo/17.svg deleted file mode 100644 index 5913365..0000000 --- a/static/img/demo/17.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - 植物-仙人球 - Created with Sketch. - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/18.svg b/static/img/demo/18.svg deleted file mode 100644 index cdde317..0000000 --- a/static/img/demo/18.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - 植物-小花盆叶 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/19.svg b/static/img/demo/19.svg deleted file mode 100644 index 8c99329..0000000 --- a/static/img/demo/19.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - 植物-小叶草 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/20.svg b/static/img/demo/20.svg deleted file mode 100644 index f9af8b5..0000000 --- a/static/img/demo/20.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - 植物-圆红花盆栽 - Created with Sketch. - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/21.svg b/static/img/demo/21.svg deleted file mode 100644 index f73d0ed..0000000 --- a/static/img/demo/21.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - 植物-紫色盆 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/22.svg b/static/img/demo/22.svg deleted file mode 100644 index 1a872dd..0000000 --- a/static/img/demo/22.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - 植物-棕盆绿叶 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/demo/autumn.svg b/static/img/demo/autumn.svg deleted file mode 100644 index b6b2751..0000000 --- a/static/img/demo/autumn.svg +++ /dev/null @@ -1,1144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/demo/spring.svg b/static/img/demo/spring.svg deleted file mode 100644 index af882f6..0000000 --- a/static/img/demo/spring.svg +++ /dev/null @@ -1 +0,0 @@ -春天 \ No newline at end of file diff --git a/static/img/demo/summer.svg b/static/img/demo/summer.svg deleted file mode 100644 index 4281630..0000000 --- a/static/img/demo/summer.svg +++ /dev/null @@ -1 +0,0 @@ -夏天 \ No newline at end of file diff --git a/static/img/demo/winter.png b/static/img/demo/winter.png new file mode 100644 index 0000000..64a1ff1 Binary files /dev/null and b/static/img/demo/winter.png differ diff --git a/static/img/demo/winter.svg b/static/img/demo/winter.svg deleted file mode 100644 index 9516507..0000000 --- a/static/img/demo/winter.svg +++ /dev/null @@ -1,1582 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/header/01.svg b/static/img/header/01.svg deleted file mode 100644 index 8a45b35..0000000 --- a/static/img/header/01.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - 包菜+西红柿+丝瓜 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/02.svg b/static/img/header/02.svg deleted file mode 100644 index 78532ea..0000000 --- a/static/img/header/02.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - 菠萝+芒果+香蕉 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/03.svg b/static/img/header/03.svg deleted file mode 100644 index d141887..0000000 --- a/static/img/header/03.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - 草莓+柠檬 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/04.svg b/static/img/header/04.svg deleted file mode 100644 index 72cd4fc..0000000 --- a/static/img/header/04.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - 橙子+猕猴桃 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/05.svg b/static/img/header/05.svg deleted file mode 100644 index b85f3f6..0000000 --- a/static/img/header/05.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - -  胡萝卜+南瓜+香菇 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/06.svg b/static/img/header/06.svg deleted file mode 100644 index 94461c7..0000000 --- a/static/img/header/06.svg +++ /dev/null @@ -1,58 +0,0 @@ - - - - 花菜+豆角+土豆 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/07.svg b/static/img/header/07.svg deleted file mode 100644 index 1b316fa..0000000 --- a/static/img/header/07.svg +++ /dev/null @@ -1,174 +0,0 @@ - - - - 荔枝+火龙果 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/08.svg b/static/img/header/08.svg deleted file mode 100644 index 0ba78fa..0000000 --- a/static/img/header/08.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - 苹果+梨子 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/09.svg b/static/img/header/09.svg deleted file mode 100644 index 5001da4..0000000 --- a/static/img/header/09.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - 西瓜+蓝莓+樱桃 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/10.svg b/static/img/header/10.svg deleted file mode 100644 index e060c75..0000000 --- a/static/img/header/10.svg +++ /dev/null @@ -1,121 +0,0 @@ - - - - 玉米+辣椒+藕 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/11.svg b/static/img/header/11.svg deleted file mode 100644 index cc95d82..0000000 --- a/static/img/header/11.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - 茄子+洋葱+红萝卜 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/12.svg b/static/img/header/12.svg deleted file mode 100644 index bb0808f..0000000 --- a/static/img/header/12.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - 葡萄+木瓜 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/img/header/b.svg b/static/img/header/b.svg deleted file mode 100644 index 5e4556d..0000000 --- a/static/img/header/b.svg +++ /dev/null @@ -1,1849 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/header/c.svg b/static/img/header/c.svg deleted file mode 100644 index a7f8d6d..0000000 --- a/static/img/header/c.svg +++ /dev/null @@ -1,1501 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/header/d.svg b/static/img/header/d.svg deleted file mode 100644 index be88a31..0000000 --- a/static/img/header/d.svg +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/list/01.jpg b/static/img/list/01.jpg new file mode 100644 index 0000000..7916407 Binary files /dev/null and b/static/img/list/01.jpg differ diff --git a/static/img/list/02.svg b/static/img/list/02.svg deleted file mode 100644 index 75b12eb..0000000 --- a/static/img/list/02.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/03.svg b/static/img/list/03.svg deleted file mode 100644 index 6d25e1d..0000000 --- a/static/img/list/03.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit5 \ No newline at end of file diff --git a/static/img/list/04.svg b/static/img/list/04.svg deleted file mode 100644 index 05bfc0d..0000000 --- a/static/img/list/04.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/05.svg b/static/img/list/05.svg deleted file mode 100644 index aa620f4..0000000 --- a/static/img/list/05.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/06.svg b/static/img/list/06.svg deleted file mode 100644 index d7182d3..0000000 --- a/static/img/list/06.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/07.svg b/static/img/list/07.svg deleted file mode 100644 index ae527af..0000000 --- a/static/img/list/07.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/08.svg b/static/img/list/08.svg deleted file mode 100644 index 633e512..0000000 --- a/static/img/list/08.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/09.svg b/static/img/list/09.svg deleted file mode 100644 index 44ebe89..0000000 --- a/static/img/list/09.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/10.svg b/static/img/list/10.svg deleted file mode 100644 index c7e8151..0000000 --- a/static/img/list/10.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/11.svg b/static/img/list/11.svg deleted file mode 100644 index eff9e96..0000000 --- a/static/img/list/11.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/list/12.svg b/static/img/list/12.svg deleted file mode 100644 index 7b6e9cc..0000000 --- a/static/img/list/12.svg +++ /dev/null @@ -1 +0,0 @@ -Belanja - E-comerce Illustrstion Kit \ No newline at end of file diff --git a/static/img/logo.png b/static/img/logo.png deleted file mode 100644 index b5771e2..0000000 Binary files a/static/img/logo.png and /dev/null differ diff --git a/static/profile/1.jpg b/static/profile/1.jpg deleted file mode 100644 index 129331e..0000000 Binary files a/static/profile/1.jpg and /dev/null differ diff --git a/static/profile/2.jpg b/static/profile/2.jpg deleted file mode 100644 index 3388ad3..0000000 Binary files a/static/profile/2.jpg and /dev/null differ diff --git a/static/profile/3.jpg b/static/profile/3.jpg deleted file mode 100644 index 9aac2b8..0000000 Binary files a/static/profile/3.jpg and /dev/null differ diff --git a/utils/data/data.js b/utils/data/data.js index 76bf595..b616a8a 100644 --- a/utils/data/data.js +++ b/utils/data/data.js @@ -1,7 +1,7 @@ // 动态列表 export const newsList = [{ list: [{ - userPic: "/static/img/header/01.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "雨水", // 用户名 isFollow: true, // 是否关注 sex: 0, // 0 男 1 女 @@ -10,7 +10,7 @@ export const newsList = [{ type: 'video', // img:图文,video:视频 playNum: "38w", // 播放数 playLong: "10:30", // 播放时长 - coverPic: "/static/img/list/01.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 1, // 0:没有操作,1:顶,2:踩 smileNum: 18, // 微笑数 @@ -20,14 +20,14 @@ export const newsList = [{ shareNum: 66 // 分享数 }, { - userPic: "/static/img/header/02.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "芒种", // 用户名 isFollow: false, // 是否关注 sex: 1, // 0 男 1 女 age: 30, title: "做一件有价值的事情,坚持下去等待时间的回报吧!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/02.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 0, // 0:没有操作,1:顶,2:踩 smileNum: 13, // 微笑数 @@ -37,14 +37,14 @@ export const newsList = [{ shareNum: 32 // 分享数 }, { - userPic: "/static/img/header/03.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "小满", // 用户名 isFollow: false, // 是否关注 sex: 0, // 0 男 1 女 age: 18, title: "生死看淡,不服就干,越努力,越幸运!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/03.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 2, // 0:没有操作,1:顶,2:踩 smileNum: 19, // 微笑数 @@ -54,7 +54,7 @@ export const newsList = [{ shareNum: 10 // 分享数 }, { - userPic: "/static/img/header/04.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "谷雨", // 用户名 isFollow: false, // 是否关注 sex: 0, // 0 男 1 女 @@ -63,7 +63,7 @@ export const newsList = [{ type: 'video', // img:图文,video:视频 playNum: "12w", // 播放数 playLong: "06:20", // 播放时长 - coverPic: "/static/img/list/04.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 0, // 0:没有操作,1:顶,2:踩 smileNum: 16, // 微笑数 @@ -73,14 +73,14 @@ export const newsList = [{ shareNum: 10 // 分享数 }, { - userPic: "/static/img/header/05.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "霜降", // 用户名 isFollow: false, // 是否关注 sex: 1, // 0 男 1 女 age: 22, title: "无论怎样,明天的太阳依旧会照常升起!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/05.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 1, // 0:没有操作,1:顶,2:踩 smileNum: 36, // 微笑数 @@ -93,14 +93,14 @@ export const newsList = [{ }, { list: [{ - userPic: "/static/img/header/06.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "芒种", // 用户名 isFollow: false, // 是否关注 sex: 0, // 0 男 1 女 age: 20, title: "做一件有价值的事情,坚持下去等待时间的回报吧!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/06.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 0, // 0:没有操作,1:顶,2:踩 smileNum: 13, // 微笑数 @@ -110,14 +110,14 @@ export const newsList = [{ shareNum: 32 // 分享数 }, { - userPic: "/static/img/header/07.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "小满", // 用户名 isFollow: false, // 是否关注 sex: 0, // 0 男 1 女 age: 20, title: "生死看淡,不服就干,越努力,越幸运!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/07.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 2, // 0:没有操作,1:顶,2:踩 smileNum: 19, // 微笑数 @@ -130,14 +130,14 @@ export const newsList = [{ }, { list: [{ - userPic: "/static/img/header/08.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "谷雨", // 用户名 isFollow: false, // 是否关注 sex: 0, // 0 男 1 女 age: 20, title: "生死看淡,不服就干,越努力,越幸运!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/08.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 2, // 0:没有操作,1:顶,2:踩 smileNum: 19, // 微笑数 @@ -147,7 +147,7 @@ export const newsList = [{ shareNum: 10 // 分享数 }, { - userPic: "/static/img/header/09.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "霜降", // 用户名 isFollow: false, // 是否关注 sex: 0, // 0 男 1 女 @@ -156,7 +156,7 @@ export const newsList = [{ type: 'video', // img:图文,video:视频 playNum: "12w", // 播放数 playLong: "06:20", // 播放时长 - coverPic: "/static/img/list/09.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 0, // 0:没有操作,1:顶,2:踩 smileNum: 16, // 微笑数 @@ -169,14 +169,14 @@ export const newsList = [{ }, { list: [{ - userPic: "/static/img/header/10.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "雨水", // 用户名 isFollow: true, // 是否关注 title: "继续全力奔跑,和优秀的人一起做有挑战的事情。!", // 标题 type: 'video', // img:图文,video:视频 playNum: "38w", // 播放数 playLong: "10:30", // 播放时长 - coverPic: "/static/img/list/10.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 1, // 0:没有操作,1:顶,2:踩 smileNum: 18, // 微笑数 @@ -186,12 +186,12 @@ export const newsList = [{ shareNum: 66 // 分享数 }, { - userPic: "/static/img/header/03.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "小满", // 用户名 isFollow: false, // 是否关注 title: "生死看淡,不服就干,越努力,越幸运!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/11.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 2, // 0:没有操作,1:顶,2:踩 smileNum: 19, // 微笑数 @@ -204,12 +204,12 @@ export const newsList = [{ }, { list: [{ - userPic: "/static/img/header/11.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "芒种", // 用户名 isFollow: false, // 是否关注 title: "无论怎样,明天的太阳依旧会照常升起!", // 标题 type: 'img', // img:图文,video:视频 - coverPic: "/static/img/list/12.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 1, // 0:没有操作,1:顶,2:踩 smileNum: 36, // 微笑数 @@ -219,14 +219,14 @@ export const newsList = [{ shareNum: 30 // 分享数 }, { - userPic: "/static/img/header/12.svg", // 头像 + userPic: "/static/img/header/a.svg", // 头像 username: "谷雨", // 用户名 isFollow: false, // 是否关注 title: "如果你知道去哪儿,世界也会为你让路!", // 标题 type: 'video', // img:图文,video:视频 playNum: "12w", // 播放数 playLong: "06:20", // 播放时长 - coverPic: "/static/img/list/01.svg", // 封面图 + coverPic: "/static/img/list/01.jpg", // 封面图 infoNum: { // 顶踩信息 index: 0, // 0:没有操作,1:顶,2:踩 smileNum: 16, // 微笑数 @@ -246,63 +246,63 @@ export const newsList = [{ export const topicList = [{ list: [{ title: "秋天的第一杯奶茶", - img: "/static/img/list/01.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "要么瘦,要么死", - img: "/static/img/list/02.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "打工人", - img: "/static/img/list/03.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "早安,你好", - img: "/static/img/list/04.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "奥利给,加油", - img: "/static/img/list/05.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "光辉岁月", - img: "/static/img/list/06.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "有志青年", - img: "/static/img/list/07.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "一切皆有可能", - img: "/static/img/list/08.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "不走寻常路", - img: "/static/img/list/09.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 @@ -312,63 +312,63 @@ export const topicList = [{ { list: [{ title: "早安,你好", - img: "/static/img/list/04.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "奥利给,加油", - img: "/static/img/list/05.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "光辉岁月", - img: "/static/img/list/06.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "秋天的第一杯奶茶", - img: "/static/img/list/01.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "要么瘦,要么死", - img: "/static/img/list/02.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "打工人", - img: "/static/img/list/03.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "有志青年", - img: "/static/img/list/07.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "一切皆有可能", - img: "/static/img/list/08.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "不走寻常路", - img: "/static/img/list/09.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 @@ -378,63 +378,63 @@ export const topicList = [{ { list: [{ title: "光辉岁月", - img: "/static/img/list/06.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "有志青年", - img: "/static/img/list/07.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "一切皆有可能", - img: "/static/img/list/08.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "秋天的第一杯奶茶", - img: "/static/img/list/01.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "要么瘦,要么死", - img: "/static/img/list/02.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "打工人", - img: "/static/img/list/03.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "早安,你好", - img: "/static/img/list/04.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "奥利给,加油", - img: "/static/img/list/05.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "不走寻常路", - img: "/static/img/list/09.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 @@ -444,63 +444,63 @@ export const topicList = [{ { list: [{ title: "奥利给,加油", - img: "/static/img/list/05.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "光辉岁月", - img: "/static/img/list/06.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "有志青年", - img: "/static/img/list/07.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "一切皆有可能", - img: "/static/img/list/08.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "秋天的第一杯奶茶", - img: "/static/img/list/01.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "要么瘦,要么死", - img: "/static/img/list/02.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "打工人", - img: "/static/img/list/03.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "早安,你好", - img: "/static/img/list/04.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "不走寻常路", - img: "/static/img/list/09.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 @@ -510,63 +510,63 @@ export const topicList = [{ { list: [{ title: "打工人", - img: "/static/img/list/03.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "早安,你好", - img: "/static/img/list/04.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "奥利给,加油", - img: "/static/img/list/05.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "光辉岁月", - img: "/static/img/list/06.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 }, { title: "有志青年", - img: "/static/img/list/07.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "一切皆有可能", - img: "/static/img/list/08.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "秋天的第一杯奶茶", - img: "/static/img/list/01.svg", + img: "/static/img/list/01.jpg", desc: "有人请你喝第一杯奶茶吗?", totalNum: 3650, todayNum: 680 }, { title: "要么瘦,要么死", - img: "/static/img/list/02.svg", + img: "/static/img/list/01.jpg", desc: "今天你去健身了吗,坚持锻炼。", totalNum: 7850, todayNum: 308 }, { title: "不走寻常路", - img: "/static/img/list/09.svg", + img: "/static/img/list/01.jpg", desc: "敬一杯,追梦的打工人。", totalNum: 1150, todayNum: 100 @@ -589,21 +589,21 @@ export const paperList = [{ count: 38 }, { - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', nickName: 'Tony', createTime: '10:38', content: '放下笔安静的想起一个地方,午后庄园葡萄藤散发果香,地窖的橡木桶酝酿起过往', count: 20 }, { - avatar: '/static/img/header/c.svg', + avatar: '/static/img/header/a.svg', nickName: 'Suby', createTime: '08:16', content: '回忆年少有一种停格的美感,想起了你还有几年前的远方,这石砌的老墙颜色斑驳着米黄', count: 18 }, { - avatar: '/static/img/header/d.svg', + avatar: '/static/img/header/a.svg', nickName: 'Runly', createTime: '06:56', content: '当初的感觉已在石板路上走散,推开了百叶窗,你翦影的背景有夕阳', @@ -622,57 +622,57 @@ export const friendList = [{ }, { name: 'thinco', - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', sex: 1, age: 25, isFollow: true, }, { name: 'ling', - avatar: '/static/img/header/c.svg', + avatar: '/static/img/header/a.svg', sex: 0, age: 29 }, { name: 'grins', - avatar: '/static/img/list/01.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 28 }, { name: 'lukas', - avatar: '/static/img/list/02.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 20, isFollow: true, }, { name: 'dinco', - avatar: '/static/img/list/03.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 21 }, { name: 'luboo', - avatar: '/static/img/list/04.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 36 }, { name: 'skying', - avatar: '/static/img/list/05.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 34 }, { name: 'jack', - avatar: '/static/img/list/06.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 19 }, { name: 'lucky', - avatar: '/static/img/list/10.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 20 }, @@ -681,32 +681,32 @@ export const friendList = [{ { list: [{ name: 'skying', - avatar: '/static/img/list/05.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 34 }, { name: 'jack', - avatar: '/static/img/list/06.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 19 }, { name: 'grins', - avatar: '/static/img/list/01.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 28 }, { name: 'lukas', - avatar: '/static/img/list/02.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 20, isFollow: true, }, { name: 'dinco', - avatar: '/static/img/list/03.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 21 }, @@ -719,20 +719,20 @@ export const friendList = [{ }, { name: 'thinco', - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', sex: 1, age: 25, isFollow: true, }, { name: 'ling', - avatar: '/static/img/header/c.svg', + avatar: '/static/img/header/a.svg', sex: 0, age: 29 }, { name: 'luboo', - avatar: '/static/img/list/04.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 36 }, @@ -742,38 +742,38 @@ export const friendList = [{ { list: [{ name: 'grins', - avatar: '/static/img/list/01.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 28 }, { name: 'lukas', - avatar: '/static/img/list/02.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 20, isFollow: true, }, { name: 'dinco', - avatar: '/static/img/list/03.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 21 }, { name: 'luboo', - avatar: '/static/img/list/04.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 36 }, { name: 'skying', - avatar: '/static/img/list/05.svg', + avatar: '/static/img/list/01.jpg', sex: 0, age: 34 }, { name: 'jack', - avatar: '/static/img/list/06.svg', + avatar: '/static/img/list/01.jpg', sex: 1, age: 19 }, @@ -786,14 +786,14 @@ export const friendList = [{ }, { name: 'thinco', - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', sex: 1, age: 25, isFollow: true, }, { name: 'ling', - avatar: '/static/img/header/c.svg', + avatar: '/static/img/header/a.svg', sex: 0, age: 29 }, @@ -804,7 +804,7 @@ export const friendList = [{ // 聊天列表 export const chatList = [{ userid: 2, - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', username: 'sky', data: '来一段,freestyle?', type: 'text', @@ -828,7 +828,7 @@ export const chatList = [{ }, { userid: 2, - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', username: 'sky', data: '出门路上下雨了,还是得看天气宝!', type: 'text', @@ -844,7 +844,7 @@ export const chatList = [{ }, { userid: 2, - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', username: 'sky', data: '就像居无定所的云还在旅行!', type: 'text', @@ -860,7 +860,7 @@ export const chatList = [{ }, { userid: 2, - avatar: '/static/img/header/b.svg', + avatar: '/static/img/header/a.svg', username: 'sky', data: 'ok,respect (^_^)', type: 'text', diff --git a/utils/lib/code.js b/utils/lib/code.js new file mode 100644 index 0000000..8b02f20 --- /dev/null +++ b/utils/lib/code.js @@ -0,0 +1,34 @@ +import { + login +} from '@/api/login.js' + + +function codes() { + // #ifdef MP-WEIXIN + uni.login({ + success: (res) => { + console.log(res); + if (res.errMsg == "login:ok") { + login({ + code: res.code, + org_id: "1", + }).then(res => { + console.log(res, '切换门店code返回---------') + //注册的 保存token + if (res.data.token) { + uni.setStorageSync('token', res.data.token) + } + }) + } else { + uni.showToast({ + title: '系统异常,请联系管理员!' + }) + } + } + }) + // #endif + +} +export default { + codes +} \ No newline at end of file diff --git a/utils/lib/config.js b/utils/lib/config.js deleted file mode 100644 index 6527387..0000000 --- a/utils/lib/config.js +++ /dev/null @@ -1,10 +0,0 @@ -export default { - // api请求前端 - request:'https://xxx.xxx.com/api/v1', - // websocket地址 - socket:'https://xxx.xxx.com/wss', - // 文件上传 - upload:'https://xxx.xxx.com/upload', - // 文件下载 - download:'https://xxx.xxx.com/download' -} \ No newline at end of file diff --git a/utils/lib/request.js b/utils/lib/request.js new file mode 100644 index 0000000..d08c3e0 --- /dev/null +++ b/utils/lib/request.js @@ -0,0 +1,36 @@ +import wxCode from '@/utils/lib/code.js' + +export const apiResquest = (prams) => { + + return new Promise((resolve, reject) => { + let url = getApp().globalData.webApi + prams.url; + return uni.request({ + url: url, + data: prams.query, + method: prams.method, + header: { + 'Authorization': uni.getStorageSync("token"), + }, + success: (res) => { + // uni.hideLoading() + if (res.data.code != 200) { + if (res.data.code == 402 || res.data.code == 401) { + wxCode.codes() + } + uni.showToast({ + title: res.msg, + duration: 1000, + icon: "none" + }) + } + resolve(res.data); + }, + fail: (err) => { + reject(err); + }, + complete: () => { + console.log('请求完成') + } + }); + }) +} \ No newline at end of file