footer.wxml 789 B

1234567891011
  1. <view class="tui-footer-class tui-footer {{fixed?'tui-fixed':''}}" style='background:{{bgcolor}}'>
  2. <view class="tui-footer-link" wx:if="{{navigate.length>0}}">
  3. <block wx:for="{{navigate}}" wx:key="{{index}}">
  4. <navigator class="tui-link" hover-class="tui-link-hover" hover-stop-propagation="{{true}}" style="color:{{item.color || '#596d96'}};font-size:{{item.size || 28}}rpx" open-type="{{item.type}}" url="{{item.url}}" target="{{item.target}}" delta="{{item.delta}}"
  5. app-id="{{item.appid}}" path="{{item.path}}" extra-data="{{item.extradata}}" bindsuccess="item.bindsuccess" bindfail="item.bindfail">{{item.text}}</navigator>
  6. </block>
  7. </view>
  8. <view class="tui-footer-copyright" style="color:{{color}};font-size:{{size}}rpx">
  9. {{copyright}}
  10. </view>
  11. </view>