- 实现未登录/已登录两种状态样式 - 添加常用功能入口:我的订单、往期测评、联系我们、邀请新用户 - 添加其他功能入口:关于、用户协议、隐私政策、退出登录 - 实现退出登录二次确认弹窗 - 修复 uni.scss 中 SCSS 导入路径问题 - 整理 .gitignore 文件,移除 unpackage 构建目录
28 lines
423 B
Vue
28 lines
423 B
Vue
<script setup>
|
|
/**
|
|
* 我的订单页面
|
|
*/
|
|
</script>
|
|
|
|
<template>
|
|
<view class="order-list-page">
|
|
<view class="placeholder">我的订单页面</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.order-list-page {
|
|
min-height: 100vh;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.placeholder {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
font-size: 32rpx;
|
|
color: #999;
|
|
}
|
|
</style>
|