|
|
@@ -45,7 +45,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { computed } from "vue"
|
|
|
+import { computed, onMounted } from "vue"
|
|
|
import { useStore } from "vuex"
|
|
|
import { numberToWords } from "pixiu-number-toolkit"
|
|
|
const {
|
|
|
@@ -63,6 +63,9 @@ function int2zh(idx) {
|
|
|
return numberToWords(idx, "zh")
|
|
|
}
|
|
|
|
|
|
+onMounted(() => {
|
|
|
+ store.commit('resetRelicListScrollValue')
|
|
|
+})
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|