SelfRidicule 322b808fae 1
2024-08-19 17:39:42 +08:00

59 lines
2.6 KiB
Plaintext

<view class="containerView public">
<view class="topHead">
<view class="maskView1"></view>
<view class="maskView2" style="background: no-repeat center/cover url({{IMG_NAME + '/profile/static/repair/index/person.png'}});"></view>
<view class="maskView3"></view>
<view class="title">机关事务管理平台</view>
<view class="contentView">
<view class="label1">欢迎进入</view>
<view class="label2">淮安市机关事务管理平台</view>
</view>
</view>
<view class="logo" style="background: no-repeat center/cover url({{IMG_NAME + '/profile/static/repair/index/logo.png'}});"></view>
<!-- 菜单模块 -->
<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>
<!-- 消息通知 -->
<view class="itemTitleView">
<view class="title">消息通知</view>
<view class="more" bind:tap="jumpInfo">更多</view>
</view>
<view class="loadAllLine" wx:if="{{!infoList || infoList.length == 0}}">
<van-divider class="van-divider" customStyle="font-size: 26rpx; background:none;" contentPosition="center">暂无消息</van-divider>
</view>
<view class="infoView">
<view class="itemView" wx:for="{{infoList}}" wx:for-item="item" wx:key="*this" data-obj="{{item}}" bind:tap="jumpInfoDetail">
<view class="contentView ellipsisFont">
<view class="title">消息提醒</view>
<view class="msg ellipsisFont">{{item.content}}</view>
<view class="time">{{item.createTime}}</view>
</view>
</view>
</view>
<!-- 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>
</view>
</view>
<!-- 消息提示 -->
<van-notify id="van-notify" />