个人中心

This commit is contained in:
liuye
2023-02-09 10:26:20 +08:00
parent 2e22f1a494
commit 6b7fd4f9b0
6 changed files with 360 additions and 209 deletions

View File

@@ -0,0 +1,41 @@
<template>
<div class="page">
</div>
</template>
<script>
import {mapState} from 'vuex'
export default {
name: "integralInfo",
appName: "积分明细",
data() {
return {
}
},
computed: {
...mapState(['user', 'token']),
},
onLoad() {
uni.setNavigationBarTitle({
title: '积分明细'
})
uni.setNavigationBarColor({
frontColor: "#000000",
backgroundColor: "#F4F6FA",
})
},
methods: {
}
}
</script>
<style scoped lang="scss">
@import "~dvcp-wui/common";
.page {
width: 100%;
background-color: #F4F5FA;
}
</style>