Commit 458ef9c445e36a7cc20462f5def8165c2b61164f

Authored by zhiyangdu
1 parent 2f706f7d

兑换记录样式优化

src/pages/pointsExchangeRecords/pointsExchangeRecords.less
... ... @@ -46,6 +46,9 @@
46 46 text-overflow: ellipsis;
47 47 overflow: hidden;
48 48 word-break: break-all;
  49 + span{
  50 + margin-left: 10px;
  51 + }
49 52 }
50 53 .exchange_type{
51 54 height: 40px;
... ...
src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
... ... @@ -23,7 +23,7 @@
23 23 {{item.title}}
24 24 </div>
25 25 <div v-show="item.address_name && item.address_address && item.address_phone" class="address_name">
26   - 收货人: {{item.address_name}}{{item.address_phone}}{{item.address_address}}
  26 + 收货人: <span> {{item.address_name}}</span> <span> {{item.address_phone}}</span> <span> {{item.address_address}}</span>
27 27 </div>
28 28  
29 29 <div v-show="item.price || item.total" class="exchange_type">
... ...