42 lines
604 B
Vue
42 lines
604 B
Vue
|
|
<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>
|