Authored by 李靖

Merge branch 'feature/family' of git.yoho.cn:fe/yohobuywap-node into feature/family

... ... @@ -12,8 +12,7 @@ exports.tideCommand = (req, res, next) => {
page: 'tide-command',
pageHeader: headerModel.setNav({
navTitle: '我的潮流口令',
navBtn: false,
save: true
navBtn: false
}),
title: '我的潮流口令',
width750: true,
... ...
... ... @@ -2,6 +2,8 @@
{{# invitionDta}}
<div class="set-world">
<textarea name="" class="command-textarea" id="command-textarea" placeholder="请设置15位字符以内的潮流口令">{{#if trendWord}}{{trendWord}}{{/if}}</textarea>
<div class="save">保存</div>
</div>
<span class="world-number">15</span>
... ...
... ... @@ -6,6 +6,7 @@
.set-world {
background-color: #fff;
padding-bottom: 20px;
}
.command-textarea {
... ... @@ -20,6 +21,17 @@
padding: 15px 30px;
}
.save {
width: 240px;
height: 80px;
line-height: 80px;
color: #fff;
background-color: #414141;
text-align: center;
margin: 0 auto;
border-radius: 10px;
}
.world-number {
position: absolute;
font-size: 24px;
... ...