Commit c24d59c142d5b7c02f0da86074990e4be57984fc
1 parent
f2621d99
商品详情、会员中心增加技术标识
Showing
4 changed files
with
35 additions
and
1 deletions
pages/goods/goodsInfo/goodsInfo.wxml
| ... | ... | @@ -864,6 +864,12 @@ |
| 864 | 864 | </block> |
| 865 | 865 | </view> |
| 866 | 866 | </view> |
| 867 | + | |
| 868 | + <!-- 技术支持 --> | |
| 869 | + <view class="logo-container t-c"> | |
| 870 | + <view class="flex ai_c fs24 jc-center pdv30 white"><image src="{{iurl + 'miniapp/images/luckDraw/logo.png?v=3'}}" class="logo" lazy-load></image>提供技术支持</view> | |
| 871 | + </view> | |
| 872 | + | |
| 867 | 873 | </view> |
| 868 | 874 | <!---滚动到顶部----> |
| 869 | 875 | <view bindtap="doScrollTop" class="toTop" wx:if="{{supportPageScroll}}"> | ... | ... |
pages/goods/goodsInfo/goodsInfo.wxss
| ... | ... | @@ -2830,4 +2830,16 @@ button.custom-service::after{ |
| 2830 | 2830 | position: absolute; |
| 2831 | 2831 | right: 0; |
| 2832 | 2832 | top: 10rpx; |
| 2833 | +} | |
| 2834 | + | |
| 2835 | + | |
| 2836 | +.logo-container { | |
| 2837 | + -webkit-filter: brightness(80%); | |
| 2838 | + filter: brightness(80%); | |
| 2839 | +} | |
| 2840 | + | |
| 2841 | +.logo { | |
| 2842 | + width: 132rpx; | |
| 2843 | + height: 37rpx; | |
| 2844 | + margin-right: 10rpx; | |
| 2833 | 2845 | } |
| 2834 | 2846 | \ No newline at end of file | ... | ... |
pages/user/index/index.wxml
| ... | ... | @@ -296,6 +296,11 @@ |
| 296 | 296 | <!-- 显示商品 --> |
| 297 | 297 | <!-- 好物推荐 --> |
| 298 | 298 | <goods_recommend id="goods_recommend"></goods_recommend> |
| 299 | + | |
| 300 | + <!-- 技术支持 --> | |
| 301 | + <view class="logo-container t-c"> | |
| 302 | + <view class="flex ai_c fs24 jc-center pdv30 white"><image src="{{iurl + 'miniapp/images/luckDraw/logo.png?v=3'}}" class="logo" lazy-load></image>提供技术支持</view> | |
| 303 | + </view> | |
| 299 | 304 | </view> |
| 300 | 305 | |
| 301 | 306 | <!--弹出层内容,其中的“我知道”中绑定让弹出层消失的函数:bindtap="hide"--> | ... | ... |
pages/user/index/index.wxss
| ... | ... | @@ -714,4 +714,15 @@ |
| 714 | 714 | background: #f2f2f2; |
| 715 | 715 | } |
| 716 | 716 | |
| 717 | -button::after{ border: 0} | |
| 718 | 717 | \ No newline at end of file |
| 718 | +button::after{ border: 0} | |
| 719 | + | |
| 720 | +.logo-container { | |
| 721 | + -webkit-filter: brightness(80%); | |
| 722 | + filter: brightness(80%); | |
| 723 | +} | |
| 724 | + | |
| 725 | +.logo { | |
| 726 | + width: 132rpx; | |
| 727 | + height: 37rpx; | |
| 728 | + margin-right: 10rpx; | |
| 729 | +} | |
| 719 | 730 | \ No newline at end of file | ... | ... |