This commit is contained in:
jeremygan2021
2026-02-11 01:31:21 +08:00
parent 61afc52ac2
commit 2d090cd0f4
97 changed files with 3661 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
export default definePageConfig({
navigationBarTitleText: '购物车'
})

View File

@@ -0,0 +1,8 @@
.page-container {
min-height: 100vh;
background-color: #f7f8fa;
display: flex;
justify-content: center;
align-items: center;
}
.empty { color: #999; font-size: 16px; }

View File

@@ -0,0 +1,12 @@
import { View, Text } from '@tarojs/components'
import './cart.scss'
export default function Cart() {
return (
<View className='page-container'>
<View className='empty'>
<Text>线</Text>
</View>
</View>
)
}