a1300399510@qq.com 提交于 2023/03/31 -12:40:01

This commit is contained in:
2023-03-31 12:40:10 +08:00
parent d73f2147c0
commit ff81fbc2e2
2 changed files with 72 additions and 9 deletions

View File

@@ -55,7 +55,7 @@
<detail-reply :two-comment-data="twoCommentData" :pop-state="popState"></detail-reply>
<coins :pop-state="popState"></coins>
<coins :coin-config="coinConfig" :pop-state="popState"></coins>
</div>
</template>
@@ -64,7 +64,6 @@ import DetailReply from '@/components/DetailReply'
import Coins from '@/components/unlock/Coins'
export default {
name: 'detailIndex',
data() {
return {
twoCommentData: {
@@ -72,7 +71,13 @@ export default {
content: "评论回复",
},
popState: "coinNo",
coinConfig: {
strategy: {
button: "攒币指南",
tips: "你的寄托币不够,快去发帖挣币吧",
url: "https://bbs.gter.net/thread-2543548-1-1.html",
}
},
};
},
@@ -85,7 +90,7 @@ export default {
},
components: {
DetailReply,Coins
DetailReply, Coins
}
};
</script>