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.
94 lines
4.1 KiB
94 lines
4.1 KiB
<view wx:if="{{iniLoaded}}">
|
|
<view class="m-hint"
|
|
wx:if="{{topicDetail.applyStatus=='under_auditing'}}">
|
|
已提交申请,请耐心等待审核。
|
|
</view>
|
|
<view class="m-hint"
|
|
wx:elif="{{topicDetail.applyStatus=='approved'}}">
|
|
该话题转议题已审核通过。
|
|
</view>
|
|
<view class="m-hint"
|
|
wx:elif="{{isBlocked}}">
|
|
该话题已被屏蔽,无法进行转议题操作。
|
|
</view>
|
|
|
|
<view wx:else>
|
|
<view class="g-temp">
|
|
<view class="g-temp-wrap">
|
|
<view class="m-result"
|
|
wx:if="{{topicDetail.applyStatus=='rejected'}}">
|
|
<view class="item">
|
|
<view class="field">审核结果</view>
|
|
<view class="value">已拒绝</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="field">拒绝原因</view>
|
|
<view class="value">{{rejectReason}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="topic-con">
|
|
<view class="title">
|
|
<view class="label">
|
|
<text>*</text>
|
|
标题:
|
|
</view>
|
|
<view class="ipt">
|
|
<input bindblur="bindInput"
|
|
bindinput="bindInput"
|
|
value="{{subject.issueTitle}}"
|
|
maxlength="20"
|
|
placeholder-class="placeholder-style"
|
|
placeholder="请输入议题标题" />
|
|
</view>
|
|
</view>
|
|
<view class="content">
|
|
<view class="con-tit">针对话题:</view>
|
|
<view>
|
|
<fold-text class="content"
|
|
wx:if="{{topicDetail.topicContent}}">
|
|
<text>{{topicDetail.topicContent}}</text>
|
|
</fold-text>
|
|
</view>
|
|
<topic-audio wx:if="{{voiceList.length > 0}}" url="{{voiceList[0].url}}" duration="{{voiceList[0].duration}}" />
|
|
<view class="pics">
|
|
<image mode="aspectFill" bind:tap="previewImg" data-index="{{ index }}" wx:key="*this" wx:for="{{ topicDetail.topicImgs }}" src="{{ item }}"></image>
|
|
</view>
|
|
<view class="grid">所属网格:{{topicDetail.belongGridName}}</view>
|
|
<view class="grid">发表人:{{topicDetail.releaseUserName}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="topic-con">
|
|
<view class="content">
|
|
<view class="con-tit">建议:</view>
|
|
<view class="tarea">
|
|
<textarea
|
|
value="{{subject.suggest}}"
|
|
class="areas"
|
|
placeholder-class="area-style"
|
|
placeholder='请您填写具体的处理建议。'
|
|
maxlength="300"
|
|
bindinput="bindTextAreaBlur"
|
|
bindconfirm="bindTextAreaBlur"
|
|
bindblur="bindTextAreaBlur"></textarea>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="u-bottom-placeholder"></view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="btns">
|
|
<view class="btn yl" bind:tap="preview">预览</view>
|
|
<view class="btn zyt" bind:tap="turnSubject">
|
|
<text wx:if="{{topicDetail.applyStatus=='rejected'}}">重新提交</text>
|
|
<text wx:else>转议题</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<loading showed="{{!iniLoaded}}" />
|