Commit 678f89c0 authored by spc's avatar spc

fixed

parent a023651b
......@@ -224,7 +224,7 @@ const initWebviewUrl = async () => {
// 监听注册状态变化,初始化 webview URL
watch(() => registered.value, (newVal, oldVal) => {
if (newVal) {
if (newVal && newVal !== oldVal) {
nextTick(() => {
initWebviewUrl()
})
......
......@@ -364,8 +364,7 @@
<!-- 答案解析弹窗 -->
<CanEatAnswerPopup :visible="showAnswerPopup" :isCorrect="isAnswerCorrect" :rewardInfo="rewardInfo"
:question="currentQuestion" :correctAnswer="correctAnswer" :analysis="answerAnalysis"
:optionDistribution="optionDistribution" :allResult="canEatData?.analysis?.allResult"
@close="showAnswerPopup = false" />
:allResult="canEatData?.analysis?.allResult" @close="showAnswerPopup = false" />
<!-- 金币动画模块 -->
<view class="gold-coin-animation" v-if="showGoldCoinAnimation" @tap="hideGoldCoinAnimation">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment