36 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-03-13 17:21:06 +08:00
<view class="containerView public">
<view class="topHead">
2024-07-26 16:36:45 +08:00
<view class="title">机关事务管理平台</view>
<view class="contentView">
<view class="label1">欢迎进入</view>
<view class="label2">淮安市机关事务管理平台</view>
</view>
<view class="logo"></view>
2024-03-13 17:21:06 +08:00
</view>
2024-02-22 18:57:41 +08:00
2024-02-23 11:59:50 +08:00
<!-- 菜单模块 -->
<view class="itemTitleView">
<view class="title">我的应用</view>
</view>
<view class="fixed">
<view class="fixedbox" wx:for='{{menuList}}' wx:key='index' data-path="{{item.path}}" data-name="{{item.name}}" bindtap="navapply">
<image class="menuImg" src="{{IMG_NAME + item.img}}"></image>
<view class="menuTitle">{{item.name}}</view>
</view>
</view>
2024-02-22 18:57:41 +08:00
<!-- tabBar -->
<view class="tab-bar">
<view wx:for="{{tabBarList}}" wx:key="index" class="tab-bar-item {{item.bulge?'bulge':''}}" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
<view wx:if="item.bulge" class="tab-bar-bulge"></view>
<image class="image" src="{{tabBarParam.selected === index ? item.selectedIconPath : item.iconPath}}"></image>
<view class="tab-bar-view" style="color: {{tabBarParam.selected === index ? tabBarParam.selectedColor : tabBarParam.color}}">{{item.text}}</view>
</view>
2024-02-21 17:43:11 +08:00
</view>
2024-03-13 18:27:17 +08:00
</view>
<!-- 消息提示 -->
2024-07-26 16:36:45 +08:00
<van-notify id="van-notify" />