teachCheck.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. <template>
  2. <div id="app">
  3. <Header></Header>
  4. <WorkMaster></WorkMaster>
  5. <div class="wrap ov bodyContent">
  6. <RecomLeft></RecomLeft>
  7. <div class="main fr">
  8. <h4 ><a href="/">首页</a> > 在线检测</h4>
  9. <div class="content ov bgf pad20">
  10. <Screen></Screen>
  11. <ScreenSort></ScreenSort>
  12. <div class="ov AnchorBox">
  13. <ul class="checkList checkList2 fl">
  14. <!-- <li v-for="(item,index) in list" :id="'sub'+(index+1)">
  15. <h3>
  16. 第{{index+1}}题:
  17. <span :class="'dif dif'+item.dif">
  18. <b v-if="item.dif==1">容易</b>
  19. <b v-if="item.dif==2">较易</b>
  20. <b v-if="item.dif==3">一般</b>
  21. <b v-if="item.dif==4">较难</b>
  22. <b v-if="item.dif==5">困难</b>
  23. </span>
  24. <span class="type">{{item.type}}</span>
  25. {{item.title}}
  26. </h3>
  27. <RadioGroup vertical >
  28. <Radio v-for="(items,indexs) in item.options" :label="indexs">
  29. <span>{{items.option}} :{{items.txt}}</span>
  30. </Radio>
  31. </RadioGroup>
  32. &lt;!&ndash;<ol class="answer">&ndash;&gt;
  33. &lt;!&ndash;<li>【参考答案】:{{item.answer}}</li>&ndash;&gt;
  34. &lt;!&ndash;<li>【答题解析】:{{item.explain}}</li>&ndash;&gt;
  35. &lt;!&ndash;</ol>&ndash;&gt;
  36. </li> -->
  37. <li v-for="(item,index) in list2" :id="'sub'+(index+1)">
  38. <h3>
  39. 第{{index+1}}题:
  40. <!--<span class="dif dif1"><b>容易</b></span>-->
  41. <span :class="'dif dif'+item.dif">
  42. <b v-if="item.dif==1">容易</b>
  43. <b v-if="item.dif==2">较易</b>
  44. <b v-if="item.dif==3">一般</b>
  45. <b v-if="item.dif==4">较难</b>
  46. <b v-if="item.dif==5">困难</b>
  47. </span>
  48. <span class="type" v-if="item.Type=='Single'">单选</span>
  49. <span class="type" v-if="item.Type=='Multiple'">多选</span>
  50. <span class="type" v-if="item.Type=='Complete'">填空</span>
  51. <span class="type" v-if="item.Type=='Subjective'">主观题</span>
  52. <i v-html="item.Question"></i>
  53. </h3>
  54. <CheckboxGroup v-model="fruit" v-if="item.Type=='Multiple'">
  55. <Checkbox v-for="(items,indexs) in item.Option" >
  56. <span v-html="items.Code+' :'+items.Value"></span>
  57. </Checkbox>
  58. </CheckboxGroup>
  59. <RadioGroup vertical v-else>
  60. <Radio v-for="(items,indexs) in item.Option" :label="indexs">
  61. <span v-html="items.Code+' :'+items.Value"></span>
  62. </Radio>
  63. </RadioGroup>
  64. <!--<ol class="answer">-->
  65. <!--<li>【参考答案】:{{item.answer}}</li>-->
  66. <!--<li>【答题解析】:{{item.explain}}</li>-->
  67. <!--</ol>-->
  68. </li>
  69. </ul>
  70. <Anchor show-ink style="display: block;width:28%;float:right;">
  71. <div class="numCard" style="width: 100%">
  72. <p><Icon type="md-time" size="24" /> 剩余时间 <b>14:15</b></p>
  73. <div class="answerCard">
  74. <h5>答题卡</h5>
  75. <div class="num">
  76. <div class="ov" >
  77. <AnchorLink v-for="(item,index) in list2" :href="'#sub'+(index+1)" :title="index+1" />
  78. </div>
  79. <!--<ol>-->
  80. <!--<li class="active">1</li>-->
  81. <!--<li>2</li>-->
  82. <!--<li>3</li>-->
  83. <!--<li>4</li>-->
  84. <!--<li>5</li>-->
  85. <!--<li>6</li>-->
  86. <!--</ol>-->
  87. <p><a href="/report"><Button type="success" long>交卷并查看检测报告</Button></a></p>
  88. </div>
  89. </div>
  90. </div>
  91. </Anchor>
  92. </div>
  93. <!--<Page :total="100" size="small" show-total class="fr" />-->
  94. </div>
  95. </div>
  96. </div>
  97. <Footer></Footer>
  98. </div>
  99. </template>
  100. <script>
  101. import Header from '@/common/header.vue'
  102. import WorkMaster from '@/common/workMaster.vue'
  103. import WorkLeft from '@/common/workLeft.vue'
  104. import RecomLeft from '@/common/recomLeft.vue'
  105. import Screen from '@/common/screen.vue'
  106. import Textbook from '@/common/textbook.vue'
  107. import ScreenSort from '@/common/screenSort.vue'
  108. import Footer from '@/common/footer.vue'
  109. import ScoreList from '@/components/scoreList.vue'
  110. export default {
  111. components: {
  112. Header,
  113. WorkMaster,
  114. WorkLeft,
  115. RecomLeft,
  116. Screen,
  117. Textbook,
  118. ScreenSort,
  119. Footer,
  120. ScoreList
  121. },
  122. data ( ) {
  123. return {
  124. valueText: 5,
  125. modal1: false,
  126. formItem: {
  127. select: 'sel1',
  128. select2: 'sel2',
  129. input: '',
  130. textarea: '',
  131. },
  132. list:[
  133. {
  134. id:'1',
  135. type:'单选',
  136. dif:'1',
  137. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  138. options:[
  139. {option:'A',txt:'孙传芳'},
  140. {option:'B',txt:'吴佩孚'},
  141. {option:'C',txt:'张作霖'},
  142. {option:'D',txt:'张学良'}
  143. ],
  144. answer:'A',
  145. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  146. },
  147. {
  148. id:'1',
  149. type:'单选',
  150. dif:'1',
  151. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  152. options:[
  153. {option:'A',txt:'孙传芳'},
  154. {option:'B',txt:'吴佩孚'},
  155. {option:'C',txt:'张作霖'},
  156. {option:'D',txt:'张学良'}
  157. ],
  158. answer:'A',
  159. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  160. },
  161. {
  162. id:'1',
  163. type:'单选',
  164. dif:'2',
  165. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  166. options:[
  167. {option:'A',txt:'孙传芳'},
  168. {option:'B',txt:'吴佩孚'},
  169. {option:'C',txt:'张作霖'},
  170. {option:'D',txt:'张学良'}
  171. ],
  172. answer:'A',
  173. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  174. },
  175. {
  176. id:'1',
  177. type:'单选',
  178. dif:'3',
  179. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  180. options:[
  181. {option:'A',txt:'孙传芳'},
  182. {option:'B',txt:'吴佩孚'},
  183. {option:'C',txt:'张作霖'},
  184. {option:'D',txt:'张学良'}
  185. ],
  186. answer:'A',
  187. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  188. },
  189. {
  190. id:'1',
  191. type:'单选',
  192. dif:'4',
  193. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  194. options:[
  195. {option:'A',txt:'孙传芳'},
  196. {option:'B',txt:'吴佩孚'},
  197. {option:'C',txt:'张作霖'},
  198. {option:'D',txt:'张学良'}
  199. ],
  200. answer:'A',
  201. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  202. },
  203. {
  204. id:'1',
  205. type:'单选',
  206. dif:'5',
  207. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  208. options:[
  209. {option:'A',txt:'孙传芳'},
  210. {option:'B',txt:'吴佩孚'},
  211. {option:'C',txt:'张作霖'},
  212. {option:'D',txt:'张学良'}
  213. ],
  214. answer:'A',
  215. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  216. },
  217. ],
  218. list2:
  219. [
  220. {
  221. "$id": "1",
  222. "Question": "若代数式在实数范围内有意义,则x的取值范为是()</p><p class=\"p4\">",
  223. "dif":"1",
  224. "Option": [{
  225. "$id": "2",
  226. "Code": "A",
  227. "Value": "x&ge;-2 "
  228. }, {
  229. "$id": "3",
  230. "Code": "B",
  231. "Value": "x>-2 "
  232. }, {
  233. "$id": "4",
  234. "Code": "C",
  235. "Value": "x&ge;2 "
  236. }, {
  237. "$id": "5",
  238. "Code": "D",
  239. "Value": "x&le;2</p><p class=\"p3\">"
  240. }],
  241. "Answer": ["C"],
  242. "Explain": "</p><p class=\"p5\">二次根式有意义,被开方数是非负数,故x-2&ge;0,x大于等于2.</p><p class=\"p3\">备考指导:代数式有意义的条件,一般从三个方面考虑:</p><p class=\"p3\">(1)当表达式是整式时,可取全体实数;</p><p class=\"p3\">(2)当表达式是分式时,考虑分式的分母不能为0;</p><p class=\"p3\">(3)当表达式是二次根式时,被开方数非负.</p><p class=\"p3\">",
  243. "Type": "Single"
  244. },
  245. {
  246. "$id": "6",
  247. "Question": "下列计算正确的是()</p><p class=\"p3\">",
  248. "dif":"1",
  249. "Option": [{
  250. "$id": "7",
  251. "Code": "A",
  252. "Value": "2x2-4x2=-2 </p><p class=\"p3\">"
  253. }, {
  254. "$id": "8",
  255. "Code": "B",
  256. "Value": "3x+x=3x2 </p><p class=\"p6\">"
  257. }, {
  258. "$id": "9",
  259. "Code": "C",
  260. "Value": "3x&middot;x=<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/0.png\" style=\"width:0.29166666in;height:0.22916667in;vertical-align:text-bottom;\"> </p><p class=\"p3\">"
  261. }, {
  262. "$id": "10",
  263. "Code": "D",
  264. "Value": "4x6&divide;2x2=2x3</p><p class=\"p3\">"
  265. }],
  266. "Answer": ["C"],
  267. "Explain": "</p><p class=\"p7\">本题考查整式的基本运算,对选项进行逐项分析</p><table class=\"t1\"><tbody><tr class=\"r1\"><td class=\"td1\"><p class=\"p8\">选项</p></td><td class=\"td2\"><p class=\"p3\">逐项分析</p></td><td class=\"td3\"><p class=\"p3\">正误</p></td></tr><tr class=\"r1\"><td class=\"td1\"><p class=\"p7\">A</p></td><td class=\"td2\"><p class=\"p7\">2x2-4x2=-2x2&ne;-2</p></td><td class=\"td3\"><p class=\"p7\">&times;</p></td></tr><tr class=\"r1\"><td class=\"td1\"><p class=\"p7\">B</p></td><td class=\"td2\"><p class=\"p7\">3x+x=4x&ne;3 x2</p></td><td class=\"td3\"><p class=\"p7\">&times;</p></td></tr><tr class=\"r1\"><td class=\"td1\"><p class=\"p7\">C</p></td><td class=\"td2\"><p class=\"p7\">3x&middot;x=3 x2</p></td><td class=\"td3\"><p class=\"p7\">&radic;</p></td></tr><tr class=\"r1\"><td class=\"td1\"><p class=\"p7\">D</p></td><td class=\"td2\"><p class=\"p7\">4x6&divide;2x2=2x4&ne;2x3</p></td><td class=\"td3\"><p class=\"p7\">&times;</p></td></tr></tbody></table><p class=\"p7\">备考指导:整式加减,实质是合并同类项,只把系数相加减,字母及字母的指数不变;整式乘法,系数相乘作为积的系数,相同的字母按照同底数幂的乘法法则相乘,单独的字母(式)作为积的一个因式;整式相除,系数相除作为商的系数,相同的字母按照同底数幂的除法法则相除,被除式中单独的字母(式)作为积的一个因式.</p><p class=\"p3\">",
  268. "Type": "Single"
  269. },
  270. {
  271. "$id": "11",
  272. "Question": "如图,在直角坐标系中,有两点A(6,3)、B(6,0).以原点O为位似中心,相似比为<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/477.png\" style=\"width:0.13541667in;height:0.38472223in;vertical-align:text-bottom;\">,在第一象限内把线段AB缩小后得到线段CD,则点C的坐标为()</p><p class=\"p9\"><img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/690.png\" style=\"width:1.7395834in;height:1.2395834in;vertical-align:text-bottom;\"></p><p class=\"p7\">",
  273. "dif":"2",
  274. "Option": [{
  275. "$id": "12",
  276. "Code": "A",
  277. "Value": "(2,1) </p><p class=\"p7\">"
  278. }, {
  279. "$id": "13",
  280. "Code": "B",
  281. "Value": "(2,0) </p><p class=\"p7\">"
  282. }, {
  283. "$id": "14",
  284. "Code": "C",
  285. "Value": "(3,3) </p><p class=\"p7\">"
  286. }, {
  287. "$id": "15",
  288. "Code": "D",
  289. "Value": "(3,1)<a name=\"_GoBack\"></a><a name=\"_GoBack\"></a></p><p class=\"p3\">"
  290. }],
  291. "Answer": ["A"],
  292. "Explain": "</p><p class=\"p7\">∵线段CD和线段AB关于原点位似,&there4;△ODC∽△OBA,&there4;<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/10fd.png\" style=\"width:1.0097222in;height:0.42708334in;vertical-align:text-bottom;\">,即<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/137e.png\" style=\"width:1.0097222in;height:0.42708334in;vertical-align:text-bottom;\">,&there4;CD=1,OD=2,&there4;C(2,1).</p><p class=\"p7\">一题多解&mdash;最优解:设C(x,y),∵线段CD和线段AB关于原点位似,&there4;<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/1606.png\" style=\"width:0.71805555in;height:0.42708334in;vertical-align:text-bottom;\">,&there4;x=2,y=1,&there4;C(2,1).</p><p class=\"p7\">备考指导:每对对应点的连线所在的直线都相交于一点的相似图形叫做位似图形.位似图形对应点到位似中心的距离比等于位似比(相似比);在平面直角坐标系中,如果位似图形是以原点为位似中心,那么位似图形对应点的坐标比等于相似比.</p><p class=\"p3\">",
  293. "Type": "Single"
  294. },
  295. {
  296. "$id": "16",
  297. "Question": "在反比例函数<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/188b.png\" style=\"width:0.63472223in;height:0.38541666in;vertical-align:text-bottom;\">图象上有两点A(x1,y1)、B(x2,y2),x1<0<y1,y1<y2,则m的取值范围是()</p><p class=\"p7\">",
  298. "dif":"3",
  299. "Option": [{
  300. "$id": "17",
  301. "Code": "A",
  302. "Value": "m><img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/1b05.png\" style=\"width:0.13541667in;height:0.38472223in;vertical-align:text-bottom;\"> "
  303. }, {
  304. "$id": "18",
  305. "Code": "B",
  306. "Value": "m<<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/1d1f.png\" style=\"width:0.13541667in;height:0.38472223in;vertical-align:text-bottom;\"> "
  307. }, {
  308. "$id": "19",
  309. "Code": "C",
  310. "Value": "m&ge;<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/1f39.png\" style=\"width:0.13541667in;height:0.38472223in;vertical-align:text-bottom;\"> "
  311. }, {
  312. "$id": "20",
  313. "Code": "D",
  314. "Value": "m&le;<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/2153.png\" style=\"width:0.13541667in;height:0.38472223in;vertical-align:text-bottom;\"></p><p class=\"p3\">"
  315. }],
  316. "Answer": ["D"],
  317. "Explain": "</p><p class=\"p10\">x1<0<x2时,y1<y2,说明反比例函数图像位于一三象限,故1-3m>0,所以m&le;<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/236f.png\" style=\"width:0.15555556in;height:0.42708334in;vertical-align:text-bottom;\">.</p><p class=\"p7\">易错警示:对于x1<0<x2时,y1<y2,部分同学容易误认为y随x增大而增大,故错误得出1-3m<0.考虑反比例函数增减性要在同一个分支上,x1<0<x2说明点A、B不在同一个分支上,故不能利用增减性来解答.备考指导:①反比例函数<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/258f.png\" style=\"width:0.6145833in;height:0.42708334in;vertical-align:text-bottom;\">为常数,且<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/27f6.png\" style=\"width:0.45833334in;height:0.21805556in;vertical-align:text-bottom;\">的图像是双曲线,当<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/2a31.png\" style=\"width:0.375in;height:0.19791667in;vertical-align:text-bottom;\">时,双曲线的两支分别位于第一、第三象限,在每个象限内y值随x值的增大而减小;当<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/2c65.png\" style=\"width:0.125in;height:0.23958333in;vertical-align:text-bottom;\"><img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/2de9.png\" style=\"width:0.375in;height:0.19791667in;vertical-align:text-bottom;\">时,双曲线的两支分别位于第二、第四象限,在每个象限内y值随x值的增大而增大.②两个点若在双曲线同一分支上,则两点纵坐标符号相同,横坐标符号相同,两个点若不在双曲线同一分支上,则两点纵坐标符号相反,横坐标符号相反.</p><p class=\"p3\">",
  318. "Type": "Single"
  319. },
  320. {
  321. "$id": "21",
  322. "Question": "如图,△ABC、△EFG均是边长为2的等边三角形,点D是边BC、EF的中点,直线AG、FC相交于点M.当△EFG绕点D旋转时,线段BM长的最小值是()</p><p class=\"p9\"><img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/301d.png\" style=\"width:1.875in;height:1.8541666in;vertical-align:text-bottom;\"></p><p class=\"p7\">",
  323. "dif":"3",
  324. "Option": [{
  325. "$id": "22",
  326. "Code": "A",
  327. "Value": "<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/5328.png\" style=\"width:0.41597223in;height:0.23958333in;vertical-align:text-bottom;\"> </p><p class=\"p7\">"
  328. }, {
  329. "$id": "23",
  330. "Code": "B",
  331. "Value": "<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/5594.png\" style=\"width:0.38472223in;height:0.23958333in;vertical-align:text-bottom;\"> </p><p class=\"p7\">"
  332. }, {
  333. "$id": "24",
  334. "Code": "C",
  335. "Value": "<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/5805.png\" style=\"width:0.23958333in;height:0.21805556in;vertical-align:text-bottom;\"> </p><p class=\"p7\">"
  336. }, {
  337. "$id": "25",
  338. "Code": "D",
  339. "Value": "<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/5a3e.png\" style=\"width:0.38472223in;height:0.23958333in;vertical-align:text-bottom;\"></p><p class=\"p3\">"
  340. }],
  341. "Answer": ["D"],
  342. "Explain": "</p><p class=\"p11\">先考虑让△EFG和△BCA重合,然后把△EFG绕点D顺时针旋转,连结AG、DG,根据旋转角相等,旋转前后的对应线段相等,容易发现&ang;ADG=&ang;FDC,DA=DG,DF=DC,故&ang;DFC=&ang;DCF=&ang;DAG=&ang;DGA.又根据等腰三角形的&ldquo;三线合一&rdquo;可知&ang;FDG=90&deg;,所以&ang;DFG+&ang;DGF=90&deg;,即&ang;DFC+&ang;CFG+&ang;DGF=90&deg;. 所以&ang;AMC=&ang;MGF+&ang;CFG=&ang;AGD+&ang;DGF+&ang;CFG=&ang;DFC +&ang;DGF+&ang;CFG =90&deg;.故点M始终在以AC为直径的圆上,作出该圆,设圆心为O,连结BO与⊙O相交于点P,线段BP的长即为线段BM长的最小值.BP=AO-OP=<img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/5caf.png\" style=\"width:0.25in;height:0.25in;vertical-align:text-bottom;\">-1,故选D.</p><p class=\"p6\">【难点突破】本题发现点M始终在以AC为直径的圆上是解题的重要突破口.考虑让△EFG和△BCA重合,然后把△EFG绕点D顺时针旋转,借助旋转的性质找出解题思路是分析有关旋转问题的重要方法.</p><p class=\"p12\"></p><p class=\"p13\"><img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/5fe7.png\" style=\"width:2.0729167in;height:1.9270834in;vertical-align:text-bottom;\"></p><p class=\"p3\">",
  343. "Type": "Single"
  344. },
  345. {
  346. "$id": "26",
  347. "Question": "在实数-3、0、5、3中,正数有是()</p><p class=\"p7\">",
  348. "dif":"3",
  349. "Option": [{
  350. "$id": "27",
  351. "Code": "A",
  352. "Value": "3 "
  353. }, {
  354. "$id": "28",
  355. "Code": "B",
  356. "Value": "-3 "
  357. }, {
  358. "$id": "29",
  359. "Code": "C",
  360. "Value": "5 "
  361. }, {
  362. "$id": "30",
  363. "Code": "D",
  364. "Value": "0</p><p class=\"p3\">"
  365. }],
  366. "Answer": ["A", "C"],
  367. "Explain": "</p><p class=\"p14\">无</p><p class=\"p6\">",
  368. "Type": "Multiple"
  369. },
  370. {
  371. "$id": "31",
  372. "Question": "若代数式在实数范围内有意义,则x的取值范为是()</p><p class=\"p7\">",
  373. "dif":"1",
  374. "Option": [{
  375. "$id": "32",
  376. "Code": "A",
  377. "Value": "x&ge;-2 "
  378. }, {
  379. "$id": "33",
  380. "Code": "B",
  381. "Value": "x>-2 "
  382. }, {
  383. "$id": "34",
  384. "Code": "C",
  385. "Value": "x&ge;2 "
  386. }, {
  387. "$id": "35",
  388. "Code": "D",
  389. "Value": "x&ge;4</p><p class=\"p3\">"
  390. }],
  391. "Answer": ["C", "D"],
  392. "Explain": "</p><p class=\"p7\">备考指导:代数式有意义的条件,一般从三个方面考虑:</p><p class=\"p7\">(1)当表达式是整式时,可取全体实数;</p><p class=\"p7\">(2)当表达式是分式时,考虑分式的分母不能为0;</p><p class=\"p7\">(3)当表达式是二次根式时,被开方数非负.</p><p class=\"p3\">",
  393. "Type": "Multiple"
  394. },
  395. {
  396. "$id": "36",
  397. "Question": "下面的折线图描述了某地某日的气温变化情况,根据图中信息,下列说法正确的是()</p><p class=\"p15\"><img src=\"https://teammodelstorage.blob.core.chinacloudapi.cn/teammodelosevaluation/20190521/1130766061831061504/static/7c32.png\" style=\"width:5.146528in;height:2.0625in;vertical-align:text-bottom;\"></p><p class=\"p7\">",
  398. "dif":"4",
  399. "Option": [{
  400. "$id": "37",
  401. "Code": "A",
  402. "Value": "4:00气温最低 </p><p class=\"p7\">"
  403. }, {
  404. "$id": "38",
  405. "Code": "B",
  406. "Value": "6:00气温为24℃ </p><p class=\"p7\">"
  407. }, {
  408. "$id": "39",
  409. "Code": "C",
  410. "Value": "14:00气温最高 </p><p class=\"p7\">"
  411. }, {
  412. "$id": "40",
  413. "Code": "D",
  414. "Value": "气温是30℃的为16:00</p><p class=\"p3\">"
  415. }],
  416. "Answer": ["A", "B", "C"],
  417. "Explain": "</p><p class=\"p7\">从图像可以看出最低点对应点时间是4:00时,即4:00时温度最低,故A正确;6:00对应的温度为24℃,故B正确;图形最高点对应14:00时,即14:00时温度最高,故C正确;气温是30℃时对应两个时间12:00时和16时,故D错误.</p><p class=\"p7\">备考指导:解决此类问题的时,要注意结合函数图像和题意弄清横轴、纵轴的实际意义,以及图像上特殊点的实际意义.此类问题一般的解答方式是根据一个坐标找到对应图像上的点,再确定这个点的另一个坐标;图像的最高(低)点对应函数最大(小)值.</p><p class=\"p3\">",
  418. "Type": "Multiple"
  419. },
  420. {
  421. "$id": "41",
  422. "Question": "在实数-3、0、5、3中,最小的实数是-3()</p><p class=\"p7\">",
  423. "dif":"3",
  424. "Option": [{
  425. "$id": "42",
  426. "Code": "A",
  427. "Value": "对 "
  428. }, {
  429. "$id": "43",
  430. "Code": "B",
  431. "Value": "错</p><p class=\"p3\">"
  432. }],
  433. "Answer": ["A"],
  434. "Explain": "</p><p class=\"p7\">有理数中,负数小于0,零小于正数,所以最小的是-3.</p><p class=\"p7\">备考指导:有理数大小比较的一般方法:①正数都大于0,负数都小于0,正数大于一切负数,两个负数绝对值大的反而小;②在数轴上表示的数,右边的总比左边的大.</p><p class=\"p6\">",
  435. "Type": "Judge"
  436. },
  437. {
  438. "$id": "44",
  439. "Question": "把a2-2a分解因式为a(a+2)。 ( )</p><p class=\"p7\">",
  440. "dif":"1",
  441. "Option": [{
  442. "$id": "45",
  443. "Code": "A",
  444. "Value": "对 "
  445. }, {
  446. "$id": "46",
  447. "Code": "B",
  448. "Value": "错</p><p class=\"p3\">"
  449. }],
  450. "Answer": ["B"],
  451. "Explain": "</p><p class=\"p7\">考查提取公因式法分解因式.原式=a(a-2).</p><p class=\"p7\">备考指导:因式分解的一般步骤:若有公因式,先提公因式;然后再考虑用公式法或其它方法分解;直到每个因式都不能再分解为止.</p><p class=\"p3\">",
  452. "Type": "Judge"
  453. },
  454. {
  455. "$id": "47",
  456. "Question": "一组数据3、8、12、17、40的中位数为12。()</p><p class=\"p7\">",
  457. "dif":"1",
  458. "Option": [{
  459. "$id": "48",
  460. "Code": "A",
  461. "Value": "对 "
  462. }, {
  463. "$id": "49",
  464. "Code": "B",
  465. "Value": "错</p><p class=\"p3\">"
  466. }],
  467. "Answer": ["A"],
  468. "Explain": "</p><p class=\"p7\">本题共5个数据,已经从小到大排列好,第3个数据12就是这组数据的中位数.</p><p class=\"p7\">备考指导:找中位数要把数据按从小到大的顺序排列,位于最中间的一个数(或两个数的平均数)为中位数,当数据个数为奇数时,即为中间的一个,当数据个数为偶数时,中位数就是中间两个数的平均数.</p><p class=\"p3\">",
  469. "Type": "Judge"
  470. },
  471. {
  472. "$id": "50",
  473. "Question": "火星白天的最高温度可达28℃,而夜间温度可降到-132℃,那么火星的昼夜温度相差<underline data=\"1\"><u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</u></underline>℃.</p><p class=\"p3\">",
  474. "dif":"1",
  475. "Option": [],
  476. "Answer": ["160"],
  477. "Explain": "</p><p class=\"p7\">解:根据题意列式得:28-(-132)=160℃.</p><p class=\"p3\">",
  478. "Type": "Complete"
  479. },
  480. {
  481. "$id": "51",
  482. "Question": "沙河水库的水文资料记载,最高水位:43.5米,警戒水位:42.8米,平均水位:40.0米,最低水位:36.4,下表是该水库内水位变化情况记录(上周末的水位达到警戒水位)表中&ldquo;+&ldquo;表示比前一天水位上升.</p><table class=\"t1\"><tbody><tr class=\"r1\"><td class=\"td4\"><p class=\"p16\">星期</p></td><td class=\"td5\"><p class=\"p16\">一</p></td><td class=\"td5\"><p class=\"p16\">二</p></td><td class=\"td5\"><p class=\"p16\">三</p></td><td class=\"td5\"><p class=\"p16\">四</p></td><td class=\"td5\"><p class=\"p16\">五</p></td><td class=\"td5\"><p class=\"p16\">六</p></td><td class=\"td5\"><p class=\"p16\">日</p></td></tr><tr class=\"r1\"><td class=\"td4\"><p class=\"p16\">水位变化/米</p></td><td class=\"td5\"><p class=\"p16\">-0.11</p></td><td class=\"td5\"><p class=\"p16\">+0.25</p></td><td class=\"td5\"><p class=\"p16\">-0.12</p></td><td class=\"td5\"><p class=\"p16\">-0.08</p></td><td class=\"td5\"><p class=\"p16\">-0.21</p></td><td class=\"td5\"><p class=\"p16\">+0.15</p></td><td class=\"td5\"><p class=\"p16\">+0.12</p></td></tr></tbody></table><p class=\"p17\">本周星期<underline data=\"1\"><u>&nbsp;&nbsp;</u></underline>水位最高,与警戒水位的距离是<underline data=\"2\"><u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</u></underline>米;最低水位是星期<underline data=\"3\"><u>&nbsp;&nbsp;</u></underline>,与警戒水位的距离是<underline data=\"4\"><u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</u></underline>米;最高水位与最低水位相差<underline data=\"5\"><u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</u></underline>米,与上周末水位相比,本周末的水位升降情况是<underline data=\"6\"><u>&nbsp;&nbsp;&nbsp;&nbsp;</u></underline>. </p><p class=\"p3\">",
  483. "dif":"5",
  484. "Option": [],
  485. "Answer": ["二", "0.14", "五", "0.27", "0.41", "不变"],
  486. "Explain": "</p><p class=\"p3\">解:星期一水位:42.8-0.11=42.69米,<br>星期二水位:42.69+0.25=42.94米,<br>星期三水位:42.94-0.12=42.82米,<br>星期四水位:42.82-0.08=42.74米,<br>星期五水位:42.74-0.21=42.53米,<br>星期六水位:42.53+0.15=42.68米,<br>星期日水位:42.68+0.12=42.80米,<br>所以,本周星期二水位最高,与警戒水位的距离是0.14米;<br>最低水位是星期五,与警戒水位的距离是0.27米;<br>最高水位与最低水位相差0.41米,<br>与上周末水位相比,本周末的水位升降情况是不变.<br>故答案为:二,0.14;五,0.27;0.41;不变.</p><p class=\"p3\">",
  487. "Type": "Complete"
  488. },
  489. {
  490. "$id": "52",
  491. "Question": "阜宁县各中小学校在新学年强势推进&ldquo;双语阅读&rdquo;工作.某校图书馆平均每天借书90册,如果某天借书95册,就记作+5;如果某天借书88册,就记作-2.上星期图书馆借出图书记录如下表:</p><table class=\"t1\"><tbody><tr class=\"r1\"><td class=\"td6\"><p class=\"p16\">星期一</p></td><td class=\"td7\"><p class=\"p16\">星期二</p></td><td class=\"td8\"><p class=\"p16\">星期三</p></td><td class=\"td8\"><p class=\"p16\">星期四</p></td><td class=\"td8\"><p class=\"p16\">星期五</p></td></tr><tr class=\"r1\"><td class=\"td6\"><p class=\"p16\">0</p></td><td class=\"td7\"><p class=\"p16\">+7</p></td><td class=\"td8\"><p class=\"p16\">+9</p></td><td class=\"td8\"><p class=\"p16\">-6</p></td><td class=\"td8\"><p class=\"p16\">-5</p></td></tr></tbody></table><p class=\"p18\">(1)上星期五借出图书是多少册?<br>(2)上星期二比上星期五多借出图书多少册?<br>(3)上星期平均每天借出图书多少册?</p><p class=\"p3\">",
  492. "dif":"5",
  493. "Option": [],
  494. "Answer": ["解:(1)根据题意可得:借出书比90多就记为&ldquo;+&rdquo;,比90本少就记为&ldquo;-&rdquo;;则上星期五借出图书是90-5=85册;<br>(2)∵上星期二借出图书为90+7=97(册),上星期五借出图书为90-5=85(册),<br>&there4;上星期二比上星期五多借出图书为97-85=12册.<br>(3)∵上星期一共借出图书(90+0)+(90+7)+(90+9)+(90-6)+(90-5)=455(册),<br>&there4;平均借出图书为91册.</p><p class=\"p3\">"],
  495. "Explain": "</p><p class=\"p14\">无</p><p class=\"p6\">",
  496. "Type": "Subjective"
  497. }]
  498. }
  499. },
  500. methods: {
  501. ok ( ) {
  502. this.$Message.info('发布成功');
  503. },
  504. // cancel ( ) {
  505. // this.$Message.info('');
  506. // }
  507. yes ( ) {
  508. this.modal1 = false;
  509. this.$Message.success('发布成功');
  510. },
  511. cancel ( ) {
  512. this.modal1 = false;
  513. }
  514. }
  515. }
  516. </script>