Commit 240e60ce34ffbbf3cb64f366bf1c7303c770352a

Authored by zhiyangdu
1 parent c91d541f

积分兑换记录新增积分兑换

src/pages/pointsExchangeRecords/pointsExchangeRecords.less
... ... @@ -19,13 +19,13 @@
19 19 flex: 1;
20 20 margin-left: 32px;
21 21 .name{
22   - height: 80px;
  22 + height: 40px;
23 23 font-size: 28px;
24 24 font-weight: 400;
25 25 color: #333333;
26 26 line-height: 40px;
27 27 display: -webkit-box;
28   - -webkit-line-clamp: 2;
  28 + -webkit-line-clamp: 1;
29 29 /*! autoprefixer: off */
30 30 -webkit-box-orient: vertical;
31 31 /*! autoprefixer: on */
... ... @@ -46,8 +46,17 @@
46 46 overflow: hidden;
47 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 58 .exchange_time{
50   - margin-top: 34px;
  59 + margin-top: 10px;
51 60 height: 33px;
52 61 font-size: 24px;
53 62 font-weight: 400;
... ...
src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
... ... @@ -25,6 +25,10 @@
25 25 <div v-show="item.address_name && item.address_address && item.address_phone" class="address_name">
26 26 收货人: {{item.address_name}}{{item.address_phone}}{{item.address_address}}
27 27 </div>
  28 +
  29 + <div class="exchange_type">
  30 + <!-- 500积分+9.9元 -->
  31 + </div>
28 32 <div class="exchange_time">
29 33 兑换时间 {{item.create_time*1000 | datetime('yyyy-MM-dd hh:mm:ss')}}
30 34 </div>
... ...