2024-03-13 17:21:06 +08:00
|
|
|
<view class="containerView public">
|
|
|
|
|
|
|
|
<view class="topHead">
|
2024-08-05 16:28:32 +08:00
|
|
|
<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>
|
|
|
|
|
2024-09-03 11:36:31 +08:00
|
|
|
<view class="title"></view>
|
2024-07-26 16:36:45 +08:00
|
|
|
<view class="contentView">
|
|
|
|
<view class="label1">欢迎进入</view>
|
2024-08-28 17:00:02 +08:00
|
|
|
<view class="label2">市行政中心后勤服务平台</view>
|
2024-07-26 16:36:45 +08:00
|
|
|
</view>
|
2024-03-13 17:21:06 +08:00
|
|
|
</view>
|
2024-08-05 16:28:32 +08:00
|
|
|
<view class="logo" style="background: no-repeat center/cover url({{IMG_NAME + '/profile/static/repair/index/logo.png'}});"></view>
|
2024-03-13 17:21:06 +08:00
|
|
|
|
2024-02-22 18:57:41 +08:00
|
|
|
|
2024-02-23 11:59:50 +08:00
|
|
|
<!-- 菜单模块 -->
|
|
|
|
<view class="itemTitleView">
|
|
|
|
<view class="title">我的应用</view>
|
|
|
|
</view>
|
2024-08-28 17:00:02 +08:00
|
|
|
<view class="fixed" align="center">
|
2024-02-23 11:59:50 +08:00
|
|
|
<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>
|
2024-08-28 17:00:02 +08:00
|
|
|
<view style="clear: both;"></view>
|
2024-02-23 11:59:50 +08:00
|
|
|
</view>
|
2024-08-16 16:09:00 +08:00
|
|
|
<!-- 消息通知 -->
|
2024-08-28 17:00:02 +08:00
|
|
|
<view class="itemTitleView" style="margin-top: 80rpx;">
|
2024-08-16 16:09:00 +08:00
|
|
|
<view class="title">消息通知</view>
|
2024-08-19 15:32:53 +08:00
|
|
|
<view class="more" bind:tap="jumpInfo">更多</view>
|
2024-08-16 16:09:00 +08:00
|
|
|
</view>
|
2024-08-19 17:39:42 +08:00
|
|
|
|
|
|
|
<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>
|
2024-08-16 16:09:00 +08:00
|
|
|
<view class="infoView">
|
2024-08-19 15:32:53 +08:00
|
|
|
<view class="itemView" wx:for="{{infoList}}" wx:for-item="item" wx:key="*this" data-obj="{{item}}" bind:tap="jumpInfoDetail">
|
2024-08-16 16:09:00 +08:00
|
|
|
<view class="contentView ellipsisFont">
|
2024-08-19 15:32:53 +08:00
|
|
|
<view class="title">消息提醒</view>
|
|
|
|
<view class="msg ellipsisFont">{{item.content}}</view>
|
|
|
|
<view class="time">{{item.createTime}}</view>
|
2024-08-16 16:09:00 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
2024-08-19 14:16:18 +08:00
|
|
|
</view>
|
2024-08-16 16:09:00 +08:00
|
|
|
|
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" />
|