shareCard.jsx 683B

1234567891011121314151617181920212223
  1. import React from 'react'
  2. import Popup from '@/components/Popup'
  3. import Taro from '@tarojs/taro'
  4. import { Input, Button, View, Picker, Label } from '@tarojs/components'
  5. import { shareRoom } from '@/services/landlord'
  6. import { useState } from 'react'
  7. import './shareCard.less'
  8. export default (props) => {
  9. const { showCutover, onClose } = props
  10. return (
  11. <View className='c1'>
  12. <Popup show={showCutover} onClose={onClose}>
  13. <View className='card2'>
  14. <View className='text'>分享到微信</View>
  15. <View className='share'>去分享<Button openType='share' className='btn'>去分享</Button></View>
  16. </View>
  17. </Popup>
  18. </View>
  19. )
  20. }