添加新文件

This commit is contained in:
hejiangming
2025-05-07 10:09:55 +08:00
parent 007b002b81
commit 7e7a096151
776 changed files with 92603 additions and 0 deletions
@@ -0,0 +1,24 @@
<template>
<view class="mine_winning_record">
<winningRecord />
</view>
</template>
<script>
import winningRecord from '@/components/winning_record.vue';
export default {
components:{winningRecord},
data() {
return {
};
}
}
</script>
<style lang="scss" scoped>
.mine_winning_record{
padding: 30rpx;
}
</style>