Authored by 郭成尧

address-tip

... ... @@ -165,6 +165,12 @@
{{/if}}
</section>
{{#if addressInfo}}
<div class="address-bottom">
<div class="back"></div>
<span>送至:{{addressInfo}}</span>
</div>
{{/if}}
<div class="bill">
您需要支付:<span>¥{{round price 2}}</span>
<a href="javascript:;">提交订单</a>
... ...
... ... @@ -304,6 +304,38 @@
}
}
.address-bottom {
display: none;
position: fixed;
left: 0;
width: 100%;
height: 70px;
overflow: hidden;
line-height: 2rem;
font-size: 24px;
bottom: 100px;
.back {
width: 100%;
height: 100%;
background: #000;
filter: alpha(opacity=70); /*IE滤镜,透明度70%*/
-moz-opacity: 0.7; /*Firefox私有,透明度70%*/
opacity: 0.7;/*其他,透明度70%*/
}
span {
color: #fff;
display: block;
padding-left: 4%;
position: relative;
top: -70px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
.order-good {
position: relative;
padding: 20px 0;
... ...