Commit cd0d43358f17d60e68ae5b87ad72fe252e2b148a
1 parent
caf406f9
商品分类
Showing
4 changed files
with
24 additions
and
12 deletions
app.wxss
... | ... | @@ -216,7 +216,7 @@ justify-content:space-around; |
216 | 216 | border-right: 2rpx solid ; |
217 | 217 | transform: rotate(45deg); |
218 | 218 | display:inline-block; |
219 | - width:18rpx;height:18rpx;border-color:#da0b31;margin-top:6rpx; | |
219 | + width:18rpx;height:18rpx;border-color:#da0b31; | |
220 | 220 | |
221 | 221 | } |
222 | 222 | /*********************** 7.15 */ | ... | ... |
components/qr_code/qr_code.wxss
... | ... | @@ -33,6 +33,7 @@ align-items:center; |
33 | 33 | height: auto; |
34 | 34 | padding-bottom:20rpx; |
35 | 35 | left:35rpx; |
36 | + | |
36 | 37 | |
37 | 38 | } |
38 | 39 | |
... | ... | @@ -41,14 +42,19 @@ align-items:center; |
41 | 42 | width: 100%; |
42 | 43 | height: auto; |
43 | 44 | margin-top:30rpx; |
45 | +position: relative; | |
46 | +top: 0rpx; | |
47 | +left: 0rpx; | |
44 | 48 | |
45 | 49 | } |
46 | 50 | /* 点击条形 */ |
47 | 51 | .barcode { |
48 | 52 | height:150rpx; |
49 | 53 | width: 620rpx; |
50 | - padding-left:30rpx; | |
54 | + | |
51 | 55 | text-align:center; |
56 | + position:absolute; | |
57 | + left: 30rpx | |
52 | 58 | } |
53 | 59 | canvas{ |
54 | 60 | width:100%; |
... | ... | @@ -69,7 +75,10 @@ letter-spacing:6rpx; |
69 | 75 | height:580rpx; |
70 | 76 | display:flex; |
71 | 77 | flex-direction:column; |
72 | -margin-left:74rpx; | |
78 | + | |
79 | +position: absolute; | |
80 | +left: 74rpx; | |
81 | +top: 130rpx; | |
73 | 82 | |
74 | 83 | |
75 | 84 | } |
... | ... | @@ -82,7 +91,8 @@ margin-left:74rpx; |
82 | 91 | } |
83 | 92 | .r-code{ |
84 | 93 | font-size:28rpx; |
85 | - text-align: center | |
94 | + padding-left: 25rpx; | |
95 | + | |
86 | 96 | } |
87 | 97 | |
88 | 98 | .shut{ | ... | ... |
pages/goods/categoryList/categoryList.wxml
... | ... | @@ -210,7 +210,7 @@ |
210 | 210 | <view class="classify_name fs32 flex-space-between"data-pid="0"data-cid="{{cat_id}}" bindtap='select_more'> |
211 | 211 | <view>{{classify_name}}</view> |
212 | 212 | <view class="flex select_more" > |
213 | - <view class="red-co fs32" >选择更多</view> | |
213 | + <view class="red-co fs24" >更多</view> | |
214 | 214 | <view class="bg_right width_height"></view> |
215 | 215 | </view> |
216 | 216 | </view> |
... | ... | @@ -236,7 +236,7 @@ |
236 | 236 | <view class="classify_name fs32 flex-space-between"data-pid="1"data-cid="{{goods.items.id}}" bindtap='select_more'> |
237 | 237 | <view>{{goods.items.name}}</view> |
238 | 238 | <view class="flex select_more" > |
239 | - <view class="red-co fs32" >选择更多</view> | |
239 | + <view class="red-co fs24" >更多</view> | |
240 | 240 | <view class="bg_right width_height"></view> |
241 | 241 | </view> |
242 | 242 | </view> | ... | ... |
pages/goods/categoryList/categoryList.wxss
... | ... | @@ -268,9 +268,10 @@ width: 60%; |
268 | 268 | margin: auto; |
269 | 269 | flex-wrap:wrap; |
270 | 270 | max-height: 90%; |
271 | - | |
272 | 271 | overflow-y:scroll; |
273 | 272 | overflow: hidden scroll; |
273 | + padding-bottom: 25rpx; | |
274 | + | |
274 | 275 | |
275 | 276 | } |
276 | 277 | .country_img-frame{ |
... | ... | @@ -322,7 +323,7 @@ line-height: 65rpx; |
322 | 323 | } |
323 | 324 | .brand_img_frame{ |
324 | 325 | width: 30%; |
325 | - height: 220rpx; | |
326 | + height: 140rpx; | |
326 | 327 | margin-top: 18rpx; |
327 | 328 | margin-right: 15rpx; |
328 | 329 | |
... | ... | @@ -330,8 +331,8 @@ line-height: 65rpx; |
330 | 331 | } |
331 | 332 | |
332 | 333 | .brand_img{ |
333 | - width:100%; | |
334 | - height: 61.5%; | |
334 | + width:65%; | |
335 | + height:63%; | |
335 | 336 | margin-bottom: 10rpx; |
336 | 337 | margin-top: 10rpx; |
337 | 338 | |
... | ... | @@ -347,8 +348,9 @@ width: 62%; |
347 | 348 | |
348 | 349 | } |
349 | 350 | .width_height{ |
350 | - width: 18rpx; | |
351 | - height: 18rpx; | |
351 | + width: 13rpx; | |
352 | + height: 13rpx; | |
353 | + margin-top:12rpx; | |
352 | 354 | } |
353 | 355 | .select_more{ |
354 | 356 | line-height: 37rpx; | ... | ... |