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
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
|
|
|