1234567891011121314151617181920212223 |
- import React from 'react'
- import Popup from '@/components/Popup'
- import Taro from '@tarojs/taro'
- import { Input, Button, View, Picker, Label } from '@tarojs/components'
- import { shareRoom } from '@/services/landlord'
- import { useState } from 'react'
- import './shareCard.less'
-
-
- export default (props) => {
- const { showCutover, onClose } = props
-
- return (
- <View className='c1'>
- <Popup show={showCutover} onClose={onClose}>
- <View className='card2'>
- <View className='text'>分享到微信</View>
- <View className='share'>去分享<Button openType='share' className='btn'>去分享</Button></View>
- </View>
- </Popup>
- </View>
- )
- }
|