mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 21:19:37 +08:00
60 lines
2.7 KiB
Plaintext
60 lines
2.7 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" align="center">
|
|
<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 style="clear: both;"></view>
|
|
</view>
|
|
<!-- 消息通知 -->
|
|
<view class="itemTitleView" style="margin-top: 80rpx;">
|
|
<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">
|
|
<!-- <view class="title">消息提醒</view> -->
|
|
<view class="msg">{{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" />
|
|
<van-dialog id="van-dialog" /> |