锦水居民端小程序
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.
 

90 lines
3.0 KiB

<!-- <view class="topic-detail">
<topic-content detailInfo="{{detailInfo}}"></topic-content>
<handle-progress
wx:if="{{detailInfo.topicState == '20'}}"
closeObj="{{closeObj}}">
</handle-progress>
<topic-remark
remarkList="{{remarkList}}"
remarkType="{{remarkType}}"
bind:supportReply="debounceSupportReply"
statementNum="{{statementNum}}"
bind:replyRemark="replyRemark"
bind:changeRemarkType="changeRemarkType"
bind:dispportReply="debiunceDispportReply">
</topic-remark>
<view style="margin-bottom: 100rpx;">
<load-more
loadMoreVisible="{{loadMoreVisible}}"
loadMoreType="{{loadMoreType}}">
</load-more>
</view>
<view class="bottom-operation">
<view class="altitude-input" style="width: {{lordFlag == '1' && detailInfo.topicState == '0' ? '330rpx' : '100%'}}">
<image src="../../images/ic_baidataidubianji@2x.png" />
<input disabled="{{true}}" bindtap="inputFocus" type="text" placeholder="快来表达您的态度吧" placeholder-class="placeholder-input" />
</view>
<button wx:if="{{lordFlag == '1' && detailInfo.topicState == '0'}}" class="close-topic" hover-class="hover-close" bindtap="closeDialog">关闭话题</button>
<button wx:if="{{lordFlag == '1' && detailInfo.topicState == '0'}}" bindtap="changeToIssue" class="change-issue" hover-class="hover-change">转成议题</button>
</view>
</view>
<notice-verify
noticeVerifyVisible="{{noticeVerifyVisible}}"
title="关闭话题"
cancelText="取消"
confirmText="关闭"
tipVisible="{{true}}"
tipValue="*关闭后不能评论,回复等互动"
bind:confirm="closeTopic">
</notice-verify>
<notice
title="{{noticeTitle}}"
content="{{noticeContent}}"
confirmText="知道了"
dialogVisible="{{dialogVisible}}">
</notice>
<completeinfo-dialog
completeInfoDialogVisible="{{completeInfoDialogVisible}}">
</completeinfo-dialog> -->
<view class="topic-detail">
<view class="topic-content">
<view class="user-info">
<image class="avatar" src="{{detailInfo.userFace}}" />
<view class="identify">
<view class="identify-top">
<view class="nickname">{{detailInfo.nickname}}</view>
<image class="party-flag" wx:if="{{detailInfo.partyMember == '1'}}" src="../../images/ic_dangbiaoqian.png" />
</view>
<view class="identify-bottom">{{detailInfo.createdTime}}</view>
</view>
</view>
<view class="issue-content">{{detailInfo.topicContent}}</view>
<view class="image-list">
<image
catchtap="previewImage"
data-src="{{item}}"
wx:for="{{detailInfo.images}}"
wx:for-index="index"
wx:for-item="item"
mode="widthFix"
wx:key="index"
class="image-item"
src="{{item}}" />
</view>
</view>
<view class="handle-progress" wx:if="{{detailInfo.shieldFlag =='1'}}">
<view class="title">屏蔽原因</view>
<view class="handle-progress-content">{{detailInfo.shieldReason}}</view>
</view>
</view>