【小程序】个人设置页面

This commit is contained in:
洪树泽 2022-09-08 17:59:05 +08:00
parent 394793710d
commit db84c5bed5
2 changed files with 37 additions and 1 deletions

View File

@ -41,7 +41,13 @@
"style": {
"navigationBarTitleText": "详情"
}
},
},
{
"path": "pages/user_set/user_set",
"style": {
"navigationBarTitleText": "个人设置"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",

View File

@ -0,0 +1,30 @@
<template>
<view class="user-set">
个人设置页面
</view>
</template>
<script setup lang="ts">
import { getDecorate } from '@/api/shop'
import { useUserStore } from '@/stores/user'
import { onShow } from '@dcloudio/uni-app'
import { storeToRefs } from 'pinia'
import { reactive } from 'vue'
const state = reactive<{
pages: any[]
}>({
pages: []
})
const getData = async () => {
const data = await getDecorate({ id: 2 })
state.pages = JSON.parse(data.pages)
}
const userStore = useUserStore()
const { userInfo, isLogin } = storeToRefs(userStore)
onShow(() => {
userStore.getUser()
})
getData()
</script>
<style></style>