Răsfoiți Sursa

Merge branch 'xqc_reportbot_toquestion'

jwyu 2 ani în urmă
părinte
comite
cc6b8c5255
1 a modificat fișierele cu 9 adăugiri și 0 ștergeri
  1. 9 0
      src/components/Comment.vue

+ 9 - 0
src/components/Comment.vue

@@ -189,6 +189,10 @@ const formatCommentList=(id)=>{
     }
 }
 
+const linkToQuestionHandle=()=>{
+    router.push('/question/list')
+}
+
 
 onMounted(() => {
     getMyCommnet()
@@ -303,6 +307,11 @@ onMounted(() => {
                 </li>
             </ul>
         </template>
+
+        <!-- 跳转问答区域 -->
+		<div style="text-align:center;font-size:18px;color:#F3A52F;margin-top:20px;cursor: pointer;" @click="linkToQuestionHandle">
+			想要一对一回复吗?去问答社区提问
+		</div>
     </div>
 </template>