-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
…HEAD
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,8 +36,9 @@ | |
## 分支 | ||
* master | ||
* lib-flex | ||
* ssr | ||
* [lib-flex](https://www.npmjs.com/package/amfe-flexible) 添加自适应布局 merge into master √ | ||
* [ssr](https://ssr.vuejs.org/en/) 服务端渲染实现 | ||
* [pre-render](https://github.com/chrisvfritz/prerender-spa-plugin) 预渲染实现 | ||
## 组件 | ||
|
@@ -52,6 +53,7 @@ | |
* [x] /singer/:id 歌手详情页 , 局部滚动,视差,音乐播放器有的功能都有 | ||
* [x] /rank/:id 排行页 | ||
* [x] /search 搜索,搜索结果,搜索历史,热门搜索,结果播放 | ||
* [ ] 播放列表页 | ||
* [ ] 用户中心页 | ||
## 调试工具 | ||
|
@@ -86,13 +88,14 @@ $ yarn run dev | |
<img src="./static/WechatIMG505.png" width="50%"><img src="./static/WechatIMG506.png" width="50%"> | ||
* iphone7 Plus 模拟器正常 | ||
* IOS系列模拟器正常 | ||
<img src="./static/WechatIMG508.png"> | ||
![适配iphone 系列,X的刘海暂未处理](./static/WechatIMG507.jpeg) | ||
<img src="./static/[email protected]"> | ||
<img src="./static/[email protected]"> | ||
<img src="./static/[email protected]"> | ||
* 适配列表中iPhone,iPad系列,其中X有留白 | ||
![适配iphone 系列,X的刘海暂未处理](./static/WechatIMG507.jpeg) | ||
### Andriod 适配 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"><meta name=flexible content="initial-dpr=2"><meta content="telephone=no,email=no" name=format-detection><title>QQ Music</title><link href=./static/css/app.295b94cab1b619c4fc83b7a57d46ef52.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.36e637b252c82c1cf510.js></script><script type=text/javascript src=./static/js/vendor.90efff3d1c4be1c44bce.js></script><script type=text/javascript src=./static/js/app.b00b92ad29fb1ccff28c.js></script></body></html> | ||
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"><meta name=flexible content="initial-dpr=2"><meta content="telephone=no,email=no" name=format-detection><title>QQ Music</title><link href=./static/css/app.21638aa54e1a11c945f57c75a3dc0382.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.507885da59602787dcea.js></script><script type=text/javascript src=./static/js/vendor.90c0efa046c90e03789f.js></script><script type=text/javascript src=./static/js/app.5e355bcc287df4ac3c59.js></script></body></html> |
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<div class="not-found-page"> | ||
<p class="text">404</p> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
name: 'NotFound', | ||
} | ||
</script> | ||
<style lang="less" scoped> | ||
.not-found-page { | ||
position: fixed; | ||
left: 0; | ||
top: 0; | ||
bottom: 0; | ||
right: 0; | ||
background: #f4f4f4; | ||
text-align: center; | ||
.text { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate3d(-50%, -50%, 0); | ||
} | ||
} | ||
</style> |