12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import Taro from "@tarojs/taro"
- import { Icon, View } from "@tarojs/components"
- import { useEffect, useState } from "react"
- import CustomNav from '@/components/CustomNav'
- import withLayout from '@/layouts'
-
-
- import './style.less'
-
-
- export default (props) => {
- const { ico, textNext } = props
- const YES = 'https://yz-shigongli.oss-cn-shanghai.aliyuncs.com/images/RandomIIcon/YES.png'
- const No = 'https://yz-shigongli.oss-cn-shanghai.aliyuncs.com/images/RandomIIcon/No.png'
-
- const [imageOne, setImageOne] = useState(false)
- const [imageTow, setImageTow] = useState(false)
-
- const handleYES = () => {
- setImageOne(true)
- setImageTow(false)
- }
-
-
- const handleNo = () => {
- setImageOne(false)
- setImageTow(true)
- }
-
-
-
-
-
- return (
- <View >
- <View style='font-size: 20px;font-weight: bold;color: #140F0F;marginLeft:10px;;'>
- 2<text style='font-size: 13px;font-weight: bold;color: #140F0F;'> / 5 </text>你是单身吗?
- </View>
-
-
- <view className='Girl-Conste-box' onClick={handleYES} >
- <View className='Girl-box-imageContent'>
- <image className={`Girl-box-image imageTwo ${imageOne && 'Girl-imageLess'} `} src={YES} />
-
- </View>
- <view className='Girl-box-content' >
- <View className='Girl-box-C-title' >
- YES
- </View>
- <View className='Girl-box-C-moon' >
- 是
- </View>
- </view>
-
- </view>
-
- <view className='Girl-Conste-box' onClick={handleNo} >
- <View className='Girl-box-imageContent'>
- <image className={`Girl-box-image ${imageTow && 'Girl-imageLess'} `} src={No} />
- </View>
- <view className='Girl-box-content' >
- <View className='Girl-box-C-title' >
- No
- </View>
- <View className='Girl-box-C-moon' >
- 否
- </View>
- </view>
-
- </view>
-
-
-
-
- </View>
-
-
- )
- }
|