Commit 458ef9c445e36a7cc20462f5def8165c2b61164f
1 parent
2f706f7d
兑换记录样式优化
Showing
2 changed files
with
4 additions
and
1 deletions
src/pages/pointsExchangeRecords/pointsExchangeRecords.less
| @@ -46,6 +46,9 @@ | @@ -46,6 +46,9 @@ | ||
| 46 | text-overflow: ellipsis; | 46 | text-overflow: ellipsis; |
| 47 | overflow: hidden; | 47 | overflow: hidden; |
| 48 | word-break: break-all; | 48 | word-break: break-all; |
| 49 | + span{ | ||
| 50 | + margin-left: 10px; | ||
| 51 | + } | ||
| 49 | } | 52 | } |
| 50 | .exchange_type{ | 53 | .exchange_type{ |
| 51 | height: 40px; | 54 | height: 40px; |
src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
| @@ -23,7 +23,7 @@ | @@ -23,7 +23,7 @@ | ||
| 23 | {{item.title}} | 23 | {{item.title}} |
| 24 | </div> | 24 | </div> |
| 25 | <div v-show="item.address_name && item.address_address && item.address_phone" class="address_name"> | 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 | </div> | 27 | </div> |
| 28 | 28 | ||
| 29 | <div v-show="item.price || item.total" class="exchange_type"> | 29 | <div v-show="item.price || item.total" class="exchange_type"> |