- Vue 3 + TypeScript + Pinia + SCSS - 3-tab navigation (home, booking, profile) + 11 sub-pages - HTTP client with JWT auth, request interceptors - Pinia stores: user (auth, profile, memberships), studio, booking - Utility functions: price formatting, date helpers - WeChat login helper - All pages as stubs ready for implementation
16 lines
375 B
Vue
16 lines
375 B
Vue
<template>
|
|
<view class="page">
|
|
<view class="placeholder">
|
|
<text>我的会员卡 - 待实现</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page { min-height: 100vh; background: #f5f5f5; }
|
|
.placeholder { display: flex; align-items: center; justify-content: center; height: 400rpx; color: #999; }
|
|
</style>
|