|
|
|
@ -77,6 +77,7 @@ import { computed, onMounted, ref } from "vue";
@@ -77,6 +77,7 @@ import { computed, onMounted, ref } from "vue";
|
|
|
|
|
import { useI18n } from "vue3-i18n"; |
|
|
|
|
import { strengthenAvgCoins, strengthenValue } from "@/tool"; |
|
|
|
|
import { EquipIcon, Confirm } from "@/components"; |
|
|
|
|
import { qualitys } from "@/config"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const { t } = useI18n(); |
|
|
|
@ -119,7 +120,12 @@ const confirmInherited = () => {
@@ -119,7 +120,12 @@ const confirmInherited = () => {
|
|
|
|
|
emit('close'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onMounted(() => { }); |
|
|
|
|
onMounted(() => { |
|
|
|
|
const need = strengthenAvgCoins(100, 13, qualitys[5]); |
|
|
|
|
const used = strengthenAvgCoins(1, 13, qualitys[0]); |
|
|
|
|
console.log(need - used); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.inherited { |
|
|
|
|