|
@@ -18,7 +18,8 @@
|
|
</view>
|
|
</view>
|
|
<view class="status blue-color">{{statusMap[data.ReplyStatus]}}</view>
|
|
<view class="status blue-color">{{statusMap[data.ReplyStatus]}}</view>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
|
|
+ <!-- 终止理由 -->
|
|
|
|
+ <view class="row" v-if="data.ReplyStatus===4">终止原因:{{ data.StopReason }}</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<!-- 评论item -->
|
|
<!-- 评论item -->
|
|
@@ -32,10 +33,10 @@
|
|
</view>
|
|
</view>
|
|
<view class="action-bot flex">
|
|
<view class="action-bot flex">
|
|
<text class="red-color" @click="actionHandle('del')">删除</text>
|
|
<text class="red-color" @click="actionHandle('del')">删除</text>
|
|
- <template v-if="data.ReplyStatus === 1 && type === 'question'">
|
|
|
|
|
|
+ <!-- <template v-if="data.ReplyStatus === 1 && type === 'question'">
|
|
<text class="blue-color" @click="actionHandle('edit')">编辑</text>
|
|
<text class="blue-color" @click="actionHandle('edit')">编辑</text>
|
|
<text :class="data.select_users.user_id ? 'blue-color' : 'grey-color'" @click="actionHandle('send')" >分配并通知</text>
|
|
<text :class="data.select_users.user_id ? 'blue-color' : 'grey-color'" @click="actionHandle('send')" >分配并通知</text>
|
|
- </template>
|
|
|
|
|
|
+ </template> -->
|
|
<!-- <text class="blue-color" @click="actionHandle('hot')" v-if="type === 'comment'">{{ data.IsHot ? '取消精选': '精选' }}</text> -->
|
|
<!-- <text class="blue-color" @click="actionHandle('hot')" v-if="type === 'comment'">{{ data.IsHot ? '取消精选': '精选' }}</text> -->
|
|
|
|
|
|
</view>
|
|
</view>
|
|
@@ -70,7 +71,8 @@
|
|
statusMap: {
|
|
statusMap: {
|
|
1: '待分配',
|
|
1: '待分配',
|
|
2: '待回答',
|
|
2: '待回答',
|
|
- 3: '已回答'
|
|
|
|
|
|
+ 3: '已回答',
|
|
|
|
+ 4: '已终止'
|
|
},
|
|
},
|
|
};
|
|
};
|
|
},
|
|
},
|