import React, { useState } from 'react'; import styles from './index.less'; import config from '@/config'; import { Button } from 'antd-mobile'; import classNames from 'classNames'; const Index = ({}) => { const [isShowAnswer, setIsShowAnswer] = useState(false); const [isSelected, setIsSelected] = useState(false); const options = [ { id: 1, title: '前交通动脉', isRight: true, }, { id: 1, title: '矩形备份', isRight: true, }, { id: 1, title: '矩形备份', isRight: true, }, { id: 1, title: '矩形备份', isRight: false, }, { id: 1, title: '矩形备份', isRight: true, }, ]; const showAnswer = () => { setIsShowAnswer(true); }; const selectOption=()=>{ } const renderOption = () => { return options.map((item, index) => { return (