小程序农机手端

123456789101112131415161718
  1. import Taro from "@tarojs/taro"
  2. import { View,Image } from "@tarojs/components"
  3. import withLayout from '@/layouts'
  4. import CustomNav from "@/components/CustomNav"
  5. import './style.less'
  6. export default withLayout((props) => {
  7. return (
  8. <View className='page-index'>
  9. <View className='index-navbar'>
  10. <CustomNav title='我的银行卡' />
  11. </View>
  12. <View className='index-container bankCardBox'>
  13. 88
  14. </View>
  15. </View>
  16. )
  17. })