index.wxml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!--pages/index/index.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-next.png);" bindtap="meetingInfo">
  8. <view class="line-row">
  9. <view class="line"></view>
  10. <span>下一场</span>
  11. <view class="line"></view>
  12. </view>
  13. <view class="next-row">
  14. <text class="next-title">参观主题:</text>
  15. <text class="next-content">{{nextTitle}}</text>
  16. </view>
  17. <view class="next-row">
  18. <text class="next-title">参观时间:</text>
  19. <text class="next-content">{{nextTime}}</text>
  20. </view>
  21. <view class="next-row">
  22. <text class="next-title">参观单位:</text>
  23. <text class="next-content">{{nextUnit}}</text>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="second-part">
  28. <view class="inspection">
  29. <view class="inspection-left" style="background-image: url({{imgPath}}/index-inspection.png);" bindtap="dailyInspection">
  30. <image mode="heightFix" src="{{imgPath}}/index-inspection-in1.png"></image>
  31. <text>日常巡检</text>
  32. </view>
  33. <view class="inspection-right" style="background-image: url({{imgPath}}/index-inspection-right.png);" bindtap="meetingInspection">
  34. <image mode="heightFix" src="{{imgPath}}/index-inspection-in2.png"></image>
  35. <text>参观巡检</text>
  36. </view>
  37. </view>
  38. <view class="bottmo-module">
  39. <view class="light" bindtap="visitAgenda">
  40. <image mode="heightFix" src="{{imgPath}}/index-light1.png"></image>
  41. <text>参观议程</text>
  42. </view>
  43. <view class="light" bindtap="uploadImage">
  44. <image mode="heightFix" src="{{imgPath}}/index-light2.png"></image>
  45. <text>图片回传</text>
  46. </view>
  47. <view class="big">
  48. <image mode="heightFix" src="{{imgPath}}/index-light5.png"></image>
  49. <text>内容投屏</text>
  50. </view>
  51. </view>
  52. <view class="bottmo-module bottom">
  53. <view class="light" bindtap="chatRoom">
  54. <image mode="heightFix" src="{{imgPath}}/index-light3.png"></image>
  55. <text>聊天室</text>
  56. </view>
  57. <view class="light" bindtap="lightMap">
  58. <image mode="heightFix" src="{{imgPath}}/index-light4.png"></image>
  59. <text>地图</text>
  60. </view>
  61. </view>
  62. </view>