小程序农机手端

index.jsx 656B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import Taro from '@tarojs/taro';
  3. import { View, Image } from '@tarojs/components';
  4. import withLayout from '@/layouts'
  5. import CustomNav from '@/components/CustomNav'
  6. export default withLayout(function (props) {
  7. return (
  8. <View className='page-index'>
  9. <View className='index-navbar'>
  10. <CustomNav title='我的考勤' />
  11. </View>
  12. <View style={{ padding: '8px' }}>
  13. <Image
  14. mode='widthFix'
  15. src='https://dz-machinery.oss-cn-nanjing.aliyuncs.com/images/%E6%8E%92%E7%8F%AD%E7%A4%BA%E4%BE%8B.png'
  16. style={{ width: '100%' }}
  17. />
  18. </View>
  19. </View>
  20. );
  21. })