You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.9 KiB
40 lines
1.9 KiB
2 years ago
|
<scroll-view lower-threshold="{{50}}" bindscrolltolower="getMore" scroll-y="{{true}}" class="g-scroll_page pd80">
|
||
|
<loading id="loading"></loading>
|
||
|
<view wx:if="{{ iniLoaded }}">
|
||
|
<view class="m-list">
|
||
|
<!-- <view class="item" wx:for="{{20}}">{{index}}</view> -->
|
||
|
<view class="item" wx:key="issueId" wx:for="{{ list.data }}" data-id="{{ item.issueId }}" bind:tap="handleTapItem">
|
||
|
<view class="row">
|
||
|
<view class="name">{{ item.issueTitle }}</view>
|
||
|
</view>
|
||
|
<view class="sts" wx:if="{{ status=='voting' }}">
|
||
|
<fold-text>{{ item.suggestion }}</fold-text>
|
||
|
</view>
|
||
|
<view class="sts" wx:if="{{ status=='turned' }}">
|
||
|
<fold-text wx:if="{{item.projectStatus=='pending'}}">
|
||
|
当前处理部门:<text wx:for-index="dIndex" wx:for-item="dItem" wx:for="{{ item.departmentNameList }}">{{ dIndex===0 ? '' : '、' }}{{ dItem }}</text>
|
||
|
</fold-text>
|
||
|
<fold-text wx:if="{{item.projectStatus=='closed'}}">结案说明:{{item.publicReply}}</fold-text>
|
||
|
</view>
|
||
|
<view class="sts" wx:if="{{ status=='closed' }}">
|
||
|
<fold-text>{{ item.solution }}</fold-text>
|
||
|
</view>
|
||
|
<view class="date" wx:if="{{ status=='voting' }}">
|
||
|
<date-show timestamp="{{ item.issuePublishTime }}" />
|
||
|
</view>
|
||
|
<view class="date" wx:if="{{ status=='turned' }}">
|
||
|
<date-show timestamp="{{ item.shiftedTime }}" />
|
||
|
</view>
|
||
|
<view class="date" wx:if="{{ status=='closed' }}">
|
||
|
<date-show timestamp="{{ item.issueClosedTime }}" />
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="m-more" wx:if="{{ moreListHint && moreListHint!='暂无内容' }}">
|
||
|
{{ moreListHint }}
|
||
|
</view>
|
||
|
<view class="m-nothing" wx:else>
|
||
|
<image mode="aspectFill" class="arrow" src="/assets/images/group/nodata.png" />
|
||
|
</view>
|
||
|
</view>
|
||
|
</scroll-view>
|