Commit 240e60ce34ffbbf3cb64f366bf1c7303c770352a
1 parent
c91d541f
积分兑换记录新增积分兑换
Showing
2 changed files
with
16 additions
and
3 deletions
src/pages/pointsExchangeRecords/pointsExchangeRecords.less
| @@ -19,13 +19,13 @@ | @@ -19,13 +19,13 @@ | ||
| 19 | flex: 1; | 19 | flex: 1; |
| 20 | margin-left: 32px; | 20 | margin-left: 32px; |
| 21 | .name{ | 21 | .name{ |
| 22 | - height: 80px; | 22 | + height: 40px; |
| 23 | font-size: 28px; | 23 | font-size: 28px; |
| 24 | font-weight: 400; | 24 | font-weight: 400; |
| 25 | color: #333333; | 25 | color: #333333; |
| 26 | line-height: 40px; | 26 | line-height: 40px; |
| 27 | display: -webkit-box; | 27 | display: -webkit-box; |
| 28 | - -webkit-line-clamp: 2; | 28 | + -webkit-line-clamp: 1; |
| 29 | /*! autoprefixer: off */ | 29 | /*! autoprefixer: off */ |
| 30 | -webkit-box-orient: vertical; | 30 | -webkit-box-orient: vertical; |
| 31 | /*! autoprefixer: on */ | 31 | /*! autoprefixer: on */ |
| @@ -46,8 +46,17 @@ | @@ -46,8 +46,17 @@ | ||
| 46 | overflow: hidden; | 46 | overflow: hidden; |
| 47 | word-break: break-all; | 47 | word-break: break-all; |
| 48 | } | 48 | } |
| 49 | + .exchange_type{ | ||
| 50 | + height: 40px; | ||
| 51 | + font-size: 28px; | ||
| 52 | + font-weight: 400; | ||
| 53 | + color: #FC1541; | ||
| 54 | + line-height: 40px; | ||
| 55 | + text-align: left; | ||
| 56 | + margin-top: 24px; | ||
| 57 | + } | ||
| 49 | .exchange_time{ | 58 | .exchange_time{ |
| 50 | - margin-top: 34px; | 59 | + margin-top: 10px; |
| 51 | height: 33px; | 60 | height: 33px; |
| 52 | font-size: 24px; | 61 | font-size: 24px; |
| 53 | font-weight: 400; | 62 | font-weight: 400; |
src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
| @@ -25,6 +25,10 @@ | @@ -25,6 +25,10 @@ | ||
| 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 | 收货人: {{item.address_name}}{{item.address_phone}}{{item.address_address}} |
| 27 | </div> | 27 | </div> |
| 28 | + | ||
| 29 | + <div class="exchange_type"> | ||
| 30 | + <!-- 500积分+9.9元 --> | ||
| 31 | + </div> | ||
| 28 | <div class="exchange_time"> | 32 | <div class="exchange_time"> |
| 29 | 兑换时间 {{item.create_time*1000 | datetime('yyyy-MM-dd hh:mm:ss')}} | 33 | 兑换时间 {{item.create_time*1000 | datetime('yyyy-MM-dd hh:mm:ss')}} |
| 30 | </div> | 34 | </div> |