Commit 8a4cc83a authored by linking2014's avatar linking2014

添加 收货用户名、手机号字段

修复 商品名过长时显示异常的问题
parent efa85366
...@@ -21,7 +21,11 @@ ...@@ -21,7 +21,11 @@
<div class="item-content"> <div class="item-content">
<div class="dl"> <div class="dl">
<div class="dt">收件地址:</div> <div class="dt">收件地址:</div>
<div class="dd">{{item.receive_address}}</div> <div class="dd">
<template v-if="item.receive_name">{{item.receive_name}}</template>
<template v-if="item.receive_mobile">{{item.receive_mobile}}</template>
<template v-if="item.receive_address">{{item.receive_address}}</template>
</div>
</div> </div>
<div class="dl"> <div class="dl">
<div class="dt">物流信息:</div> <div class="dt">物流信息:</div>
...@@ -131,10 +135,9 @@ ...@@ -131,10 +135,9 @@
//border-bottom: solid 1*@toVw #E2E2E2; //border-bottom: solid 1*@toVw #E2E2E2;
border-bottom: solid 0.55px #E2E2E2; border-bottom: solid 0.55px #E2E2E2;
h2 { h2 {
height:20*@toVw; line-height:20*@toVw;
font-size:14*@toVw; font-size:14*@toVw;
color:rgba(51,51,51,1); color:rgba(51,51,51,1);
line-height:20*@toVw;
font-weight: normal; font-weight: normal;
& + h2 { & + h2 {
margin-top: 4*@toVw; margin-top: 4*@toVw;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment