meeting-cover.wxml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--pages/meeting-cover/meeting-cover.wxml-->
  2. <view class="body" style="background-image: url({{imgPath}}/meeting-cover-bg.png);" wx:if="{{showPart1}}" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd" animation="{{ani}}">
  3. <view class="welcome">诚挚邀您参加</view>
  4. <view class="topic">{{title}}</view>
  5. <view class="line"></view>
  6. <view class="block" style="background-image: url({{imgPath}}/meeting-cover-block.png);">
  7. <view class="block-row">
  8. <image class="block-img" mode="scaleToFill" src="{{imgPath}}/meeting-cover-time.png"></image>
  9. <text>时间:</text>
  10. </view>
  11. <view class="block-value">{{receptionTime}}</view>
  12. <view class="block-row">
  13. <image class="block-img" mode="scaleToFill" src="{{imgPath}}/meeting-cover-position.png"></image>
  14. <text>地点:</text>
  15. </view>
  16. <view class="block-value">{{location}}</view>
  17. </view>
  18. <view class="bottom">
  19. <view class="bottom-line"></view>
  20. <text>期·待·您·的·参·与</text>
  21. <view class="bottom-line"></view>
  22. </view>
  23. </view>
  24. <view class="container" style="background-image: url({{imgPath}}/meeting-arrangement-bg.png);" wx:if="{{showPart2}}" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd" animation="{{ani2}}">
  25. <view class="agenda-title">{{title}}</view>
  26. <view class="english-name">Agenda arrangement</view>
  27. <view class="agenda-name">议程安排</view>
  28. <view class="now-time">{{receptionTime}}</view>
  29. <scroll-view class="arrangement-list" scroll-y="true" style="height: 70%;">
  30. <!-- <textarea name="receptionContent" value="{{receptionContent}}" maxlength="5000" disabled="true"></textarea> -->
  31. <text>{{receptionContent}}{{receptionContent}}{{receptionContent}}</text>
  32. </scroll-view>
  33. </view>