12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!--pages/index-guest/index-guest.wxml-->
- <view class="container" style="height: 50%;background-image: url({{imgPath}}/index-bg.png);">
- <view class="login-info">
- <text>你好,{{username}}</text><text class="role-name" bindtap="changeRole">{{role_name}}</text>
- <view class="app-bottom">{{app_bottom}}</view>
- </view>
- <view class="next" style="background-image: url({{imgPath}}/index-next2.png);">
- <view class="line-row">热烈欢迎领导莅临指导</view>
- <image class="next-line" mode="scaleToFill" src="{{imgPath}}/index-next-line.png"></image>
- <view class="next-row-org">重庆市城市管理局</view>
- <view class="next-row-time">{{nowTime}}</view>
- </view>
- </view>
- <view class="second-part">
- <view class="curr-meeting" wx:if="{{hasNext}}" bindtap="meetingInfo">
- <view class="curr-time">{{nextTime}}</view>
- <view class="curr-row">
- <text class="row-title">单位:</text>
- <text class="row-value">{{nextUnit}}</text>
- </view>
- <view class="curr-row">
- <text class="row-title">主题:</text>
- <text class="row-value">{{nextTitle}}</text>
- </view>
- </view>
- <view class="bottmo-module">
- <view class="light" bindtap="visitAgenda">
- <image mode="scaleToFill" src="{{imgPath}}/index-light1.png"></image>
- <text>参观议程</text>
- </view>
- <view class="light" bindtap="uploadImage">
- <image mode="scaleToFill" src="{{imgPath}}/index-light2.png"></image>
- <text>图片回传</text>
- </view>
- <view class="light" bindtap="contentScreen">
- <image mode="scaleToFill" src="{{imgPath}}/index-light5.png"></image>
- <text>内容投屏</text>
- </view>
- </view>
- <view class="bottmo-module">
- <view class="light" bindtap="chatRoom">
- <image mode="scaleToFill" src="{{imgPath}}/index-light3.png"></image>
- <text>聊天室</text>
- </view>
- <view class="light" bindtap="lightMap">
- <image mode="scaleToFill" src="{{imgPath}}/index-light4.png"></image>
- <text>地图</text>
- </view>
- <view class="light" bindtap="fileBrowse">
- <image mode="scaleToFill" src="{{imgPath}}/index-light6.png"></image>
- <text>文件浏览</text>
- </view>
- </view>
- </view>
|