首次提交:初始化项目代码

This commit is contained in:
sunct
2026-07-31 14:42:05 +08:00
commit ecca407485
84 changed files with 24158 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
export default {
data() {
return {
growthModalVisible: false,
growthModalTitle: '',
growthModalMessage: '',
growthModalIcon: '',
growthModalConfirmText: '太棒了!',
growthModalCallback: null
}
},
methods: {
showGrowthModal(growth) {
this.showGrowthModalWithCallback(growth, null)
},
showGrowthModalWithCallback(growth, callback) {
this.growthModalCallback = callback
if (growth.levelUp) {
const privilegesText = growth.newPrivileges && growth.newPrivileges.length
? '\n解锁特权:' + growth.newPrivileges.join('、')
: ''
this.growthModalTitle = '🎉 恭喜升级!'
this.growthModalMessage = `等级:Lv.${growth.oldLevel || growth.currentLevel - 1} → Lv.${growth.currentLevel}\n称号:${growth.levelTitle || '暂无'}\n获得经验:+${growth.expGained || 0} EXP${privilegesText}`
this.growthModalIcon = '🎉'
this.growthModalConfirmText = '太棒了!'
this.growthModalVisible = true
} else if (growth.newAchievements && growth.newAchievements.length > 0) {
const ach = growth.newAchievements[0]
this.growthModalTitle = '🏆 获得成就!'
this.growthModalMessage = `${ach.name || ''}\n${ach.description || ''}\n稀有度:${ach.rarityName || '初级'}\n获得经验:+${ach.expReward || 0} EXP`
this.growthModalIcon = ach.icon || '🏆'
this.growthModalConfirmText = '太棒了!'
this.growthModalVisible = true
} else {
if (typeof callback === 'function') {
callback()
}
}
},
onGrowthModalClose() {
this.growthModalVisible = false
if (typeof this.growthModalCallback === 'function') {
this.growthModalCallback()
this.growthModalCallback = null
}
}
}
}