471615499@qq.com 34701558f3 会议功能修改
完成会议首页、会议室列表页、会议室详情页、会议预约时间选择功能
2024-09-16 18:22:00 +08:00

36 lines
1.5 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="homeView" bind:tap="back">
<van-icon name="wap-home-o" size="30rpx" color="#ffffff" />
</view>
<view class="title">会议系统</view>
<view class="contentView">
<view class="label1">欢迎进入</view>
<view class="label2">淮安市行政中心会议管理系统</view>
</view>
<view class="logo" style="background: no-repeat center/cover url({{IMG_NAME + '/profile/static/repair/index/logo.png'}});"></view>
</view>
<view class="menuContainerView">
<view class="menuView" wx:for="{{menuList}}" wx:key="*this" bind:tap="jumpMenu" data-obj="{{item}}">
<view class="menuImg" style="background: no-repeat center/cover url({{IMG_NAME + item.img}});"></view>
<view class="menuTitle">{{item.name}}</view>
</view>
</view>
<!-- <view class="ownership">{{ownership}}</view> -->
</view>
<!-- 消息通知 -->
<van-notify id="van-notify" />
<van-popup show="{{ timeShow }}" bind:close="hideTimePicker" position="bottom" round="true">
<van-datetime-picker title="请选择会议日期" type="date" value="{{ currentDate }}" min-date="{{ minDate }}" max-date="{{ maxDate }}" formatter="{{ formatter }}" bind:confirm="goRes" bind:cancel="hideTimePicker" />
</van-popup>