ui fix review by lea.guo
Showing
5 changed files
with
23 additions
and
12 deletions
@@ -3,7 +3,7 @@ | @@ -3,7 +3,7 @@ | ||
3 | <div class="pay-type-wrapper"> | 3 | <div class="pay-type-wrapper"> |
4 | <div class="header"> | 4 | <div class="header"> |
5 | <div class="title">选择支付方式</div> | 5 | <div class="title">选择支付方式</div> |
6 | - <span><i class="iconfont iconweibiao45133 close" @click="close"></i></span> | 6 | + <div class="x-close" @click="close"></div> |
7 | </div> | 7 | </div> |
8 | <slot name="price"> | 8 | <slot name="price"> |
9 | <div class="price-info"> | 9 | <div class="price-info"> |
@@ -187,6 +187,13 @@ export default { | @@ -187,6 +187,13 @@ export default { | ||
187 | color: #222; | 187 | color: #222; |
188 | } | 188 | } |
189 | 189 | ||
190 | +.x-close { | ||
191 | + width: 40px; | ||
192 | + height: 40px; | ||
193 | + background: url(~statics/image/order/x@3x.png) no-repeat; | ||
194 | + background-size: cover; | ||
195 | +} | ||
196 | + | ||
190 | .close { | 197 | .close { |
191 | font-size: 32px; | 198 | font-size: 32px; |
192 | } | 199 | } |
@@ -101,9 +101,9 @@ export default { | @@ -101,9 +101,9 @@ export default { | ||
101 | } | 101 | } |
102 | 102 | ||
103 | .pay-list-item { | 103 | .pay-list-item { |
104 | - height: 180px; | 104 | + height: 160px; |
105 | font-size: 28px; | 105 | font-size: 28px; |
106 | - margin: 20px 20px; | 106 | + margin: 0 20px; |
107 | display: flex; | 107 | display: flex; |
108 | justify-content: space-between; | 108 | justify-content: space-between; |
109 | align-items: center; | 109 | align-items: center; |
@@ -114,7 +114,7 @@ export default { | @@ -114,7 +114,7 @@ export default { | ||
114 | .check { | 114 | .check { |
115 | font-size: 48px; | 115 | font-size: 48px; |
116 | margin-left: 40px; | 116 | margin-left: 40px; |
117 | - margin-right: 40px; | 117 | + margin-right: 20px; |
118 | } | 118 | } |
119 | 119 | ||
120 | .pay-info { | 120 | .pay-info { |
@@ -159,19 +159,18 @@ export default { | @@ -159,19 +159,18 @@ export default { | ||
159 | 159 | ||
160 | .coupon-info { | 160 | .coupon-info { |
161 | flex: 1; | 161 | flex: 1; |
162 | - height: 60px; | ||
163 | padding-left: 20px; | 162 | padding-left: 20px; |
164 | } | 163 | } |
165 | 164 | ||
166 | .coupon-name { | 165 | .coupon-name { |
167 | - font-size: 24px; | 166 | + font-size: 28px; |
168 | font-weight: bold; | 167 | font-weight: bold; |
169 | color: #002b47; | 168 | color: #002b47; |
170 | margin-bottom: 10px; | 169 | margin-bottom: 10px; |
171 | } | 170 | } |
172 | 171 | ||
173 | .coupon-time { | 172 | .coupon-time { |
174 | - font-size: 22px; | 173 | + font-size: 24px; |
175 | color: #999; | 174 | color: #999; |
176 | } | 175 | } |
177 | </style> | 176 | </style> |
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | <cube-scroll ref="activityListScroll" :data="list"> | 6 | <cube-scroll ref="activityListScroll" :data="list"> |
7 | <ul> | 7 | <ul> |
8 | <li v-for="(item, idx) in list" :key="idx"> | 8 | <li v-for="(item, idx) in list" :key="idx"> |
9 | - <div><span>{{item.promotionTypeStr}}</span> {{item.activityName}}</div> | 9 | + <div class="activityName"><span>{{item.promotionTypeStr}}</span> {{item.activityName}}</div> |
10 | <div class="sub">{{item.startTimeStr}}-{{item.endTimeStr}}</div> | 10 | <div class="sub">{{item.startTimeStr}}-{{item.endTimeStr}}</div> |
11 | </li> | 11 | </li> |
12 | </ul> | 12 | </ul> |
@@ -66,10 +66,10 @@ export default { | @@ -66,10 +66,10 @@ export default { | ||
66 | } | 66 | } |
67 | 67 | ||
68 | span { | 68 | span { |
69 | - font-size: 0.7em; | 69 | + font-size: 22px; |
70 | line-height: 1.8; | 70 | line-height: 1.8; |
71 | border: 1px solid #feabac; | 71 | border: 1px solid #feabac; |
72 | - color: #feabac; | 72 | + color: #D0021B; |
73 | text-align: center; | 73 | text-align: center; |
74 | padding: 0 1.2em; | 74 | padding: 0 1.2em; |
75 | margin-right: 0.8em; | 75 | margin-right: 0.8em; |
@@ -89,9 +89,14 @@ export default { | @@ -89,9 +89,14 @@ export default { | ||
89 | border-bottom: 1px solid #ccc; | 89 | border-bottom: 1px solid #ccc; |
90 | } | 90 | } |
91 | 91 | ||
92 | + .activityName { | ||
93 | + font-size: 28px; | ||
94 | + font-weight: bold; | ||
95 | + } | ||
96 | + | ||
92 | .sub { | 97 | .sub { |
93 | color: #999; | 98 | color: #999; |
94 | - font-size: 22px; | 99 | + font-size: 24px; |
95 | } | 100 | } |
96 | } | 101 | } |
97 | </style> | 102 | </style> |
@@ -466,7 +466,7 @@ export default { | @@ -466,7 +466,7 @@ export default { | ||
466 | span { | 466 | span { |
467 | display: inline-block; | 467 | display: inline-block; |
468 | border: 1px solid #feabac; | 468 | border: 1px solid #feabac; |
469 | - color: #feabac; | 469 | + color: #D0021B; |
470 | line-height: 1.8; | 470 | line-height: 1.8; |
471 | margin-right: 15px; | 471 | margin-right: 15px; |
472 | font-size: 0.8em; | 472 | font-size: 0.8em; |
apps/statics/image/order/x@3x.png
0 → 100644
848 Bytes
-
Please register or login to post a comment