Authored by Lynnic

Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop

... ... @@ -3,6 +3,7 @@ var $ = require('jquery'),
var employ;
window.rePosFooter();
$('.yoho-footer').css('border-top', '1px solid #e0e0e0');
$('.employ span').each(function(index) {
employ = new Hammer($('.employ span')[index]);
employ.on('tap', function(e) {
... ...
... ... @@ -19,6 +19,14 @@
font-weight: bold;
}
.name {
display: inline-block;
max-width: pxToRem(380px);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.tel {
float: right;
}
... ...
... ... @@ -3,7 +3,7 @@
<input type="hidden" name="id" value="">
<label class="username">
收件人姓名
<input type="text" name="consignee" value="">
<input type="text" name="consignee" maxlength="20" value="">
</label>
<label class="mobile">
手机号码
... ... @@ -17,7 +17,7 @@
</label>
<label class="address">
详细地址
<textarea name="address"></textarea>
<textarea name="address" maxlength="100"></textarea>
</label>
</form>
... ...