|
@@ -64,7 +64,7 @@
|
|
|
v-if="questionItem.reply_status === 2"
|
|
|
>
|
|
|
<view class="record flex-column" v-if="questionItem.recordStatus !== 4">
|
|
|
- <!-- <view class="no-record" v-if="questionItem.recordStatus === 1">
|
|
|
+ <view class="no-record" v-if="questionItem.recordStatus === 1">
|
|
|
<image
|
|
|
src="../static/question/record.png"
|
|
|
mode="widthFix"
|
|
@@ -72,8 +72,8 @@
|
|
|
/>
|
|
|
<view>无录音(录音时长超过三分钟自动结束)</view>
|
|
|
</view>
|
|
|
- <view class="record-time" v-else>{{ audioTime }}</view> -->
|
|
|
- <view class="recode-image">
|
|
|
+ <!-- <view class="record-time" v-else>{{ audioTime }}</view> -->
|
|
|
+ <view class="recode-image" v-else>
|
|
|
<scroll-view scroll-x style="height: 100rpx" class="scroll-view" :scroll-left="scrollTop" @scrolltolower="handleScrolltolower" :show-scrollbar="false">
|
|
|
<view style="width:100%;height:100rpx;display:inline-block;"></view>
|
|
|
<image
|
|
@@ -341,6 +341,12 @@ export default {
|
|
|
this.questionItem.answer = temp;
|
|
|
this.questionItem.loading = false;
|
|
|
this.questionItem.recordStatus = res.data.reply_status > 2 ? 4 : 1;
|
|
|
+ }else{
|
|
|
+ //问题被删除的情况,返回小程序首页
|
|
|
+ setTimeout(()=>{
|
|
|
+ uni.switchTab({ url:'/pages/report/report' });
|
|
|
+ },1000)
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
changeRecodeStatus() {
|