2025-06-06 15:07:26 +08:00

11 lines
539 B
Plaintext

<template name="footer-nav">
<view class="foot-fixed">
<block wx:for="{{nav_list}}" wx:key="unique">
<!-- <view>{{item.photo}}</view> -->
<navigator id="navIndex" open-type="redirect" style="width:{{foot_width}}" class="foot-item " url="{{item.url}}">
<view class="foot-icon" style="background: url({{item.photo}}) center center no-repeat; background-size: contain;"></view>
<text class="foot-label" id="navIndexLabel">{{item.nav_name}}</text>
</navigator>
</block>
</view>
</template>