This commit is contained in:
李志鹏
2026-05-28 11:43:24 +08:00
parent b8243128d6
commit 7df8b38966
2 changed files with 42 additions and 12 deletions

18
src/views/pay/payment.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<div class="pay">{{ props.ids }}</div>
</template>
<script setup lang="ts">
import { computed, onMounted, ref } from 'vue'
const props = defineProps({
ids: {
type: Array,
default: () => []
}
})
</script>
<style lang="less" scoped>
.pay {
}
</style>