2025-05-01 16:17:51 +08:00
|
|
|
<script setup>
|
2025-05-01 16:36:24 +08:00
|
|
|
import AppBackground from "@/components/AppBackground.vue";
|
2025-05-01 21:38:35 +08:00
|
|
|
import Header from "@/components/Header.vue";
|
|
|
|
|
import UserHeader from "@/components/UserHeader.vue";
|
|
|
|
|
import UserItem from "@/components/UserItem.vue";
|
2025-05-01 16:17:51 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-05-01 21:38:35 +08:00
|
|
|
<view>
|
2025-05-01 16:36:24 +08:00
|
|
|
<AppBackground />
|
2025-05-01 21:38:35 +08:00
|
|
|
<Header title="用户信息" />
|
|
|
|
|
<UserHeader />
|
|
|
|
|
<view class="container">
|
|
|
|
|
<UserItem title="用户名" />
|
|
|
|
|
<UserItem title="头像" />
|
|
|
|
|
<UserItem
|
|
|
|
|
title="订单"
|
|
|
|
|
:customStyle="{
|
|
|
|
|
marginTop: '10px',
|
|
|
|
|
}"
|
|
|
|
|
/>
|
|
|
|
|
<UserItem title="新手试炼场" />
|
|
|
|
|
<UserItem title="会员" />
|
|
|
|
|
<UserItem title="等级介绍" />
|
|
|
|
|
<UserItem
|
|
|
|
|
title="段位介绍"
|
|
|
|
|
:customStyle="{
|
|
|
|
|
marginBottom: '10px',
|
|
|
|
|
}"
|
|
|
|
|
/>
|
|
|
|
|
<button class="my-grow">
|
|
|
|
|
<image src="../static/my-grow.png" mode="widthFix" />
|
|
|
|
|
</button>
|
2025-05-01 16:17:51 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2025-05-01 21:38:35 +08:00
|
|
|
.container {
|
|
|
|
|
background-color: #e4e4e4;
|
|
|
|
|
height: calc(100vh - 161px);
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
padding-top: 10px;
|
2025-05-01 16:17:51 +08:00
|
|
|
}
|
2025-05-01 21:38:35 +08:00
|
|
|
.my-grow {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.my-grow > image {
|
2025-05-01 16:17:51 +08:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
2025-05-01 16:36:24 +08:00
|
|
|
</style>
|