統計報表,批次報名

This commit is contained in:
2026-06-02 17:50:55 +08:00
parent 5abdad74bb
commit 8affaaf344
9 changed files with 408 additions and 51 deletions
+35
View File
@@ -0,0 +1,35 @@
<template>
<v-card>
<v-card-title class="bg-primary white--text text-center">
<h4>批次報名</h4>
<div class="ms-auto">
<v-btn @click.prevent="batchSave()">儲存</v-btn>
<v-btn @click.prevent="back01()">返回</v-btn>
</div>
</v-card-title>
</v-card>
</template>
<script>
module.exports = {
props: {
num: {
type: Number
}
},
data() {
return {
}
},
methods: {
batchSave() {
},
back01() {
}
}
}
</script>
<style>
</style>