|
@@ -8,6 +8,8 @@ const props = defineProps({
|
|
|
item: Object
|
|
|
})
|
|
|
|
|
|
+const emit = defineEmits(['open_nick_dia'])
|
|
|
+
|
|
|
|
|
|
const dataInfo = ref({...props.item,commentInfo: {}});
|
|
|
|
|
@@ -84,28 +86,7 @@ const checkNickHandle = async() => {
|
|
|
const { data,code } = await $api.apiCheckNick();
|
|
|
|
|
|
if(code !== 200) return
|
|
|
-
|
|
|
- const htmlStr=`检测到您还未设置头像和昵称,您的留言将发布为匿名,是否立即去设置?`
|
|
|
- !data && ElMessageBox({
|
|
|
- title:`温馨提醒`,
|
|
|
- message:htmlStr,
|
|
|
- center: true,
|
|
|
- dangerouslyUseHTMLString: true,
|
|
|
- confirmButtonText:'去设置',
|
|
|
- confirmButtonClass:'self-elmessage-confirm-btn',
|
|
|
- showCancelButton:true,
|
|
|
- cancelButtonText:'暂时不用',
|
|
|
- cancelButtonClass:'self-elmessage-cancel-btn'
|
|
|
- }).then(()=>{
|
|
|
- router.push('/user/setinfo')
|
|
|
- }).catch(()=>{
|
|
|
- setCancelNickHandle();
|
|
|
- })
|
|
|
-}
|
|
|
-/* 不在提醒弹窗 */
|
|
|
-const setCancelNickHandle = async() => {
|
|
|
- await $api.apiCanelNickTip()
|
|
|
-
|
|
|
+ !data && emit('open_nick_dia')
|
|
|
}
|
|
|
/* 发布留言*/
|
|
|
const publishMessageHandle = async() => {
|
|
@@ -156,7 +137,7 @@ const delCommentHandle = ({community_question_comment_id},index) => {
|
|
|
<view class="commetn-item-wrap" @click="setLikeHandle(2)">
|
|
|
<img src="@/assets/question/tease_act.png" alt="" v-if="dataInfo.op_type===2" class="icon">
|
|
|
<img src="@/assets/question/tease.png" alt="" v-else class="icon">
|
|
|
- <text v-if="dataInfo.tease_total">{{dataInfo.tease_total}}</text>
|
|
|
+ <text style="min-width:50px;">{{dataInfo.tease_total || ''}}</text>
|
|
|
</view>
|
|
|
<view class="commetn-item-wrap" >
|
|
|
<span
|
|
@@ -170,7 +151,7 @@ const delCommentHandle = ({community_question_comment_id},index) => {
|
|
|
<view class="commetn-item-wrap" @click="setLikeHandle(1)">
|
|
|
<img src="@/assets/question/like_act.png" alt="" v-if="dataInfo.op_type===1" class="icon">
|
|
|
<img src="@/assets/question/like.png" alt="" v-else class="icon">
|
|
|
- <text v-if="dataInfo.like_total">{{dataInfo.like_total}}</text>
|
|
|
+ <text style="min-width:50px;">{{dataInfo.like_total || ''}}</text>
|
|
|
</view>
|
|
|
</div>
|
|
|
|