Commit 2fe4facd11f724fb67af53b4c2869e9cebcc92e3
1 parent
28892957
积分购商品详情
Showing
2 changed files
with
25 additions
and
10 deletions
app.wxss
| ... | ... | @@ -683,9 +683,9 @@ background: #ffe3e2; |
| 683 | 683 | /* 图标字体(ty) */ |
| 684 | 684 | @font-face { |
| 685 | 685 | font-family: 'iconfont'; /* Project id 2054717 */ |
| 686 | - src: url('//at.alicdn.com/t/font_2054717_vmvsus9wgw.woff2?t=1625560227550') format('woff2'), | |
| 687 | - url('//at.alicdn.com/t/font_2054717_vmvsus9wgw.woff?t=1625560227550') format('woff'), | |
| 688 | - url('//at.alicdn.com/t/font_2054717_vmvsus9wgw.ttf?t=1625560227550') format('truetype'); | |
| 686 | + src: url('//at.alicdn.com/t/font_2054717_c7o0udng1e4.woff2?t=1625824560076') format('woff2'), | |
| 687 | + url('//at.alicdn.com/t/font_2054717_c7o0udng1e4.woff?t=1625824560076') format('woff'), | |
| 688 | + url('//at.alicdn.com/t/font_2054717_c7o0udng1e4.ttf?t=1625824560076') format('truetype'); | |
| 689 | 689 | } |
| 690 | 690 | |
| 691 | 691 | .iconfont { |
| ... | ... | @@ -696,6 +696,10 @@ background: #ffe3e2; |
| 696 | 696 | -moz-osx-font-smoothing: grayscale; |
| 697 | 697 | } |
| 698 | 698 | |
| 699 | +.icon-liwu:before { | |
| 700 | + content: "\e64e"; | |
| 701 | +} | |
| 702 | + | |
| 699 | 703 | .icon-share:before { |
| 700 | 704 | content: "\e785"; |
| 701 | 705 | } | ... | ... |
pages/goods/goodsInfo/goodsInfo.wxml
| ... | ... | @@ -241,7 +241,7 @@ |
| 241 | 241 | <view wx:if="{{prom_type==4}}"> |
| 242 | 242 | <view class="goods-price"> |
| 243 | 243 | <!-- 价格显示 --> |
| 244 | - <view class="co-red" style="" > | |
| 244 | + <view class="co-red flex ai_c jc_sb"> | |
| 245 | 245 | <view class="market-price" style="overflow: hidden; height: 66rpx;display: flex;"> |
| 246 | 246 | <image class="rel_img" src="{{iurl}}/miniapp/images/integral/integral_red.png"></image> |
| 247 | 247 | <block wx:if="{{prom_integral}}">{{prom_integral}} |
| ... | ... | @@ -251,14 +251,25 @@ |
| 251 | 251 | <text class="rel_txt" wx:if="{{!prom_integral && !prom_price}}">0积分</text> |
| 252 | 252 | <text class="rel_txt fs22" decode="{{true}}" space="{{true}}" style="color: #999; text-decoration: line-through;"> 零售价:¥{{data.market_price}}</text> |
| 253 | 253 | </view> |
| 254 | + | |
| 255 | + <!-- 这个是分享按钮 --> | |
| 256 | + <!-- <view class="xc-share-frame flex {{prom_type==1?'s_ms_bth':''}} " bindtap="saveImageToPhotosAlbum"> --> | |
| 257 | + <!-- <view class="xc-share-frame flex {{prom_type==1?'s_ms_bth':''}} " bindtap="clickShare"> | |
| 258 | + <image class="share-frame" src="{{iurl}}/miniapp/images/share.png"></image> | |
| 259 | + <view class="share-font">分享</view> | |
| 260 | + </view> --> | |
| 261 | + | |
| 262 | + <!-- 这个是分享按钮 --> | |
| 263 | + <!-- <view class="xc-share-frame {{prom_type==1?'s_ms_bth':''}} t-c" bindtap="saveImageToPhotosAlbum"> --> | |
| 264 | + <view class="xc-share-frame t-c" bindtap="clickShare"> | |
| 265 | + <!-- <image class="share-frame" src="{{iurl}}/miniapp/images/share.png"></image> --> | |
| 266 | + <view class="iconfont icon-share fs60"></view> | |
| 267 | + <!-- <view class="share-font">1分享</view> --> | |
| 268 | + <view class="fs22 c-7b">分享</view> | |
| 269 | + </view> | |
| 254 | 270 | </view> |
| 255 | 271 | |
| 256 | - <!-- 这个是分享按钮 --> | |
| 257 | - <!-- <view class="xc-share-frame flex {{prom_type==1?'s_ms_bth':''}} " bindtap="saveImageToPhotosAlbum"> --> | |
| 258 | - <view class="xc-share-frame flex {{prom_type==1?'s_ms_bth':''}} " bindtap="clickShare"> | |
| 259 | - <image class="share-frame" src="{{iurl}}/miniapp/images/share.png"></image> | |
| 260 | - <view class="share-font">分享</view> | |
| 261 | - </view> | |
| 272 | + | |
| 262 | 273 | |
| 263 | 274 | <view class="goods-title"> |
| 264 | 275 | <view class="goods-name elli">{{data.goods_name}}</view> | ... | ... |