积分申请

This commit is contained in:
shijingjing
2023-03-31 10:48:06 +08:00
parent 528867ac54
commit 63dd7e08f1
3 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div class="integralAdd">
</div>
</template>
<script>
export default {
name: "integralAdd",
appName: '积分申请',
data() {
return {
}
},
}
</script>
<style lang="scss" scoped>
.integralAdd {
}
</style>

View File

@@ -0,0 +1,29 @@
<template>
<div class="integralApply">
</div>
</template>
<script>
export default {
name: "integralApply",
appName: "积分申请",
data() {
return {
}
},
methods: {
},
onShow() {
},
}
</script>
<style lang="scss" scoped>
.integralApply {
}
</style>

View File

@@ -0,0 +1,27 @@
<template>
<div class="integralDetail"></div>
</template>
<script>
export default {
name: "integralDetail",
appName: "积分申请详情",
data() {
return {
}
},
methods: {
},
onLoad(o) {
}
}
</script>
<style lang="scss" scoped>
.integralDetail {
}
</style>