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

const Index = () => {
  const opt = {
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
7
    type:6,
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
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 43 44 45
    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:"脑底动脉环的组成包括颈内动脉,大脑前动脉起始段,前交通动脉,大脑后动脉和后交通动脉,不包括椎动脉。"
  };
  return (
    <>
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
46
      <Written {...opt}/>
duanledexianxianxian's avatar
sync  
duanledexianxianxian committed
47 48 49 50 51
    </>
  );
};

export default Index;