积分兑换

This commit is contained in:
liuye
2023-03-24 14:17:51 +08:00
parent b5747ede8a
commit d428a3d008
5 changed files with 613 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<template>
<div class="successOrder">
<AiTopFixed>
</AiTopFixed>
<!-- <AiEmpty v-else></AiEmpty> -->
</div>
</template>
<script>
import {mapState} from "vuex";
export default {
name: 'successOrder',
appName: '提交订单',
data() {
return {
}
},
computed: {
...mapState(['user']),
},
onLoad() {
},
onShow() {
document.title = '提交订单'
},
methods: {
},
onReachBottom() {
// this.current = this.current + 1
// this.getList()
},
}
</script>
<style lang="scss" scoped>
.successOrder {
min-height: 100%;
::v-deep .AiTopFixed .content {
background: #F2F2F2 !important;
padding: 24px 16px;
}
}
</style>