This commit is contained in:
zhaofang
2022-11-04 18:30:56 +08:00
parent 74e170e7cd
commit 69398ed008
3 changed files with 42 additions and 2 deletions

39
pages/my/myQa.vue Normal file
View File

@@ -0,0 +1,39 @@
<template>
<view class="my-qa-page">
</view>
</template>
<script>
import { mapGetters } from 'vuex'
import apiStat from '@/api/phase2/stat.js';
export default {
computed: {
...mapGetters(['userInfo']),
},
data() {
return {
uCoinRecord:[],
uinfo: {
uCurrency: 0 ,// 用户累计U币
timestamp:'',
},
}
},
mounted() {
},
methods:{
}
}
</script>
<style scoped lang="scss">
.my-qa-page{
}
</style>