123456789101112131415161718 |
- import Taro from "@tarojs/taro"
- import { View,Image } from "@tarojs/components"
- import withLayout from '@/layouts'
- import CustomNav from "@/components/CustomNav"
- import './style.less'
-
- export default withLayout((props) => {
- return (
- <View className='page-index'>
- <View className='index-navbar'>
- <CustomNav title='我的银行卡' />
- </View>
- <View className='index-container bankCardBox'>
- 88
- </View>
- </View>
- )
- })
|