index-guest.wxml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!--pages/index-guest/index-guest.wxml-->
  2. <view class="container" style="height: 50%;background-image: url({{imgPath}}/index-bg.png);">
  3. <view class="login-info">
  4. <text>你好,{{username}}</text><text class="role-name" bindtap="changeRole">{{role_name}}</text>
  5. <view class="app-bottom">{{app_bottom}}</view>
  6. </view>
  7. <view class="next" style="background-image: url({{imgPath}}/index-next2.png);">
  8. <view class="line-row">热烈欢迎领导莅临指导</view>
  9. <image class="next-line" mode="scaleToFill" src="{{imgPath}}/index-next-line.png"></image>
  10. <view class="next-row-org">重庆市城市管理局</view>
  11. <view class="next-row-time">{{nowTime}}</view>
  12. </view>
  13. </view>
  14. <view class="second-part">
  15. <view class="curr-meeting" wx:if="{{hasNext}}" bindtap="meetingInfo">
  16. <view class="curr-time">{{nextTime}}</view>
  17. <view class="curr-row">
  18. <text class="row-title">单位:</text>
  19. <text class="row-value">{{nextUnit}}</text>
  20. </view>
  21. <view class="curr-row">
  22. <text class="row-title">主题:</text>
  23. <text class="row-value">{{nextTitle}}</text>
  24. </view>
  25. </view>
  26. <view class="bottmo-module">
  27. <view class="light" bindtap="visitAgenda">
  28. <image mode="scaleToFill" src="{{imgPath}}/index-light1.png"></image>
  29. <text>参观议程</text>
  30. </view>
  31. <view class="light" bindtap="uploadImage">
  32. <image mode="scaleToFill" src="{{imgPath}}/index-light2.png"></image>
  33. <text>图片回传</text>
  34. </view>
  35. <view class="light" bindtap="contentScreen">
  36. <image mode="scaleToFill" src="{{imgPath}}/index-light5.png"></image>
  37. <text>内容投屏</text>
  38. </view>
  39. </view>
  40. <view class="bottmo-module">
  41. <view class="light" bindtap="chatRoom">
  42. <image mode="scaleToFill" src="{{imgPath}}/index-light3.png"></image>
  43. <text>聊天室</text>
  44. </view>
  45. <view class="light" bindtap="lightMap">
  46. <image mode="scaleToFill" src="{{imgPath}}/index-light4.png"></image>
  47. <text>地图</text>
  48. </view>
  49. <view class="light" bindtap="fileBrowse">
  50. <image mode="scaleToFill" src="{{imgPath}}/index-light6.png"></image>
  51. <text>文件浏览</text>
  52. </view>
  53. </view>
  54. </view>