Authored by ccbikai

增加地址长度限制

... ... @@ -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>
... ...