日照项目的居民端小程序
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.
 
 
 

79 lines
3.3 KiB

<scroll-view lower-threshold="{{50}}"
bindscrolltolower="getMore"
scroll-y="{{true}}"
class="g-scroll_page {{status=='closed'||status=='final'||status=='noneed' ?'pd240':'pd80'}}">
<loading id="loading"></loading>
<view wx:if="{{ iniLoaded }}">
<view class="m-list">
<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="date" wx:if="{{ status=='voting' }}">
<date-show format="yyyy-MM-dd hh:mm:ss" timestamp="{{ item.issuePublishTime }}" />
</view>
<view class="date" wx:if="{{ status=='ing' }}">
<date-show format="yyyy-MM-dd hh:mm:ss" timestamp="{{ item.issueShiftedTime }}" />
</view>
<view class="date" wx:if="{{ status=='closed' }}">
<date-show format="yyyy-MM-dd hh:mm:ss" timestamp="{{ item.issueClosedTime }}" />
</view>
<view class="date" wx:if="{{ status=='final' }}">
<date-show format="yyyy-MM-dd hh:mm:ss" timestamp="{{ item.closedTime }}" />
</view>
<view class="date" wx:if="{{ status=='noneed' }}">
<date-show format="yyyy-MM-dd hh:mm:ss" timestamp="{{ item.closedTime }}" />
</view>
<view class="sts">
<text wx:if="{{ status=='voting' }}">{{ item.suggestion }}</text>
<text wx:if="{{status=='ing'}}">当前处理部门:<text wx:for-index="dIndex" wx:for-item="dItem" wx:for="{{ item.currentHandleDepartMent }}">{{ dIndex===0 ? '' : '、' }}{{ dItem }}</text></text>
<text wx:if="{{status=='final'}}">结案说明:{{item.publicReply}}</text>
<text wx:if="{{ status=='closed' }}">{{ item.solution }}</text>
<text wx:if="{{ status=='noneed' }}">{{ item.solution }}</text>
</view>
<view class="topic" wx:if="{{item.sourceType==='resi_topic'}}">
<view class="topic-title">
<view class="topic-tag">
<image mode="aspectFit"
src="/assets/images/issue/tag.png" />
<text>话题</text>
</view>
<view class="topic-cnt">{{item.topicContent}}</view>
</view>
<view class="topic-imgs" wx:if="{{item.topicImgs.length>0}}">
<image mode="aspectFill"
src="{{img}}"
wx:for-item="img"
wx:for="{{item.topicImgs}}"></image>
</view>
</view>
<view class="topic" wx:if="{{item.sourceType==='ic_event'}}">
<view class="topic-title">
<view class="topic-tag">
<image mode="aspectFit"
src="/assets/images/issue/event.png" />
<text>事件</text>
</view>
<view class="topic-cnt">{{item.icEventInfo.eventContent}}</view>
</view>
</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>