Commit 62e5e8662bf24e669811fedbe883de8aeebe752e
1 parent
f4489377
首页增加技术支持标识
Showing
2 changed files
with
21 additions
and
4 deletions
pages/index/index/index.wxml
... | ... | @@ -340,9 +340,10 @@ |
340 | 340 | <!-- 商品列表 --> |
341 | 341 | |
342 | 342 | </view> |
343 | - | |
344 | - | |
345 | - | |
343 | + <!-- 技术支持 --> | |
344 | + <view class="logo-container t-c"> | |
345 | + <view class="flex ai_c fs24 jc-center pdv20 white"><image src="{{url + 'miniapp/images/luckDraw/logo.png?v=3'}}" class="logo" lazy-load></image>提供技术支持</view> | |
346 | + </view> | |
346 | 347 | </view> |
347 | 348 | |
348 | 349 | |
... | ... | @@ -391,6 +392,10 @@ |
391 | 392 | <!--商品分组--> |
392 | 393 | <block wx:if="{{item.ename=='goodsGroup'}}"> |
393 | 394 | <goodsGroup object="{{item.content}}"></goodsGroup> |
395 | + <!-- 技术支持 --> | |
396 | + <view class="logo-container t-c"> | |
397 | + <view class="flex ai_c fs24 jc-center pdv20 white"><image src="{{url + 'miniapp/images/luckDraw/logo.png?v=3'}}" class="logo" lazy-load></image>提供技术支持</view> | |
398 | + </view> | |
394 | 399 | </block> |
395 | 400 | <!--通知--> |
396 | 401 | <block wx:if="{{item.ename=='notice'}}"> |
... | ... | @@ -440,8 +445,9 @@ |
440 | 445 | <block wx:if="{{item.ename=='store_select' && item.content.is_top!=1}}"> |
441 | 446 | <store_select object="{{item.content}}"></store_select> |
442 | 447 | </block> |
443 | - | |
444 | 448 | </view> |
449 | + | |
450 | + | |
445 | 451 | </block> |
446 | 452 | </view> |
447 | 453 | ... | ... |
pages/index/index/index.wxss
... | ... | @@ -1103,3 +1103,14 @@ page { |
1103 | 1103 | height: auto; |
1104 | 1104 | } |
1105 | 1105 | |
1106 | +.logo-container { | |
1107 | + -webkit-filter: brightness(80%); | |
1108 | + filter: brightness(80%); | |
1109 | +} | |
1110 | + | |
1111 | +.logo { | |
1112 | + width: 132rpx; | |
1113 | + height: 37rpx; | |
1114 | + margin-right: 10rpx; | |
1115 | +} | |
1116 | + | ... | ... |