mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 18:59:36 +08:00

1、小程序端、PC端,修改文字“淮安市行政中心智慧后勤服务平台” 2、小程序端,进入会议系统后加入弹窗(5秒自动关闭),底部加入会议服务热线 3、小程序端、PC端,加入占用取消功能,管理员专用,取消后即删除
50 lines
2.3 KiB
Plaintext
50 lines
2.3 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/meeting/index/bg.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 style="text-align: center;color: grey; margin-top: 0px;line-height: 20px;">
|
|
<view bind:tap="callAdmin">
|
|
会议服务热线: {{ adminTel }}
|
|
</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>
|
|
|
|
<van-dialog id="van-dialog" />
|
|
<!-- 提示框 -->
|
|
<van-dialog use-slot title="请认证所在单位" show="{{ showLogin }}" show-cancel-button bind:close="onCloseLogin" bind:confirm="orderLogin" beforeClose="{{ beforeClose }}" zIndex="109">
|
|
<van-cell-group style="margin: 20px;">
|
|
<van-field bind:change="onChangeUsername" value="{{ username }}" clearable label="用户名" placeholder="请输入用户名" border="{{ false }}" />
|
|
<van-field bind:change="onChangePwd" value="{{ pwd }}" type="password" clearable label="密码" placeholder="请输入密码" border="{{ false }}" />
|
|
</van-cell-group>
|
|
</van-dialog> |