12345678910111213141516171819 |
- import React, { useState, useEffect } from 'react'
- import './index.scss'
- import '../../../../../assets/css/iconfont.css'
- import { ScrollView, Image } from '@tarojs/components'
-
- export default function Periphery (props) {
- const { Data = {} } = props
- return (
- <view className='components Periphery'>
-
- <view className='Title flex-h'>
- <view className='flex-item'>
- <text>位置及周边配套</text>
- </view>
- </view>
-
- </view>
- )
- }
|