继续完善页面布局

This commit is contained in:
2026-01-27 20:02:57 +08:00
parent f1ee5b340c
commit 289d371630
27 changed files with 1761 additions and 3688 deletions

View File

@@ -0,0 +1,20 @@
<template>
<view class="footer">
<text class="footer-text">商城后台 © {{ year }}</text>
</view>
</template>
<script setup lang="uts">
const year = new Date().getFullYear()
</script>
<style>
.footer{
height: 44px;
display:flex;
align-items:center;
justify-content:center;
color:#9ca3af;
}
.footer-text{ font-size:12px; }
</style>