teachTaskDetail.vue 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  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. <h3 class="tc" style="font-size: 20px; background: #eee;padding:10px 0;margin:10px 0;">第四单元——章节练习</h3>
  11. <!--<Screen></Screen>-->
  12. <!--<ScreenSort></ScreenSort>-->
  13. <div class="ov AnchorBox">
  14. <ul class="checkList">
  15. <!-- <li v-for="(item,index) in list" :id="'sub'+(index+1)">
  16. <h3>
  17. 第{{index+1}}题:
  18. <span :class="'dif dif'+item.dif">
  19. <b v-if="item.dif==1">容易</b>
  20. <b v-if="item.dif==2">较易</b>
  21. <b v-if="item.dif==3">一般</b>
  22. <b v-if="item.dif==4">较难</b>
  23. <b v-if="item.dif==5">困难</b>
  24. </span>
  25. <span class="type">{{item.type}}</span>
  26. {{item.title}}
  27. </h3>
  28. <RadioGroup vertical >
  29. <Radio v-for="(items,indexs) in item.options" :label="indexs">
  30. <span>{{items.option}} :{{items.txt}}</span>
  31. </Radio>
  32. </RadioGroup>
  33. &lt;!&ndash;<ol class="answer">&ndash;&gt;
  34. &lt;!&ndash;<li>【参考答案】:{{item.answer}}</li>&ndash;&gt;
  35. &lt;!&ndash;<li>【答题解析】:{{item.explain}}</li>&ndash;&gt;
  36. &lt;!&ndash;</ol>&ndash;&gt;
  37. </li> -->
  38. <li v-for="(item,index) in list2" :id="'sub'+(index+1)">
  39. <h3>
  40. 第{{index+1}}题:
  41. <!--<span class="dif dif1"><b>容易</b></span>-->
  42. <span :class="'dif dif'+item.dif">
  43. <b v-if="item.dif==1">容易</b>
  44. <b v-if="item.dif==2">较易</b>
  45. <b v-if="item.dif==3">一般</b>
  46. <b v-if="item.dif==4">较难</b>
  47. <b v-if="item.dif==5">困难</b>
  48. </span>
  49. <span class="type" v-if="item.Type=='Single'">单选题</span>
  50. <span class="type" v-if="item.Type=='Multiple'">多选题</span>
  51. <span class="type" v-if="item.Type=='Complete'">填空题</span>
  52. <span class="type" v-if="item.Type=='Subjective'">主观题</span>
  53. <span class="type" v-if="item.Type=='Judge'">判断题</span>
  54. <i v-html="item.Question"></i>
  55. </h3>
  56. <CheckboxGroup v-model="fruit" v-if="item.Type=='Multiple'">
  57. <Checkbox v-for="(items,indexs) in item.Option" >
  58. <span v-html="items.Code+' :'+items.Value"></span>
  59. </Checkbox>
  60. </CheckboxGroup>
  61. <RadioGroup vertical v-else>
  62. <Radio v-for="(items,indexs) in item.Option" :label="indexs">
  63. <span v-html="items.Code+' :'+items.Value"></span>
  64. </Radio>
  65. </RadioGroup>
  66. <Collapse v-model="value2" accordion simple>
  67. <Panel name="1">
  68. <p style="color:#19be6b;"><i style="display: inline-block;width: 4px;height:20px;border-radius: 5px;background: #19be6b;float:left;margin-right: 10px;margin-top:8px;"></i>查看答案</p>
  69. <p slot="content" v-for="items in item.Answer"><span>{{items}}</span></p>
  70. </Panel>
  71. <Panel name="2">
  72. <p style="color:#26c6da;"><i style="display: inline-block;width: 4px;height:20px;border-radius: 5px;background: #26c6da;float:left;margin-right: 10px;margin-top:8px;"></i>查看解析</p>
  73. <p slot="content" v-html="item.Explain"></p>
  74. </Panel>
  75. </Collapse>
  76. <!--<ol class="answer">-->
  77. <!--<li>【参考答案】:<span v-html="item.Answer"></span></li>-->
  78. <!--<li>【答题解析】:<span v-html="item.Explain"></span></li>-->
  79. <!--</ol>-->
  80. </li>
  81. </ul>
  82. <!--<Anchor show-ink style="display: block;width:28%;float:right;">-->
  83. <!--<div class="numCard" style="width: 100%">-->
  84. <!--<p><Icon type="md-time" size="24" /> 剩余时间 <b>14:15</b></p>-->
  85. <!--<div class="answerCard">-->
  86. <!--<h5>答题卡</h5>-->
  87. <!--<div class="num">-->
  88. <!--<div class="ov" >-->
  89. <!--<AnchorLink v-for="(item,index) in list2" :href="'#sub'+(index+1)" :title="index+1" />-->
  90. <!--</div>-->
  91. <!--&lt;!&ndash;<ol>&ndash;&gt;-->
  92. <!--&lt;!&ndash;<li class="active">1</li>&ndash;&gt;-->
  93. <!--&lt;!&ndash;<li>2</li>&ndash;&gt;-->
  94. <!--&lt;!&ndash;<li>3</li>&ndash;&gt;-->
  95. <!--&lt;!&ndash;<li>4</li>&ndash;&gt;-->
  96. <!--&lt;!&ndash;<li>5</li>&ndash;&gt;-->
  97. <!--&lt;!&ndash;<li>6</li>&ndash;&gt;-->
  98. <!--&lt;!&ndash;</ol>&ndash;&gt;-->
  99. <!--<p><a href="/report"><Button type="success" long>交卷</Button></a></p>-->
  100. <!--</div>-->
  101. <!--</div>-->
  102. <!--</div>-->
  103. <!--</Anchor>-->
  104. </div>
  105. <!--<Page :total="100" size="small" show-total class="fr" />-->
  106. </div>
  107. </div>
  108. </div>
  109. <Footer></Footer>
  110. </div>
  111. </template>
  112. <script>
  113. import Header from '@/common/header.vue'
  114. import WorkMaster from '@/common/workMaster.vue'
  115. import WorkLeft from '@/common/workLeft.vue'
  116. import RecomLeft from '@/common/recomLeft.vue'
  117. import Screen from '@/common/screen.vue'
  118. import Textbook from '@/common/textbook.vue'
  119. import ScreenSort from '@/common/screenSort.vue'
  120. import Footer from '@/common/footer.vue'
  121. import ScoreList from '@/components/scoreList.vue'
  122. export default {
  123. components: {
  124. Header,
  125. WorkMaster,
  126. WorkLeft,
  127. RecomLeft,
  128. Screen,
  129. Textbook,
  130. ScreenSort,
  131. Footer,
  132. ScoreList
  133. },
  134. data ( ) {
  135. return {
  136. valueText: 5,
  137. modal1: false,
  138. formItem: {
  139. select: 'sel1',
  140. select2: 'sel2',
  141. input: '',
  142. textarea: '',
  143. },
  144. list:[
  145. {
  146. id:'1',
  147. type:'单选',
  148. dif:'1',
  149. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  150. options:[
  151. {option:'A',txt:'孙传芳'},
  152. {option:'B',txt:'吴佩孚'},
  153. {option:'C',txt:'张作霖'},
  154. {option:'D',txt:'张学良'}
  155. ],
  156. answer:'A',
  157. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  158. },
  159. {
  160. id:'1',
  161. type:'单选',
  162. dif:'1',
  163. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  164. options:[
  165. {option:'A',txt:'孙传芳'},
  166. {option:'B',txt:'吴佩孚'},
  167. {option:'C',txt:'张作霖'},
  168. {option:'D',txt:'张学良'}
  169. ],
  170. answer:'A',
  171. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  172. },
  173. {
  174. id:'1',
  175. type:'单选',
  176. dif:'2',
  177. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  178. options:[
  179. {option:'A',txt:'孙传芳'},
  180. {option:'B',txt:'吴佩孚'},
  181. {option:'C',txt:'张作霖'},
  182. {option:'D',txt:'张学良'}
  183. ],
  184. answer:'A',
  185. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  186. },
  187. {
  188. id:'1',
  189. type:'单选',
  190. dif:'3',
  191. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  192. options:[
  193. {option:'A',txt:'孙传芳'},
  194. {option:'B',txt:'吴佩孚'},
  195. {option:'C',txt:'张作霖'},
  196. {option:'D',txt:'张学良'}
  197. ],
  198. answer:'A',
  199. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  200. },
  201. {
  202. id:'1',
  203. type:'单选',
  204. dif:'4',
  205. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  206. options:[
  207. {option:'A',txt:'孙传芳'},
  208. {option:'B',txt:'吴佩孚'},
  209. {option:'C',txt:'张作霖'},
  210. {option:'D',txt:'张学良'}
  211. ],
  212. answer:'A',
  213. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  214. },
  215. {
  216. id:'1',
  217. type:'单选',
  218. dif:'5',
  219. title:'1928年12月,在东北宣布"服从南京国民政府,改易旗帜"的是 ( )',
  220. options:[
  221. {option:'A',txt:'孙传芳'},
  222. {option:'B',txt:'吴佩孚'},
  223. {option:'C',txt:'张作霖'},
  224. {option:'D',txt:'张学良'}
  225. ],
  226. answer:'A',
  227. explain:'题考查的是标志着近代以来中国争取民族独立和人民解放的历史任务基本完成的事件。人民民主专政的新中国的创建,标志着近代以来中国面临的争取民族独立、人民解放这个历史任务的基本完成,这就为中国人民集中力量进行建设,以实现国家的繁荣富强和人民的共同富裕,创造了前提,开辟了道路。'
  228. },
  229. ],
  230. list2:
  231. [
  232. {
  233. "$id": "21",
  234. "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\">",
  235. "dif":"3",
  236. "Option": [{
  237. "$id": "22",
  238. "Code": "A",
  239. "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\">"
  240. }, {
  241. "$id": "23",
  242. "Code": "B",
  243. "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\">"
  244. }, {
  245. "$id": "24",
  246. "Code": "C",
  247. "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\">"
  248. }, {
  249. "$id": "25",
  250. "Code": "D",
  251. "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\">"
  252. }],
  253. "Answer": ["D"],
  254. "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\">",
  255. "Type": "Single"
  256. },
  257. {
  258. "$id": "47",
  259. "Question": "一组数据3、8、12、17、40的中位数为12。()</p><p class=\"p7\">",
  260. "dif":"1",
  261. "Option": [{
  262. "$id": "48",
  263. "Code": "A",
  264. "Value": "对 "
  265. }, {
  266. "$id": "49",
  267. "Code": "B",
  268. "Value": "错</p><p class=\"p3\">"
  269. }],
  270. "Answer": ["A"],
  271. "Explain": "</p><p class=\"p7\">本题共5个数据,已经从小到大排列好,第3个数据12就是这组数据的中位数.</p><p class=\"p7\">备考指导:找中位数要把数据按从小到大的顺序排列,位于最中间的一个数(或两个数的平均数)为中位数,当数据个数为奇数时,即为中间的一个,当数据个数为偶数时,中位数就是中间两个数的平均数.</p><p class=\"p3\">",
  272. "Type": "Judge"
  273. },
  274. {
  275. "$id": "1",
  276. "Question": "若代数式在实数范围内有意义,则x的取值范为是()</p><p class=\"p4\">",
  277. "dif":"1",
  278. "Option": [{
  279. "$id": "2",
  280. "Code": "A",
  281. "Value": "x&ge;-2 "
  282. }, {
  283. "$id": "3",
  284. "Code": "B",
  285. "Value": "x>-2 "
  286. }, {
  287. "$id": "4",
  288. "Code": "C",
  289. "Value": "x&ge;2 "
  290. }, {
  291. "$id": "5",
  292. "Code": "D",
  293. "Value": "x&le;2</p><p class=\"p3\">"
  294. }],
  295. "Answer": ["C"],
  296. "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\">",
  297. "Type": "Single"
  298. },
  299. {
  300. "$id": "6",
  301. "Question": "下列计算正确的是()</p><p class=\"p3\">",
  302. "dif":"1",
  303. "Option": [{
  304. "$id": "7",
  305. "Code": "A",
  306. "Value": "2x2-4x2=-2 </p><p class=\"p3\">"
  307. }, {
  308. "$id": "8",
  309. "Code": "B",
  310. "Value": "3x+x=3x2 </p><p class=\"p6\">"
  311. }, {
  312. "$id": "9",
  313. "Code": "C",
  314. "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\">"
  315. }, {
  316. "$id": "10",
  317. "Code": "D",
  318. "Value": "4x6&divide;2x2=2x3</p><p class=\"p3\">"
  319. }],
  320. "Answer": ["C"],
  321. "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\">",
  322. "Type": "Single"
  323. },
  324. {
  325. "$id": "11",
  326. "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\">",
  327. "dif":"2",
  328. "Option": [{
  329. "$id": "12",
  330. "Code": "A",
  331. "Value": "(2,1) </p><p class=\"p7\">"
  332. }, {
  333. "$id": "13",
  334. "Code": "B",
  335. "Value": "(2,0) </p><p class=\"p7\">"
  336. }, {
  337. "$id": "14",
  338. "Code": "C",
  339. "Value": "(3,3) </p><p class=\"p7\">"
  340. }, {
  341. "$id": "15",
  342. "Code": "D",
  343. "Value": "(3,1)<a name=\"_GoBack\"></a><a name=\"_GoBack\"></a></p><p class=\"p3\">"
  344. }],
  345. "Answer": ["A"],
  346. "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\">",
  347. "Type": "Single"
  348. },
  349. {
  350. "$id": "16",
  351. "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\">",
  352. "dif":"3",
  353. "Option": [{
  354. "$id": "17",
  355. "Code": "A",
  356. "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;\"> "
  357. }, {
  358. "$id": "18",
  359. "Code": "B",
  360. "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;\"> "
  361. }, {
  362. "$id": "19",
  363. "Code": "C",
  364. "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;\"> "
  365. }, {
  366. "$id": "20",
  367. "Code": "D",
  368. "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\">"
  369. }],
  370. "Answer": ["D"],
  371. "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\">",
  372. "Type": "Single"
  373. },
  374. {
  375. "$id": "26",
  376. "Question": "在实数-3、0、5、3中,正数有是()</p><p class=\"p7\">",
  377. "dif":"3",
  378. "Option": [{
  379. "$id": "27",
  380. "Code": "A",
  381. "Value": "3 "
  382. }, {
  383. "$id": "28",
  384. "Code": "B",
  385. "Value": "-3 "
  386. }, {
  387. "$id": "29",
  388. "Code": "C",
  389. "Value": "5 "
  390. }, {
  391. "$id": "30",
  392. "Code": "D",
  393. "Value": "0</p><p class=\"p3\">"
  394. }],
  395. "Answer": ["A", "C"],
  396. "Explain": "</p><p class=\"p14\">无</p><p class=\"p6\">",
  397. "Type": "Multiple"
  398. },
  399. {
  400. "$id": "31",
  401. "Question": "若代数式在实数范围内有意义,则x的取值范为是()</p><p class=\"p7\">",
  402. "dif":"1",
  403. "Option": [{
  404. "$id": "32",
  405. "Code": "A",
  406. "Value": "x&ge;-2 "
  407. }, {
  408. "$id": "33",
  409. "Code": "B",
  410. "Value": "x>-2 "
  411. }, {
  412. "$id": "34",
  413. "Code": "C",
  414. "Value": "x&ge;2 "
  415. }, {
  416. "$id": "35",
  417. "Code": "D",
  418. "Value": "x&ge;4</p><p class=\"p3\">"
  419. }],
  420. "Answer": ["C", "D"],
  421. "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\">",
  422. "Type": "Multiple"
  423. },
  424. {
  425. "$id": "36",
  426. "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\">",
  427. "dif":"4",
  428. "Option": [{
  429. "$id": "37",
  430. "Code": "A",
  431. "Value": "4:00气温最低 </p><p class=\"p7\">"
  432. }, {
  433. "$id": "38",
  434. "Code": "B",
  435. "Value": "6:00气温为24℃ </p><p class=\"p7\">"
  436. }, {
  437. "$id": "39",
  438. "Code": "C",
  439. "Value": "14:00气温最高 </p><p class=\"p7\">"
  440. }, {
  441. "$id": "40",
  442. "Code": "D",
  443. "Value": "气温是30℃的为16:00</p><p class=\"p3\">"
  444. }],
  445. "Answer": ["A", "B", "C"],
  446. "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\">",
  447. "Type": "Multiple"
  448. },
  449. {
  450. "$id": "41",
  451. "Question": "在实数-3、0、5、3中,最小的实数是-3()</p><p class=\"p7\">",
  452. "dif":"3",
  453. "Option": [{
  454. "$id": "42",
  455. "Code": "A",
  456. "Value": "对 "
  457. }, {
  458. "$id": "43",
  459. "Code": "B",
  460. "Value": "错</p><p class=\"p3\">"
  461. }],
  462. "Answer": ["A"],
  463. "Explain": "</p><p class=\"p7\">有理数中,负数小于0,零小于正数,所以最小的是-3.</p><p class=\"p7\">备考指导:有理数大小比较的一般方法:①正数都大于0,负数都小于0,正数大于一切负数,两个负数绝对值大的反而小;②在数轴上表示的数,右边的总比左边的大.</p><p class=\"p6\">",
  464. "Type": "Judge"
  465. },
  466. {
  467. "$id": "44",
  468. "Question": "把a2-2a分解因式为a(a+2)。 ( )</p><p class=\"p7\">",
  469. "dif":"1",
  470. "Option": [{
  471. "$id": "45",
  472. "Code": "A",
  473. "Value": "对 "
  474. }, {
  475. "$id": "46",
  476. "Code": "B",
  477. "Value": "错</p><p class=\"p3\">"
  478. }],
  479. "Answer": ["B"],
  480. "Explain": "</p><p class=\"p7\">考查提取公因式法分解因式.原式=a(a-2).</p><p class=\"p7\">备考指导:因式分解的一般步骤:若有公因式,先提公因式;然后再考虑用公式法或其它方法分解;直到每个因式都不能再分解为止.</p><p class=\"p3\">",
  481. "Type": "Judge"
  482. },
  483. {
  484. "$id": "50",
  485. "Question": "火星白天的最高温度可达28℃,而夜间温度可降到-132℃,那么火星的昼夜温度相差<underline data=\"1\"><u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</u></underline>℃.</p><p class=\"p3\">",
  486. "dif":"1",
  487. "Option": [],
  488. "Answer": ["160"],
  489. "Explain": "</p><p class=\"p7\">解:根据题意列式得:28-(-132)=160℃.</p><p class=\"p3\">",
  490. "Type": "Complete"
  491. },
  492. {
  493. "$id": "51",
  494. "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\">",
  495. "dif":"5",
  496. "Option": [],
  497. "Answer": ["二", "0.14", "五", "0.27", "0.41", "不变"],
  498. "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\">",
  499. "Type": "Complete"
  500. },
  501. {
  502. "$id": "52",
  503. "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\">",
  504. "dif":"5",
  505. "Option": [],
  506. "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\">"],
  507. "Explain": "</p><p class=\"p14\">无</p><p class=\"p6\">",
  508. "Type": "Subjective"
  509. }]
  510. }
  511. },
  512. methods: {
  513. ok ( ) {
  514. this.$Message.info('发布成功');
  515. },
  516. // cancel ( ) {
  517. // this.$Message.info('');
  518. // }
  519. yes ( ) {
  520. this.modal1 = false;
  521. this.$Message.success('发布成功');
  522. },
  523. cancel ( ) {
  524. this.modal1 = false;
  525. }
  526. }
  527. }
  528. </script>