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.
21 lines
1.5 KiB
21 lines
1.5 KiB
5 years ago
|
<view class="discussion-detail">
|
||
|
<detail-content topList="{{topList}}" isShowDetailContent="{{isShowDetailContent}}" bind:supportIssueOrProject="supportIssueOrProject" bind:dispportIssueOrProject="dispportIssueOrProject"></detail-content>
|
||
|
<detail-remark topList="{{topList}}" topicId="{{topicId}}" isShowDetailRemark="{{isShowDetailRemark}}" remarkType="{{remarkType}}" commentList="{{commentList}}" bind:replyRemark="replyRemark" bind:supportRemark="debounceSupportRemark" bind:dispportRemark="debounceDispportRemark" bind:changeRemarkType="changeRemarkType"></detail-remark>
|
||
|
<no-data isShow="{{isShow}}"></no-data>
|
||
|
<load-more loadVisible="{{loadVisible}}" loadType="{{loadType}}"></load-more>
|
||
|
<view class="fixed" wx:if="{{isShowDetailContent}}">
|
||
|
<view class="fixed-box">
|
||
|
<image src="../../images/bottomInput.png" class="bottomInput"></image>
|
||
|
<text class="text-comment" bind:tap="commentsIndex" data-type="comments" data-topicId="{{topicId}}" style="width:{{selfPublishFlag =='1'&& manageFlag=='0'? '400rpx' :''}}">请输入评论内容</text>
|
||
|
<view class="punlish close" bind:tap="closeContent" wx:if="{{selfPublishFlag =='1' || manageFlag=='1' }}">
|
||
|
<image src="../../images/close.png" />
|
||
|
<text>关闭</text>
|
||
|
</view>
|
||
|
<view class="punlish" bind:tap="fixedTop" wx:if="{{manageFlag=='1'}}">
|
||
|
<image src="../../images/up.png" />
|
||
|
<text wx:if="{{TopFlag=='0'}}">置顶</text>
|
||
|
<text wx:if="{{TopFlag=='1'}}">取消置顶</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|