台球开关台小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
618 B

/**
* 门店列表页
*/
import { View, Text } from '@tarojs/components'
import { useLoad } from '@tarojs/taro'
import { observer } from 'mobx-react'
import './index.scss'
const StoreIndex = observer(() => {
useLoad(() => {
console.log('门店页面加载')
})
return (
<View className="store-page">
<View className="header">
<Text className="title"></Text>
</View>
<View className="content">
<View className="placeholder">
<Text>...</Text>
</View>
</View>
</View>
)
})
export default StoreIndex