index.js 1.1 KB
Newer Older
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
1 2
import React from 'react';
import Select from '../../components/select';
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
3
import styles from './index.less';
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
4

duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
const Index = () => {
  const opt = {
    type:1,
    no: 1,
    total: 213,
    title:
      '脑底动脉环在脑循环中起着非常重要的作用,能沟通脑前脑、后、左、右的血液供应,下列哪条动脉不参与脑底动脉环的组成?',
    optionList: [
      {
        id:0,
        no: 'A',
        title: '前交通动脉',
      },
      {
        id:1,
        no: 'B',
        title: '矩形备份',
        isRight: true,
      },
      {
        id:2,
        no: 'C',
        title: '颈内动脉',
        isRight: true,
      },
      {
        id:3,
        no: 'D',
        title: '大脑前动脉',
      },
      {
        id:4,
        no: 'E',
        title: '大脑后动脉',
      },
    ],
    rightAnswer:"BD",
    analysis:"脑底动脉环的组成包括颈内动脉,大脑前动脉起始段,前交通动脉,大脑后动脉和后交通动脉,不包括椎动脉。"
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
43 44
  };
  return (
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
45 46 47
    <>
      <Select {...opt}/>
    </>
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
48
  );
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
49 50
};

duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
51
export default Index;