需求分析
首先我们明确要开发的快应用需要哪些功能,我简单罗列一下第一版的功能需求。
-
需要一个查看正在上映的电影页面
-
需要一个查看即将上映的电影页面
-
需要一个查看电影详细信息的页面
-
需要一个查看电影排行榜单的页面
第一版本的快应用我们暂定实现这四个需求。现在我们分解一下这四个需求,对应到我们要开发的具体页面上去。首先我们可以把正在上映和即将上映的电影放在一个页面,对应快应用的一个tabbar,详细信息页面作为点击单个电影之后的跳转的详情页面,电影榜单则作为tabbar的第二个页面。下面是根据这个需求分析做的一个简略的说。
界面搭建
根据上面的页面结构,我们可以开始进行项目中的页面配置了。
1.增加页面文件和目录
目录结构增加情况
├── src
│ └── page 应用页面
│ └── index 应用首页目录
│ │ └── index.ux 应用首页文件
+ │ └── top 榜单页目录
+ │ │ └── index.ux 榜单页文件
+ │ └── index 详情页目录
+ │ └── index.ux 详情页文件
└── package.json 定义项目需要的各种模块及配置信息复制代码
增加的页面在manifest.json中对应字段修改
{
"router": {
"entry": "page/index",
"pages": {
"page/index": {
"component": "index"
},
+ "page/top": {
+ "component": "index"
+ },
+ "page/detail": {
+ "component": "index"
+ }
}
},
"display": {
- "titleBarBackgroundColor": "#f2f2f2",
- "titleBarTextColor": "#414141",
+ "titleBarBackgroundColor": "#00B51D",
+ "titleBarTextColor": "#ffffff",
"menu": true,
"pages": {
"page/index": {
"titleBarText": "首页",
"menu": false
},
+ "page/top": {
+ "titleBarText": "排行榜",
+ "menu": false
+ },
+ "page/detail": {
+ "titleBarText": "详情页",
+ "menu": false
+ }
}
}
}复制代码
2.编写首页界面
- 顶部筛选组件
顶部筛选组件是固定在页面顶部的,所以定位的方式采用position:fixed来实现,由于固定在顶部会占用页面的高度,中级的列表也要相应的减掉这一部分的高度,列表中的内容才不会被挡住。所以中间的列表容器元素需要添加margin-top:100px样式规则。
template部分代码
"container">
"filter-wrap">
"filter active">正在热映
"filter">即将上映
复制代码
style部分代码
.container {
display: flex;
}
.filter-wrap {
position: fixed;
top: 0;
left: 0;
height: 100px;
width: 100%;
background-color: #00B51D;
justify-content: center;
align-items: center;
}
.filter {
text-align: center;
color: #ffffff;
width: 200px;
height: 50px;
border: 1px solid #ffffff;
font-size: 24px;
}
.active {
background-color: #ffffff;
color: #00B51D;
}复制代码
现在筛选器的界面已经写出来
"movie-list">
for="[1,2,3,4,5]">
type="movie">
"movie">
"poster">
"">
"info">
"top">
"title">
"name">毒液
"year">2018
"rating">
"average">9.0
"bottom">
"wrap">
类型
科幻
"wrap">
演员
广东吴彦祖
"wrap">
导演
广东彭于晏
type="nomore">
没有更多了~
复制代码
style部分代码
.movie {
height: 300px;
margin: 20px 20px 0 20px;
width: 100%;
flex-direction: row;
}
.info {
flex-direction: column;
flex-grow: 1;
padding: 0 20px;
}
.top {
flex-direction: row;
justify-content: space-between;
margin-bottom: 30px;
}
.bottom {
flex-direction: column;
flex-grow: 1;
justify-content: space-around;
}
.bottom text {
font-size: 26px;
}
.name {
font-size: 36px;
}
.title {
flex-direction: column;
}
.poster {
width: 230px;
}
.poster image {
width: 100%;
height: 100%;
}
.rating {
height: 100px;
width: 100px;
border-radius: 20px;
background-color: #f0f3f5;
justify-content: center;
}
.average {
color: #27a;
}复制代码
现在列表布局的界面已经写出来
-
底部选项卡
"tabbar">
"tab">
"/common/picture/ing-active.png">
"active-tab">首页
"tab">
"/common/picture/coming.png">
"">排行榜
复制代码
style部分代码
.container {
display: flex;
padding: 100px 0;
}
.tabbar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
border-top-width: 1px;
border-color: #bbbbbb;
background-color: #ffffff;
flex-direction: row;
border-top-color: black
}
.tab {
flex: 1;
align-items: center;
justify-content: center;
flex-direction: column;
}
.tab image {
height: 60px;
width: 60px;
}
.tab text {
font-size: 20px;
}
.active-tab {
color: #27a;
}复制代码
底部选项卡的界面完成了
"rgb(51, 51, 51)">"tabbar">
"tab" onclick="switchTab('/page/index')">
"/common/picture/ing-active.png">
"active-tab">首页
"tab" onclick="switchTab('/page/top')">
"/common/picture/coming.png">
"">排行榜
复制代码
可以看到每个tab上都多出了一个onclick 的属性,这是我们给tab加上的点击事件,事件触发执行的方法是我们写的switchTab()方法,方法中传入的就是要跳转的页面路径。下面是跳转方法的实现代码。
import router from "@system.router"
export default {
switchTab: function (uri) {
router.replace({
uri: uri
})
}
}复制代码
现在我们的选项卡组件就具备了页面跳转的能力了。
3.编写榜单页界面
"container">
"movie-list">
for="[1,2,3,4,5]">
type="movie">
"movie">
"number">
{{$idx + 1}}
"poster">
"">
"info">
"top">
"title">
"name">毒液
"year">2018
"rating">
"average">9.0
"bottom">
"wrap">
类型
科幻
"wrap">
演员
广东吴彦祖
"wrap">
导演
广东彭于晏
type="nomore">
没有更多了~
"tabbar">
"tab" onclick="switchTab('/page/index')">
"/common/picture/ing.png">
"">首页
"tab" onclick="switchTab('/page/top')">
"/common/picture/coming-active.png">
"active-tab">排行榜
复制代码
style部分代码(与首页的style代码的不同之处)
.container {
display: flex;
- padding: 100px 0;
+. padding-bottom: 100px;
}
.movie {
height: 300px;
- margin: 20px 20px 0 20px;
+ margin: 20px 20px 0 0;
width: 100%;
flex-direction: row;
}
- .filter-wrap {
- position: fixed;
- top: 0;
- left: 0;
- height: 100px;
- width: 100%;
- background-color: #00B51D;
- justify-content: center;
- align-items: center;
- }
- .filter {
- text-align: center;
- color: #ffffff;
- width: 200px;
- height: 50px;
- border: 1px solid #ffffff;
- font-size: 24px;
- }
- .active {
- background-color: #ffffff;
- color: #00B51D;
- }
+ .number {
+ width: 80px;
+ justify-content: center;
+ }
+ .number text{
+ font-size: 26px;
+ }复制代码
现在榜单页的界面部分也完成了
"container column">
"film-detail">
"film-image">
"">
"film-info column">
"info-container">
"column">
"film-title">毒液
"film-year">2018
"film-rating column">
"label">评分
"rating">9
"directors">
"label">导演:
"detail-wrap">
for="[1,2,3]">
"person">广东吴彦祖
"casts">
"label">主演:
"detail-wrap">
for="{{[1,2,3]}}">
"person">广东彭于晏
"genres">
"label">类型:
for="{{[1,2]}}">
"person">科幻
"genres">
"label">国家/地区:
for="{{[1,2]}}">
"person">美国
"collect-wish">
看过(10)
想看(10)
"summary column">
"title">剧情简介
"content">
2018漫威压轴巨制,蜘蛛侠最强劲敌“毒液”强势来袭!
"content-wrap column">
"title">演职人员
"casts-list">
"column cast" type="cast" for="[1,2,3,4,5,6,7]">
"">
yanyuan
复制代码
style部分代码
.column {
flex-direction: column;
}
.container {
padding: 20px;
}
.film-image {
padding-right: 20px;
width: 300px;
flex-shrink: 0;
}
.film-image image {
height: 400px;
width: 300px;
}
.info-container {
justify-content: space-between;
margin-bottom: 50px;
}
.film-title {
font-size: 40px;
lines: 2;
}
.film-year {
color: #999999;
}
.film-rating {
height: 100px;
width: 100px;
border-radius: 20px;
background-color: #f0f3f5;
justify-content: center;
align-content: center;
}
.label {
text-align: center;
color: #888888;
font-size: 26px;
}
.rating {
text-align: center;
color: #ff680d;
font-size: 40px;
}
.detail-wrap {
/*flex-wrap: wrap;*/
}
.directors, .casts {
align-items: flex-start;
}
.directors .label, .casts .label {
width: 100px;
}
.person {
font-size: 26px;
}
.collect-wish text {
font-size: 26px;
}
.title {
height: 60px;
border-left-width: 10px;
border-left-color: #00B51D;
background: linear-gradient(to right, #f0f3f5, #ffffff);
margin: 30px 0;
padding-left: 20px;
}
.content {
line-height: 50px;
}
.casts-list {
flex-direction: row;
height: 300px;
width: 100%;
}
.cast {
width: 200px;
height: 100%;
margin: 0 20px 10px 0;
}
.cast image {
width: 200px;
}
.cast text {
text-align: center;
lines: 1;
}复制代码
现在详情页的静态界面已经完成
本文出自“快应用生态平台成员—vivo官方技术团队”