123456789101112131415161718192021222324252627282930313233343536 |
- <!--pages/manageComplaint/manageComplaint.wxml-->
- <view class="handleComplaintWrapper">
- <view class="handleComplaint" bindtap="toManageComplaintDetail">
- <view>
- <text>投诉号</text>
- <text class="complaintNum">xxx</text>
- </view>
- <view class="complaintDateStatus">
- <view>
- <text>日期</text>
- <text class="complaintDate">2023-01-03</text>
- </view>
- <view class="handleStatus">
- <text>状态</text>
- <text class="complaintStatus">处理中</text>
- </view>
- </view>
- </view>
- <view class="handleComplaint" bindtap="toManageComplaintDetail">
- <view>
- <text>投诉号</text>
- <text class="complaintNum">xxx</text>
- </view>
- <view class="complaintDateStatus">
- <view>
- <text>日期</text>
- <text class="complaintDate">2023-01-03</text>
- </view>
- <view class="handleStatus">
- <text>状态</text>
- <text class="complaintStatus">处理中</text>
- </view>
- </view>
- </view>
- </view>
|