|
@@ -0,0 +1,58 @@
|
|
|
+<!--pages/receivedInvitation/receivedInvitation.wxml-->
|
|
|
+
|
|
|
+<view class="wrapper">
|
|
|
+ <!-- 上方邀请号和照片 -->
|
|
|
+ <view class="above">
|
|
|
+ <view>
|
|
|
+ <view class="aboveTitle">
|
|
|
+ <text>邀请号:</text>
|
|
|
+ <text>XXXXXX</text>
|
|
|
+ </view>
|
|
|
+ <view class="aboveTitle">
|
|
|
+ <text>对方:</text>
|
|
|
+ <text>XXXXXX</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!-- 头像 -->
|
|
|
+ <image class="headerPortrait" mode="widthFix" src="../../images/zly.jpeg"></image>
|
|
|
+ </view>
|
|
|
+ <!-- 中间详细信息 -->
|
|
|
+ <view>
|
|
|
+ <view class="midTitle">
|
|
|
+ <text>对方ID:</text>
|
|
|
+ <text>xxxxxxx</text>
|
|
|
+ </view>
|
|
|
+ <view class="midTitle">
|
|
|
+ <text>需求号:</text>
|
|
|
+ <text class="toLink" bindtap="toNeedDetail" style="color: {{needColor}};">xxxxxx</text>
|
|
|
+ <text class="needState">{{needState}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="midTitle">
|
|
|
+ <text>课程号:</text>
|
|
|
+ <text class="toLink" bindtap="toCourseDetail" style="color: {{courseColor}};">xxxxxx</text>
|
|
|
+ <text class="needState">{{courseState}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="midTitle">
|
|
|
+ <text>需求金额:</text>
|
|
|
+ <text>xxxxxx</text>
|
|
|
+ </view>
|
|
|
+ <view class="midTitle">
|
|
|
+ <text>邀请内容:</text>
|
|
|
+ <text>xxxxxx</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="bottomWrapper">
|
|
|
+ <view class="bottomTitle">
|
|
|
+ <text>邀请日期:</text>
|
|
|
+ <text>2022-12-12</text>
|
|
|
+ </view>
|
|
|
+ <view class="bottomTitle">
|
|
|
+ <text>我方操作状态:</text>
|
|
|
+ <text class="operateState">{{oprerateState}}</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="operation" wx:if="{{oprerateState == '待定' && !needState && !courseState}}">
|
|
|
+ <view class="operationBtn">拒绝</view>
|
|
|
+ <view class="operationBtn">同意</view>
|
|
|
+ </view>
|
|
|
+</view>
|