123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <view class='page-container-classname' ref='saveChildRef0'>
- <import-sjs from='../../utils/util.sjs' name='utils'>
- </import-sjs>
- <view class='page'>
- <view class='top'>
- <view class='top-area'>
- </view>
- </view>
- <!--<view style='height: {{CustomBar-StatusBar}}px; width: 100%;margin-top: -80rpx; padding-left: 68rpx; line-height: {{CustomBar-StatusBar}}px;position: absolute;color: #fff;'>
- 会议室预约管理平台</view> -->
- <view class='content'>
- <view class='content-box'>
- <view class='bg' onTap='goMine'>
- <image src='/static/home/bg.png' mode="aspectFit">
- </image>
- </view>
- <view class='flex fun'>
- <view
- a:for='{{funList}}'
- a:if='{{utils.indexOf(item.jurisdiction,userInfo.appointmentAuth,userInfo.checkAuth,userInfo.serivceAuth)}}'
- class='item home-item'
- a:key='{{index}}'
- data-item='{{item}}'
- ref-numbers='{{funList}}'
- onTap='antmoveAction'
- data-antmove-tap='goFun'
- >
- <image class='item-icon' src='{{item.img}}' mode="aspectFill">
- </image>
- {{item.name}}
- </view>
- </view>
- <view a:if='{{myMeetingList.length>0}}' class='box'>
- <view class='box-tit'>
- 我的会议
- </view>
- <view class='flex auto'>
- <view
- a:for='{{myMeetingList}}'
- class='my-meetingborder-radius-20 flex'
- a:key='{{index}}'
- data-item='{{item}}'
- data-type='my-meeting'
- ref-numbers='{{myMeetingList}}'
- onTap='antmoveAction'
- data-antmove-tap='myMeetingFun'
- >
- <view class='data-time'>
- <view>
- {{item.appointmentDate}}
- </view>
- <view class='time'>
- {{item.appointmentStartTime}}-{{item.appointmentEndTime}}
- </view>
- </view>
- <view class='meeting-right'>
- <view class='meeting-name over'>
- {{item.meetingName}}
- </view>
- <view a:if='{{item.meetingMonogram}}' class='over'>
- {{item.meetingMonogram}}
- </view>
- <view class='over location'>
- <van-icon name='location' ref='saveChildRef1'>
- </van-icon>
- <text class="over-text">
- {{item.meetingAddress}}
- </text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view a:if='{{meetingList.length>0}}' class='box'>
- <view class='box-tit'>
- 会议室
- </view>
- <view class='flex flex1'>
- <view
- a:for='{{meetingList}}'
- class='room border-radius-20'
- a:key='{{index}}'
- data-item='{{item}}'
- ref-numbers='{{meetingList}}'
- onTap='antmoveAction'
- data-antmove-tap='goRoomFun'
- >
- <view class='rooom-name over'>
- {{item.meetingName}}
- </view>
- <view class='over home-text-color'>
- <van-icon name='location' ref='saveChildRef2'>
- </van-icon>
- <text class="over-text">
- {{item.meetingAddress}}
- </text>
- </view>
- <view class='over home-text-color'>
- <van-icon name='map-marked' ref='saveChildRef3'>
- </van-icon>
- <text class="over-text">
- 共有{{item.seatNum}}个座位
- </text>
- </view>
- <view
- a:if="{{!userInfo.appointmentAuth&&userInfo.serivceAuth&&!userInfo.checkAuth}}"
- class="over home-text-color"
- >
- <image
- class="meeting-img"
- src="../../static/img/home-num-icon.png"
- alt=""
- />
- <text>今日有{{item.hadMeetingTimes}}场会议</text>
- </view>
- </view>
- </view>
- </view>
- <view
- a:if='{{meetingList.length>0}}'
- class='more home-over-text'
- onTap='antmoveAction'
- data-antmove-tap='goRoomFun'
- >
- 更多会议室
- <van-icon name='arrow' ref='saveChildRef4'>
- </van-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
|