16 lines
747 B
Plaintext
Raw Normal View History

2024-02-21 17:43:11 +08:00
<view class="page">
<view>
<image src="/images/online.png" mode="widthFix" style="width:100%;"></image>
</view>
<scroll-view scroll-y="true" class="contenBox">
<view wx:if="{{list.length > 0}}">
<view style="font-size: 13pt;margin: 40rpx 0 20rpx 0" class="fontW">企业服务</view>
<view class="fixed">
<view class="fixedbox" wx:for='{{list}}' wx:key='index' data-objlist="{{item}}" bindtap="navapply">
<image src="{{IMG_NAME+item.menuImg}}" style="width:90rpx;height: 90rpx;overflow:hidden;border-radius: 50rpx;" mode="widthFix"></image>
<view class="fontW" style="font-size:26rpx;margin-top:14rpx;">{{item.menuName}}</view>
</view>
</view>
</view>
</scroll-view>
</view>