Files
dvcp_v2_wechat_app/src/project/qujing/AppMine/integralInfo.vue

42 lines
604 B
Vue
Raw Normal View History

2023-02-09 10:26:20 +08:00
<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>