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 (
{config.selectNo[index]}.{item.title} {isShowAnswer && ( )}
); }); }; return (
2/211、脑底动脉环在脑循环中起着非常重要的作用,能沟通脑前脑、后、左、右的血液供应,下列哪条动脉不参与脑底动脉环的组成?
{renderOption()}
{isShowAnswer && (
正确答案为:B
题型解析 :脑底动脉环的组成包括颈内动脉,大脑前动脉起始段,前交通动脉,大脑后动脉和后交通动脉,不包括椎动脉。
)} {!isShowAnswer && (
)}
上一题
跳转到
下一题
); }; export default Index;