1234567891011121314151617181920212223242526272829303132333435 |
- <!--pages/meeting-cover/meeting-cover.wxml-->
- <view class="body" style="background-image: url({{imgPath}}/meeting-cover-bg.png);" wx:if="{{showPart1}}" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd" animation="{{ani}}">
- <view class="welcome">诚挚邀您参加</view>
- <view class="topic">{{title}}</view>
- <view class="line"></view>
- <view class="block" style="background-image: url({{imgPath}}/meeting-cover-block.png);">
- <view class="block-row">
- <image class="block-img" mode="scaleToFill" src="{{imgPath}}/meeting-cover-time.png"></image>
- <text>时间:</text>
- </view>
- <view class="block-value">{{receptionTime}}</view>
- <view class="block-row">
- <image class="block-img" mode="scaleToFill" src="{{imgPath}}/meeting-cover-position.png"></image>
- <text>地点:</text>
- </view>
- <view class="block-value">{{location}}</view>
- </view>
- <view class="bottom">
- <view class="bottom-line"></view>
- <text>期·待·您·的·参·与</text>
- <view class="bottom-line"></view>
- </view>
- </view>
- <view class="container" style="background-image: url({{imgPath}}/meeting-arrangement-bg.png);" wx:if="{{showPart2}}" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd" animation="{{ani2}}">
- <view class="agenda-title">{{title}}</view>
- <view class="english-name">Agenda arrangement</view>
- <view class="agenda-name">议程安排</view>
- <view class="now-time">{{receptionTime}}</view>
- <scroll-view class="arrangement-list" scroll-y="true" style="height: 70%;">
- <!-- <textarea name="receptionContent" value="{{receptionContent}}" maxlength="5000" disabled="true"></textarea> -->
- <text>{{receptionContent}}{{receptionContent}}{{receptionContent}}</text>
- </scroll-view>
- </view>
|