shi_jue_suo_sou.js 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030
  1. // pages/shi_jue_suo_sou/shi_jue_suo_sou.js
  2. const { throttle } = require('../../utils/util.js')
  3. const app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. isSjss:true,
  10. statusBar: app.globalData.statusBar,
  11. mentalRotation:0,
  12. graphicReasoning:0,
  13. spaceImagination:0,
  14. executionFunctionality:0,
  15. visualSearch:0,
  16. workingMemory:0,
  17. isAnswer:false,
  18. remainTime:0,
  19. isWay:20,
  20. times:0,
  21. level:0,
  22. nIndex:0,
  23. oneSelectL:'../../image/sjss_two1_title1.png',
  24. oneSelectT: '../../image/sjss_two1_title2.png',
  25. yesImg: '../../image/zheng_que.png',
  26. noImg: '../../image/cuo_wu.png',
  27. fourT: '../../image/the_first_pass_four_tittle1.png',
  28. fourL: '../../image/the_first_pass_four_tittle.png',
  29. isWhite:false,
  30. isOneImgShow: false,
  31. isTime:false,
  32. countDownNum:0,
  33. exerciseList:[
  34. {
  35. img: '../../image/the_first_pass_four_tittle1.png',
  36. isAnswer: 0,
  37. status: ''
  38. },
  39. {
  40. img: '../../image/the_first_pass_four_tittle1.png',
  41. isAnswer: 0,
  42. status: ''
  43. },
  44. {
  45. img: '../../image/the_first_pass_four_tittle1.png',
  46. isAnswer: 0,
  47. status: ''
  48. },
  49. {
  50. img: '../../image/the_first_pass_four_tittle1.png',
  51. isAnswer: 0,
  52. status: ''
  53. },
  54. {
  55. img: '../../image/the_first_pass_four_tittle1.png',
  56. isAnswer: 0,
  57. status: ''
  58. },
  59. {
  60. img: '../../image/the_first_pass_four_tittle.png',
  61. isAnswer: 1,
  62. status: ''
  63. },
  64. {
  65. img: '../../image/the_first_pass_four_tittle1.png',
  66. isAnswer: 0,
  67. status: ''
  68. },
  69. {
  70. img: '../../image/the_first_pass_four_tittle1.png',
  71. isAnswer: 0,
  72. status: ''
  73. }
  74. ],
  75. oneList: [
  76. [
  77. {
  78. img: '../../image/the_first_pass_four_tittle.png',
  79. isAnswer: 1,
  80. status: ''
  81. },
  82. {
  83. img: '../../image/the_first_pass_four_tittle1.png',
  84. isAnswer: 0,
  85. status: ''
  86. },
  87. {
  88. img: '../../image/the_first_pass_four_tittle1.png',
  89. isAnswer: 0,
  90. status: ''
  91. },
  92. {
  93. img: '../../image/the_first_pass_four_tittle1.png',
  94. isAnswer: 0,
  95. status: ''
  96. },
  97. {
  98. img: '../../image/the_first_pass_four_tittle1.png',
  99. isAnswer: 0,
  100. status: ''
  101. },
  102. {
  103. img: '../../image/the_first_pass_four_tittle1.png',
  104. isAnswer: 0,
  105. status: ''
  106. },
  107. {
  108. img: '../../image/the_first_pass_four_tittle1.png',
  109. isAnswer: 0,
  110. status: ''
  111. },
  112. {
  113. img: '../../image/the_first_pass_four_tittle1.png',
  114. isAnswer: 0,
  115. status: ''
  116. },
  117. ],
  118. [
  119. {
  120. img: '../../image/the_first_pass_four_tittle1.png',
  121. isAnswer: 0,
  122. status: ''
  123. },
  124. {
  125. img: '../../image/the_first_pass_four_tittle1.png',
  126. isAnswer: 0,
  127. status: ''
  128. },
  129. {
  130. img: '../../image/the_first_pass_four_tittle1.png',
  131. isAnswer: 0,
  132. status: ''
  133. },
  134. {
  135. img: '../../image/the_first_pass_four_tittle1.png',
  136. isAnswer: 0,
  137. status: ''
  138. },
  139. {
  140. img: '../../image/the_first_pass_four_tittle.png',
  141. isAnswer:1,
  142. status: ''
  143. },
  144. {
  145. img: '../../image/the_first_pass_four_tittle1.png',
  146. isAnswer: 0,
  147. status: ''
  148. },
  149. {
  150. img: '../../image/the_first_pass_four_tittle1.png',
  151. isAnswer: 0,
  152. status: ''
  153. },
  154. {
  155. img: '../../image/the_first_pass_four_tittle1.png',
  156. isAnswer: 0,
  157. status: ''
  158. },
  159. ],
  160. [
  161. {
  162. img: '../../image/the_first_pass_four_tittle1.png',
  163. isAnswer: 0,
  164. status: ''
  165. },
  166. {
  167. img: '../../image/the_first_pass_four_tittle1.png',
  168. isAnswer: 0,
  169. status: ''
  170. },
  171. {
  172. img: '../../image/the_first_pass_four_tittle1.png',
  173. isAnswer: 0,
  174. status: ''
  175. },
  176. {
  177. img: '../../image/the_first_pass_four_tittle1.png',
  178. isAnswer: 0,
  179. status: ''
  180. },
  181. {
  182. img: '../../image/the_first_pass_four_tittle1.png',
  183. isAnswer: 0,
  184. status: ''
  185. },
  186. {
  187. img: '../../image/the_first_pass_four_tittle1.png',
  188. isAnswer: 0,
  189. status: ''
  190. },
  191. {
  192. img: '../../image/the_first_pass_four_tittle1.png',
  193. isAnswer: 0,
  194. status: ''
  195. },
  196. {
  197. img: '../../image/the_first_pass_four_tittle.png',
  198. isAnswer: 1,
  199. status: ''
  200. },
  201. ],
  202. [
  203. {
  204. img: '../../image/the_first_pass_four_tittle.png',
  205. isAnswer: 0,
  206. status: ''
  207. },
  208. {
  209. img: '../../image/the_first_pass_four_tittle.png',
  210. isAnswer: 0,
  211. status: ''
  212. },
  213. {
  214. img: '../../image/the_first_pass_four_tittle.png',
  215. isAnswer: 0,
  216. status: ''
  217. },
  218. {
  219. img: '../../image/the_first_pass_four_tittle.png',
  220. isAnswer: 0,
  221. status: ''
  222. },
  223. {
  224. img: '../../image/the_first_pass_four_tittle1.png',
  225. isAnswer: 1,
  226. status: ''
  227. },
  228. {
  229. img: '../../image/the_first_pass_four_tittle.png',
  230. isAnswer: 0,
  231. status: ''
  232. },
  233. {
  234. img: '../../image/the_first_pass_four_tittle.png',
  235. isAnswer: 0,
  236. status: ''
  237. },
  238. {
  239. img: '../../image/the_first_pass_four_tittle.png',
  240. isAnswer: 0,
  241. status: ''
  242. },
  243. ],
  244. [
  245. {
  246. img: '../../image/the_first_pass_four_tittle.png',
  247. isAnswer: 0,
  248. status: ''
  249. },
  250. {
  251. img: '../../image/the_first_pass_four_tittle1.png',
  252. isAnswer: 1,
  253. status: ''
  254. },
  255. {
  256. img: '../../image/the_first_pass_four_tittle.png',
  257. isAnswer: 0,
  258. status: ''
  259. },
  260. {
  261. img: '../../image/the_first_pass_four_tittle.png',
  262. isAnswer: 0,
  263. status: ''
  264. },
  265. {
  266. img: '../../image/the_first_pass_four_tittle.png',
  267. isAnswer: 0,
  268. status: ''
  269. },
  270. {
  271. img: '../../image/the_first_pass_four_tittle.png',
  272. isAnswer: 0,
  273. status: ''
  274. },
  275. {
  276. img: '../../image/the_first_pass_four_tittle.png',
  277. isAnswer: 0,
  278. status: ''
  279. },
  280. {
  281. img: '../../image/the_first_pass_four_tittle.png',
  282. isAnswer: 0,
  283. status: ''
  284. },
  285. ],
  286. [
  287. {
  288. img: '../../image/the_fourth_pass_four_as_E.png',
  289. isAnswer: 0,
  290. status: ''
  291. },
  292. {
  293. img: '../../image/the_fourth_pass_four_as_E.png',
  294. isAnswer: 0,
  295. status: ''
  296. },
  297. {
  298. img: '../../image/the_fourth_pass_four_as_E.png',
  299. isAnswer: 0,
  300. status: ''
  301. },
  302. {
  303. img: '../../image/the_fourth_pass_four_as_P.png',
  304. isAnswer: 1,
  305. status: ''
  306. },
  307. {
  308. img: '../../image/the_fourth_pass_four_as_E.png',
  309. isAnswer: 0,
  310. status: ''
  311. },
  312. {
  313. img: '../../image/the_fourth_pass_four_as_E.png',
  314. isAnswer: 0,
  315. status: ''
  316. },
  317. {
  318. img: '../../image/the_fourth_pass_four_as_E.png',
  319. isAnswer: 0,
  320. status: ''
  321. },
  322. {
  323. img: '../../image/the_fourth_pass_four_as_E.png',
  324. isAnswer: 0,
  325. status: ''
  326. },
  327. ],
  328. [
  329. {
  330. img: '../../image/the_fourth_pass_four_as_E.png',
  331. isAnswer: 0,
  332. status: ''
  333. },
  334. {
  335. img: '../../image/the_fourth_pass_four_as_E.png',
  336. isAnswer: 0,
  337. status: ''
  338. },
  339. {
  340. img: '../../image/the_fourth_pass_four_as_E.png',
  341. isAnswer: 0,
  342. status: ''
  343. },
  344. {
  345. img: '../../image/the_fourth_pass_four_as_E.png',
  346. isAnswer: 0,
  347. status: ''
  348. },
  349. {
  350. img: '../../image/the_fourth_pass_four_as_S.png',
  351. isAnswer: 1,
  352. status: ''
  353. },
  354. {
  355. img: '../../image/the_fourth_pass_four_as_E.png',
  356. isAnswer: 0,
  357. status: ''
  358. },
  359. {
  360. img: '../../image/the_fourth_pass_four_as_E.png',
  361. isAnswer: 0,
  362. status: ''
  363. },
  364. {
  365. img: '../../image/the_fourth_pass_four_as_E.png',
  366. isAnswer: 0,
  367. status: ''
  368. },
  369. ],
  370. [
  371. {
  372. img: '../../image/the_fourth_pass_four_as_E.png',
  373. isAnswer: 0,
  374. status: ''
  375. },
  376. {
  377. img: '../../image/the_fourth_pass_four_as_E.png',
  378. isAnswer: 0,
  379. status: ''
  380. },
  381. {
  382. img: '../../image/the_fourth_pass_four_as_E.png',
  383. isAnswer: 0,
  384. status: ''
  385. },
  386. {
  387. img: '../../image/the_fourth_pass_four_as_E.png',
  388. isAnswer: 0,
  389. status: ''
  390. },
  391. {
  392. img: '../../image/the_fourth_pass_four_as_E.png',
  393. isAnswer: 0,
  394. status: ''
  395. },
  396. {
  397. img: '../../image/the_fourth_pass_four_as_E.png',
  398. isAnswer: 0,
  399. status: ''
  400. },
  401. {
  402. img: '../../image/the_fourth_pass_four_as_P.png',
  403. isAnswer: 1,
  404. status: ''
  405. },
  406. {
  407. img: '../../image/the_fourth_pass_four_as_E.png',
  408. isAnswer: 0,
  409. status: ''
  410. },
  411. ],
  412. [
  413. {
  414. img: '../../image/the_fourth_pass_four_as_E.png',
  415. isAnswer: 0,
  416. status: ''
  417. },
  418. {
  419. img: '../../image/the_fourth_pass_four_as_S.png',
  420. isAnswer: 1,
  421. status: ''
  422. },
  423. {
  424. img: '../../image/the_fourth_pass_four_as_E.png',
  425. isAnswer: 0,
  426. status: ''
  427. },
  428. {
  429. img: '../../image/the_fourth_pass_four_as_E.png',
  430. isAnswer: 0,
  431. status: ''
  432. },
  433. {
  434. img: '../../image/the_fourth_pass_four_as_E.png',
  435. isAnswer: 0,
  436. status: ''
  437. },
  438. {
  439. img: '../../image/the_fourth_pass_four_as_E.png',
  440. isAnswer: 0,
  441. status: ''
  442. },
  443. {
  444. img: '../../image/the_fourth_pass_four_as_E.png',
  445. isAnswer: 0,
  446. status: ''
  447. },
  448. {
  449. img: '../../image/the_fourth_pass_four_as_E.png',
  450. isAnswer: 0,
  451. status: ''
  452. },
  453. ],
  454. [
  455. {
  456. img: '../../image/the_fourth_pass_four_as_E.png',
  457. isAnswer: 0,
  458. status: ''
  459. },
  460. {
  461. img: '../../image/the_fourth_pass_four_as_E.png',
  462. isAnswer: 0,
  463. status: ''
  464. },
  465. {
  466. img: '../../image/the_fourth_pass_four_as_E.png',
  467. isAnswer: 0,
  468. status: ''
  469. },
  470. {
  471. img: '../../image/the_fourth_pass_four_as_E.png',
  472. isAnswer:0,
  473. status: ''
  474. },
  475. {
  476. img: '../../image/the_fourth_pass_four_as_E.png',
  477. isAnswer: 0,
  478. status: ''
  479. },
  480. {
  481. img: '../../image/the_fourth_pass_four_as_E.png',
  482. isAnswer: 0,
  483. status: ''
  484. },
  485. {
  486. img: '../../image/the_fourth_pass_four_as_P.png',
  487. isAnswer: 1,
  488. status: ''
  489. },
  490. {
  491. img: '../../image/the_fourth_pass_four_as_E.png',
  492. isAnswer: 0,
  493. status: ''
  494. },
  495. ],
  496. [
  497. {
  498. img: '../../image/the_fourth_pass_four_as_S.png',
  499. isAnswer: 1,
  500. status: ''
  501. },
  502. {
  503. img: '../../image/the_fourth_pass_four_as_E.png',
  504. isAnswer: 0,
  505. status: ''
  506. },
  507. {
  508. img: '../../image/the_fourth_pass_four_as_E.png',
  509. isAnswer: 0,
  510. status: ''
  511. },
  512. {
  513. img: '../../image/the_fourth_pass_four_as_E.png',
  514. isAnswer:0,
  515. status: ''
  516. },
  517. {
  518. img: '../../image/the_fourth_pass_four_as_E.png',
  519. isAnswer: 0,
  520. status: ''
  521. },
  522. {
  523. img: '../../image/the_fourth_pass_four_as_E.png',
  524. isAnswer: 0,
  525. status: ''
  526. },
  527. {
  528. img: '../../image/the_fourth_pass_four_as_E.png',
  529. isAnswer: 0,
  530. status: ''
  531. },
  532. {
  533. img: '../../image/the_fourth_pass_four_as_E.png',
  534. isAnswer: 0,
  535. status: ''
  536. },
  537. ],
  538. [
  539. {
  540. img: '../../image/the_second_pass_four_as_green_1.png',
  541. isAnswer: 1,
  542. status: ''
  543. },
  544. {
  545. img: '../../image/the_second_pass_four_as_green_2.png',
  546. isAnswer: 0,
  547. status: ''
  548. },
  549. {
  550. img: '../../image/the_second_pass_four_as_green_2.png',
  551. isAnswer: 0,
  552. status: ''
  553. },
  554. {
  555. img: '../../image/the_second_pass_four_as_green_2.png',
  556. isAnswer: 0,
  557. status: ''
  558. },
  559. {
  560. img: '../../image/the_second_pass_four_as_green_4.png',
  561. isAnswer: 0,
  562. status: ''
  563. },
  564. {
  565. img: '../../image/the_second_pass_four_as_green_2.png',
  566. isAnswer: 0,
  567. status: ''
  568. },
  569. {
  570. img: '../../image/the_second_pass_four_as_green_2.png',
  571. isAnswer: 0,
  572. status: ''
  573. },
  574. {
  575. img: '../../image/the_second_pass_four_as_green_2.png',
  576. isAnswer: 0,
  577. status: ''
  578. },
  579. ],
  580. [
  581. {
  582. img: '../../image/the_second_pass_four_as_green_2.png',
  583. isAnswer: 0,
  584. status: ''
  585. },
  586. {
  587. img: '../../image/the_second_pass_four_as_green_2.png',
  588. isAnswer: 0,
  589. status: ''
  590. },
  591. {
  592. img: '../../image/the_second_pass_four_as_green_3.png',
  593. isAnswer: 1,
  594. status: ''
  595. },
  596. {
  597. img: '../../image/the_second_pass_four_as_green_2.png',
  598. isAnswer: 0,
  599. status: ''
  600. },
  601. {
  602. img: '../../image/the_second_pass_four_as_green_4.png',
  603. isAnswer: 0,
  604. status: ''
  605. },
  606. {
  607. img: '../../image/the_second_pass_four_as_green_2.png',
  608. isAnswer: 0,
  609. status: ''
  610. },
  611. {
  612. img: '../../image/the_second_pass_four_as_green_2.png',
  613. isAnswer: 0,
  614. status: ''
  615. },
  616. {
  617. img: '../../image/the_second_pass_four_as_green_2.png',
  618. isAnswer: 0,
  619. status: ''
  620. },
  621. ],
  622. [
  623. {
  624. img: '../../image/the_second_pass_four_as_green_1.png',
  625. isAnswer: 0,
  626. status: ''
  627. },
  628. {
  629. img: '../../image/the_second_pass_four_as_green_1.png',
  630. isAnswer: 0,
  631. status: ''
  632. },
  633. {
  634. img: '../../image/the_second_pass_four_as_green_3.png',
  635. isAnswer: 0,
  636. status: ''
  637. },
  638. {
  639. img: '../../image/the_second_pass_four_as_green_1.png',
  640. isAnswer: 0,
  641. status: ''
  642. },
  643. {
  644. img: '../../image/the_second_pass_four_as_green_4.png',
  645. isAnswer: 1,
  646. status: ''
  647. },
  648. {
  649. img: '../../image/the_second_pass_four_as_green_1.png',
  650. isAnswer: 0,
  651. status: ''
  652. },
  653. {
  654. img: '../../image/the_second_pass_four_as_green_1.png',
  655. isAnswer: 0,
  656. status: ''
  657. },
  658. {
  659. img: '../../image/the_second_pass_four_as_green_1.png',
  660. isAnswer: 0,
  661. status: ''
  662. },
  663. ],
  664. [
  665. {
  666. img: '../../image/the_second_pass_four_as_green_1.png',
  667. isAnswer: 0,
  668. status: ''
  669. },
  670. {
  671. img: '../../image/the_second_pass_four_as_green_1.png',
  672. isAnswer: 0,
  673. status: ''
  674. },
  675. {
  676. img: '../../image/the_second_pass_four_as_green_3.png',
  677. isAnswer: 0,
  678. status: ''
  679. },
  680. {
  681. img: '../../image/the_second_pass_four_as_green_1.png',
  682. isAnswer: 0,
  683. status: ''
  684. },
  685. {
  686. img: '../../image/the_second_pass_four_as_green_1.png',
  687. isAnswer: 0,
  688. status: ''
  689. },
  690. {
  691. img: '../../image/the_second_pass_four_as_green_1.png',
  692. isAnswer: 0,
  693. status: ''
  694. },
  695. {
  696. img: '../../image/the_second_pass_four_as_green_2.png',
  697. isAnswer: 1,
  698. status: ''
  699. },
  700. {
  701. img: '../../image/the_second_pass_four_as_green_1.png',
  702. isAnswer: 0,
  703. status: ''
  704. },
  705. ],
  706. [
  707. {
  708. img: '../../image/the_second_pass_four_as_green_2.png',
  709. isAnswer: 0,
  710. status: ''
  711. },
  712. {
  713. img: '../../image/the_second_pass_four_as_green_2.png',
  714. isAnswer: 0,
  715. status: ''
  716. },
  717. {
  718. img: '../../image/the_second_pass_four_as_green_2.png',
  719. isAnswer: 0,
  720. status: ''
  721. },
  722. {
  723. img: '../../image/the_second_pass_four_as_green_2.png',
  724. isAnswer: 0,
  725. status: ''
  726. },
  727. {
  728. img: '../../image/the_second_pass_four_as_green_4.png',
  729. isAnswer: 0,
  730. status: ''
  731. },
  732. {
  733. img: '../../image/the_second_pass_four_as_green_1.png',
  734. isAnswer: 1,
  735. status: ''
  736. },
  737. {
  738. img: '../../image/the_second_pass_four_as_green_2.png',
  739. isAnswer: 0,
  740. status: ''
  741. },
  742. {
  743. img: '../../image/the_second_pass_four_as_green_2.png',
  744. isAnswer: 0,
  745. status: ''
  746. },
  747. ],
  748. [
  749. {
  750. img: '../../image/the_second_pass_four_as_green_2.png',
  751. isAnswer: 0,
  752. status: ''
  753. },
  754. {
  755. img: '../../image/the_second_pass_four_as_green_2.png',
  756. isAnswer: 0,
  757. status: ''
  758. },
  759. {
  760. img: '../../image/the_second_pass_four_as_green_2.png',
  761. isAnswer:0,
  762. status: ''
  763. },
  764. {
  765. img: '../../image/the_second_pass_four_as_green_2.png',
  766. isAnswer: 0,
  767. status: ''
  768. },
  769. {
  770. img: '../../image/the_second_pass_four_as_green_4.png',
  771. isAnswer: 0,
  772. status: ''
  773. },
  774. {
  775. img: '../../image/the_second_pass_four_as_green_2.png',
  776. isAnswer: 0,
  777. status: ''
  778. },
  779. {
  780. img: '../../image/the_second_pass_four_as_green_2.png',
  781. isAnswer: 0,
  782. status: ''
  783. },
  784. {
  785. img: '../../image/the_second_pass_four_as_green_3.png',
  786. isAnswer: 1,
  787. status: ''
  788. },
  789. ],
  790. [
  791. {
  792. img: '../../image/the_second_pass_four_as_green_1.png',
  793. isAnswer: 0,
  794. status: ''
  795. },
  796. {
  797. img: '../../image/the_second_pass_four_as_green_4.png',
  798. isAnswer: 1,
  799. status: ''
  800. },
  801. {
  802. img: '../../image/the_second_pass_four_as_green_3.png',
  803. isAnswer: 0,
  804. status: ''
  805. },
  806. {
  807. img: '../../image/the_second_pass_four_as_green_1.png',
  808. isAnswer: 0,
  809. status: ''
  810. },
  811. {
  812. img: '../../image/the_second_pass_four_as_green_1.png',
  813. isAnswer: 0,
  814. status: ''
  815. },
  816. {
  817. img: '../../image/the_second_pass_four_as_green_1.png',
  818. isAnswer: 0,
  819. status: ''
  820. },
  821. {
  822. img: '../../image/the_second_pass_four_as_green_1.png',
  823. isAnswer: 0,
  824. status: ''
  825. },
  826. {
  827. img: '../../image/the_second_pass_four_as_green_1.png',
  828. isAnswer: 0,
  829. status: ''
  830. },
  831. ],
  832. [
  833. {
  834. img: '../../image/the_second_pass_four_as_green_1.png',
  835. isAnswer: 0,
  836. status: ''
  837. },
  838. {
  839. img: '../../image/the_second_pass_four_as_green_1.png',
  840. isAnswer: 0,
  841. status: ''
  842. },
  843. {
  844. img: '../../image/the_second_pass_four_as_green_2.png',
  845. isAnswer: 1,
  846. status: ''
  847. },
  848. {
  849. img: '../../image/the_second_pass_four_as_green_1.png',
  850. isAnswer: 0,
  851. status: ''
  852. },
  853. {
  854. img: '../../image/the_second_pass_four_as_green_1.png',
  855. isAnswer: 0,
  856. status: ''
  857. },
  858. {
  859. img: '../../image/the_second_pass_four_as_green_1.png',
  860. isAnswer: 0,
  861. status: ''
  862. },
  863. {
  864. img: '../../image/the_second_pass_four_as_green_3.png',
  865. isAnswer: 0,
  866. status: ''
  867. },
  868. {
  869. img: '../../image/the_second_pass_four_as_green_1.png',
  870. isAnswer: 0,
  871. status: ''
  872. },
  873. ],
  874. [
  875. {
  876. img: '../../image/the_second_pass_four_as_green_3.png',
  877. isAnswer:1,
  878. status: ''
  879. },
  880. {
  881. img: '../../image/the_second_pass_four_as_green_2.png',
  882. isAnswer: 0,
  883. status: ''
  884. },
  885. {
  886. img: '../../image/the_second_pass_four_as_green_2.png',
  887. isAnswer: 0,
  888. status: ''
  889. },
  890. {
  891. img: '../../image/the_second_pass_four_as_green_2.png',
  892. isAnswer: 0,
  893. status: ''
  894. },
  895. {
  896. img: '../../image/the_second_pass_four_as_green_2.png',
  897. isAnswer: 0,
  898. status: ''
  899. },
  900. {
  901. img: '../../image/the_second_pass_four_as_green_2.png',
  902. isAnswer: 0,
  903. status: ''
  904. },
  905. {
  906. img: '../../image/the_second_pass_four_as_green_4.png',
  907. isAnswer: 0,
  908. status: ''
  909. },
  910. {
  911. img: '../../image/the_second_pass_four_as_green_2.png',
  912. isAnswer: 0,
  913. status: ''
  914. },
  915. ]
  916. ],
  917. twoList:[
  918. [
  919. {
  920. img: '../../image/the_second_pass_four_as_green_2.png',
  921. isAnswer: 0,
  922. status: ''
  923. },
  924. {
  925. img: '../../image/the_second_pass_four_as_green_2.png',
  926. isAnswer: 0,
  927. status: ''
  928. },
  929. {
  930. img: '../../image/the_second_pass_four_as_green_1.png',
  931. isAnswer: 1,
  932. status: ''
  933. },
  934. {
  935. img: '../../image/the_second_pass_four_as_green_4.png',
  936. isAnswer: 0,
  937. status: ''
  938. },
  939. {
  940. img: '../../image/the_second_pass_four_as_green_3.png',
  941. isAnswer: 0,
  942. status: ''
  943. },
  944. {
  945. img: '../../image/the_second_pass_four_as_green_4.png',
  946. isAnswer: 0,
  947. status: ''
  948. },
  949. {
  950. img: '../../image/the_second_pass_four_as_green_4.png',
  951. isAnswer: 0,
  952. status: ''
  953. },
  954. {
  955. img: '../../image/the_second_pass_four_as_green_3.png',
  956. isAnswer: 0,
  957. status: ''
  958. },
  959. ],
  960. [
  961. {
  962. img: '../../image/the_second_pass_four_as_green_2.png',
  963. isAnswer: 0,
  964. status: ''
  965. },
  966. {
  967. img: '../../image/the_second_pass_four_as_green_2.png',
  968. isAnswer: 0,
  969. status: ''
  970. },
  971. {
  972. img: '../../image/the_second_pass_four_as_green_3.png',
  973. isAnswer: 0,
  974. status: ''
  975. },
  976. {
  977. img: '../../image/the_second_pass_four_as_green_4.png',
  978. isAnswer: 0,
  979. status: ''
  980. },
  981. {
  982. img: '../../image/the_second_pass_four_as_green_3.png',
  983. isAnswer: 0,
  984. status: ''
  985. },
  986. {
  987. img: '../../image/the_second_pass_four_as_green_4.png',
  988. isAnswer: 0,
  989. status: ''
  990. },
  991. {
  992. img: '../../image/the_second_pass_four_as_green_1.png',
  993. isAnswer: 1,
  994. status: ''
  995. },
  996. {
  997. img: '../../image/the_second_pass_four_as_green_3.png',
  998. isAnswer: 0,
  999. status: ''
  1000. },
  1001. ],
  1002. [
  1003. {
  1004. img: '../../image/the_second_pass_four_as_green_2.png',
  1005. isAnswer: 0,
  1006. status: ''
  1007. },
  1008. {
  1009. img: '../../image/the_second_pass_four_as_green_3.png',
  1010. isAnswer: 0,
  1011. status: ''
  1012. },
  1013. {
  1014. img: '../../image/the_second_pass_four_as_green_4.png',
  1015. isAnswer: 0,
  1016. status: ''
  1017. },
  1018. {
  1019. img: '../../image/the_second_pass_four_as_green_4.png',
  1020. isAnswer: 0,
  1021. status: ''
  1022. },
  1023. {
  1024. img: '../../image/the_second_pass_four_as_green_1.png',
  1025. isAnswer: 1,
  1026. status: ''
  1027. },
  1028. {
  1029. img: '../../image/the_second_pass_four_as_green_4.png',
  1030. isAnswer: 0,
  1031. status: ''
  1032. },
  1033. {
  1034. img: '../../image/the_second_pass_four_as_green_4.png',
  1035. isAnswer: 0,
  1036. status: ''
  1037. },
  1038. {
  1039. img: '../../image/the_second_pass_four_as_green_3.png',
  1040. isAnswer: 0,
  1041. status: ''
  1042. },
  1043. ],
  1044. [
  1045. {
  1046. img: '../../image/the_second_pass_four_as_green_4.png',
  1047. isAnswer: 0,
  1048. status: ''
  1049. },
  1050. {
  1051. img: '../../image/the_second_pass_four_as_green_2.png',
  1052. isAnswer: 0,
  1053. status: ''
  1054. },
  1055. {
  1056. img: '../../image/the_second_pass_four_as_green_3.png',
  1057. isAnswer: 0,
  1058. status: ''
  1059. },
  1060. {
  1061. img: '../../image/the_second_pass_four_as_green_4.png',
  1062. isAnswer: 0,
  1063. status: ''
  1064. },
  1065. {
  1066. img: '../../image/the_second_pass_four_as_green_3.png',
  1067. isAnswer: 0,
  1068. status: ''
  1069. },
  1070. {
  1071. img: '../../image/the_second_pass_four_as_green_4.png',
  1072. isAnswer: 0,
  1073. status: ''
  1074. },
  1075. {
  1076. img: '../../image/the_second_pass_four_as_green_4.png',
  1077. isAnswer: 0,
  1078. status: ''
  1079. },
  1080. {
  1081. img: '../../image/the_second_pass_four_as_green_1.png',
  1082. isAnswer: 1,
  1083. status: ''
  1084. },
  1085. ],
  1086. [
  1087. {
  1088. img: '../../image/the_second_pass_four_as_green_2.png',
  1089. isAnswer: 0,
  1090. status: ''
  1091. },
  1092. {
  1093. img: '../../image/the_second_pass_four_as_green_4.png',
  1094. isAnswer: 0,
  1095. status: ''
  1096. },
  1097. {
  1098. img: '../../image/the_second_pass_four_as_green_1.png',
  1099. isAnswer: 0,
  1100. status: ''
  1101. },
  1102. {
  1103. img: '../../image/the_second_pass_four_as_green_4.png',
  1104. isAnswer: 0,
  1105. status: ''
  1106. },
  1107. {
  1108. img: '../../image/the_second_pass_four_as_green_1.png',
  1109. isAnswer:1,
  1110. status: ''
  1111. },
  1112. {
  1113. img: '../../image/the_second_pass_four_as_green_2.png',
  1114. isAnswer: 0,
  1115. status: ''
  1116. },
  1117. {
  1118. img: '../../image/the_second_pass_four_as_green_4.png',
  1119. isAnswer: 0,
  1120. status: ''
  1121. },
  1122. {
  1123. img: '../../image/the_second_pass_four_as_green_3.png',
  1124. isAnswer: 0,
  1125. status: ''
  1126. },
  1127. ],
  1128. [
  1129. {
  1130. img: '../../image/the_second_pass_four_as_green_2.png',
  1131. isAnswer: 0,
  1132. status: ''
  1133. },
  1134. {
  1135. img: '../../image/the_second_pass_four_as_green_2.png',
  1136. isAnswer: 0,
  1137. status: ''
  1138. },
  1139. {
  1140. img: '../../image/the_second_pass_four_as_green_3.png',
  1141. isAnswer: 0,
  1142. status: ''
  1143. },
  1144. {
  1145. img: '../../image/the_second_pass_four_as_green_4.png',
  1146. isAnswer: 0,
  1147. status: ''
  1148. },
  1149. {
  1150. img: '../../image/the_second_pass_four_as_green_4.png',
  1151. isAnswer: 0,
  1152. status: ''
  1153. },
  1154. {
  1155. img: '../../image/the_second_pass_four_as_green_2.png',
  1156. isAnswer: 0,
  1157. status: ''
  1158. },
  1159. {
  1160. img: '../../image/the_second_pass_four_as_green_1.png',
  1161. isAnswer: 1,
  1162. status: ''
  1163. },
  1164. {
  1165. img: '../../image/the_second_pass_four_as_green_3.png',
  1166. isAnswer: 0,
  1167. status: ''
  1168. },
  1169. ],
  1170. [
  1171. {
  1172. img: '../../image/the_second_pass_four_as_green_2.png',
  1173. isAnswer: 0,
  1174. status: ''
  1175. },
  1176. {
  1177. img: '../../image/the_second_pass_four_as_green_4.png',
  1178. isAnswer: 0,
  1179. status: ''
  1180. },
  1181. {
  1182. img: '../../image/the_second_pass_four_as_green_3.png',
  1183. isAnswer: 0,
  1184. status: ''
  1185. },
  1186. {
  1187. img: '../../image/the_second_pass_four_as_green_1.png',
  1188. isAnswer:1,
  1189. status: ''
  1190. },
  1191. {
  1192. img: '../../image/the_second_pass_four_as_green_3.png',
  1193. isAnswer: 0,
  1194. status: ''
  1195. },
  1196. {
  1197. img: '../../image/the_second_pass_four_as_green_4.png',
  1198. isAnswer: 0,
  1199. status: ''
  1200. },
  1201. {
  1202. img: '../../image/the_second_pass_four_as_green_4.png',
  1203. isAnswer: 0,
  1204. status: ''
  1205. },
  1206. {
  1207. img: '../../image/the_second_pass_four_as_green_3.png',
  1208. isAnswer: 0,
  1209. status: ''
  1210. },
  1211. ],
  1212. [
  1213. {
  1214. img: '../../image/the_second_pass_four_as_green_2.png',
  1215. isAnswer: 0,
  1216. status: ''
  1217. },
  1218. {
  1219. img: '../../image/the_second_pass_four_as_green_3.png',
  1220. isAnswer: 0,
  1221. status: ''
  1222. },
  1223. {
  1224. img: '../../image/the_second_pass_four_as_green_1.png',
  1225. isAnswer: 1,
  1226. status: ''
  1227. },
  1228. {
  1229. img: '../../image/the_second_pass_four_as_green_4.png',
  1230. isAnswer: 0,
  1231. status: ''
  1232. },
  1233. {
  1234. img: '../../image/the_second_pass_four_as_green_3.png',
  1235. isAnswer: 0,
  1236. status: ''
  1237. },
  1238. {
  1239. img: '../../image/the_second_pass_four_as_green_4.png',
  1240. isAnswer: 0,
  1241. status: ''
  1242. },
  1243. {
  1244. img: '../../image/the_second_pass_four_as_green_4.png',
  1245. isAnswer: 0,
  1246. status: ''
  1247. },
  1248. {
  1249. img: '../../image/the_second_pass_four_as_green_3.png',
  1250. isAnswer: 0,
  1251. status: ''
  1252. },
  1253. ],
  1254. [
  1255. {
  1256. img: '../../image/the_second_pass_four_as_green_1.png',
  1257. isAnswer: 1,
  1258. status: ''
  1259. },
  1260. {
  1261. img: '../../image/the_second_pass_four_as_green_3.png',
  1262. isAnswer: 0,
  1263. status: ''
  1264. },
  1265. {
  1266. img: '../../image/the_second_pass_four_as_green_4.png',
  1267. isAnswer: 0,
  1268. status: ''
  1269. },
  1270. {
  1271. img: '../../image/the_second_pass_four_as_green_4.png',
  1272. isAnswer: 0,
  1273. status: ''
  1274. },
  1275. {
  1276. img: '../../image/the_second_pass_four_as_green_3.png',
  1277. isAnswer: 0,
  1278. status: ''
  1279. },
  1280. {
  1281. img: '../../image/the_second_pass_four_as_green_4.png',
  1282. isAnswer: 0,
  1283. status: ''
  1284. },
  1285. {
  1286. img: '../../image/the_second_pass_four_as_green_4.png',
  1287. isAnswer: 0,
  1288. status: ''
  1289. },
  1290. {
  1291. img: '../../image/the_second_pass_four_as_green_3.png',
  1292. isAnswer: 0,
  1293. status: ''
  1294. },
  1295. ],
  1296. [
  1297. {
  1298. img: '../../image/the_second_pass_four_as_green_2.png',
  1299. isAnswer: 0,
  1300. status: ''
  1301. },
  1302. {
  1303. img: '../../image/the_second_pass_four_as_green_2.png',
  1304. isAnswer: 0,
  1305. status: ''
  1306. },
  1307. {
  1308. img: '../../image/the_second_pass_four_as_green_3.png',
  1309. isAnswer: 0,
  1310. status: ''
  1311. },
  1312. {
  1313. img: '../../image/the_second_pass_four_as_green_4.png',
  1314. isAnswer: 0,
  1315. status: ''
  1316. },
  1317. {
  1318. img: '../../image/the_second_pass_four_as_green_3.png',
  1319. isAnswer: 0,
  1320. status: ''
  1321. },
  1322. {
  1323. img: '../../image/the_second_pass_four_as_green_4.png',
  1324. isAnswer: 0,
  1325. status: ''
  1326. },
  1327. {
  1328. img: '../../image/the_second_pass_four_as_green_1.png',
  1329. isAnswer: 1,
  1330. status: ''
  1331. },
  1332. {
  1333. img: '../../image/the_second_pass_four_as_green_3.png',
  1334. isAnswer: 0,
  1335. status: ''
  1336. },
  1337. ]
  1338. ],
  1339. threeList: [
  1340. [
  1341. {
  1342. img: '../../image/the_second_pass_four_as_green_1.png',
  1343. isAnswer: 1,
  1344. status: ''
  1345. },
  1346. {
  1347. img: '../../image/the_second_pass_four_as_green_2.png',
  1348. isAnswer: 0,
  1349. status: ''
  1350. },
  1351. {
  1352. img: '../../image/the_second_pass_four_as_green_2.png',
  1353. isAnswer: 0,
  1354. status: ''
  1355. },
  1356. {
  1357. img: '../../image/the_second_pass_four_as_green_2.png',
  1358. isAnswer: 0,
  1359. status: ''
  1360. },
  1361. {
  1362. img: '../../image/the_second_pass_four_as_green_4.png',
  1363. isAnswer: 0,
  1364. status: ''
  1365. },
  1366. {
  1367. img: '../../image/the_second_pass_four_as_green_2.png',
  1368. isAnswer: 0,
  1369. status: ''
  1370. },
  1371. {
  1372. img: '../../image/the_second_pass_four_as_green_2.png',
  1373. isAnswer: 0,
  1374. status: ''
  1375. },
  1376. {
  1377. img: '../../image/the_second_pass_four_as_green_2.png',
  1378. isAnswer: 0,
  1379. status: ''
  1380. },
  1381. ],
  1382. [
  1383. {
  1384. img: '../../image/the_second_pass_four_as_green_2.png',
  1385. isAnswer: 0,
  1386. status: ''
  1387. },
  1388. {
  1389. img: '../../image/the_second_pass_four_as_green_2.png',
  1390. isAnswer: 0,
  1391. status: ''
  1392. },
  1393. {
  1394. img: '../../image/the_second_pass_four_as_green_2.png',
  1395. isAnswer: 0,
  1396. status: ''
  1397. },
  1398. {
  1399. img: '../../image/the_second_pass_four_as_green_2.png',
  1400. isAnswer: 0,
  1401. status: ''
  1402. },
  1403. {
  1404. img: '../../image/the_second_pass_four_as_green_4.png',
  1405. isAnswer: 0,
  1406. status: ''
  1407. },
  1408. {
  1409. img: '../../image/the_second_pass_four_as_green_2.png',
  1410. isAnswer: 0,
  1411. status: ''
  1412. },
  1413. {
  1414. img: '../../image/the_second_pass_four_as_green_1.png',
  1415. isAnswer: 1,
  1416. status: ''
  1417. },
  1418. {
  1419. img: '../../image/the_second_pass_four_as_green_2.png',
  1420. isAnswer: 0,
  1421. status: ''
  1422. },
  1423. ],
  1424. [
  1425. {
  1426. img: '../../image/the_second_pass_four_as_green_1.png',
  1427. isAnswer: 0,
  1428. status: ''
  1429. },
  1430. {
  1431. img: '../../image/the_second_pass_four_as_green_1.png',
  1432. isAnswer: 0,
  1433. status: ''
  1434. },
  1435. {
  1436. img: '../../image/the_second_pass_four_as_green_3.png',
  1437. isAnswer: 0,
  1438. status: ''
  1439. },
  1440. {
  1441. img: '../../image/the_second_pass_four_as_green_1.png',
  1442. isAnswer: 0,
  1443. status: ''
  1444. },
  1445. {
  1446. img: '../../image/the_second_pass_four_as_green_4.png',
  1447. isAnswer: 1,
  1448. status: ''
  1449. },
  1450. {
  1451. img: '../../image/the_second_pass_four_as_green_1.png',
  1452. isAnswer: 0,
  1453. status: ''
  1454. },
  1455. {
  1456. img: '../../image/the_second_pass_four_as_green_1.png',
  1457. isAnswer: 0,
  1458. status: ''
  1459. },
  1460. {
  1461. img: '../../image/the_second_pass_four_as_green_1.png',
  1462. isAnswer: 0,
  1463. status: ''
  1464. },
  1465. ],
  1466. [
  1467. {
  1468. img: '../../image/the_second_pass_four_as_green_1.png',
  1469. isAnswer: 0,
  1470. status: ''
  1471. },
  1472. {
  1473. img: '../../image/the_second_pass_four_as_green_1.png',
  1474. isAnswer: 0,
  1475. status: ''
  1476. },
  1477. {
  1478. img: '../../image/the_second_pass_four_as_green_3.png',
  1479. isAnswer: 0,
  1480. status: ''
  1481. },
  1482. {
  1483. img: '../../image/the_second_pass_four_as_green_1.png',
  1484. isAnswer: 0,
  1485. status: ''
  1486. },
  1487. {
  1488. img: '../../image/the_second_pass_four_as_green_1.png',
  1489. isAnswer: 0,
  1490. status: ''
  1491. },
  1492. {
  1493. img: '../../image/the_second_pass_four_as_green_1.png',
  1494. isAnswer: 0,
  1495. status: ''
  1496. },
  1497. {
  1498. img: '../../image/the_second_pass_four_as_green_4.png',
  1499. isAnswer: 1,
  1500. status: ''
  1501. },
  1502. {
  1503. img: '../../image/the_second_pass_four_as_green_1.png',
  1504. isAnswer: 0,
  1505. status: ''
  1506. },
  1507. ],
  1508. [
  1509. {
  1510. img: '../../image/the_second_pass_four_as_green_2.png',
  1511. isAnswer: 0,
  1512. status: ''
  1513. },
  1514. {
  1515. img: '../../image/the_second_pass_four_as_green_2.png',
  1516. isAnswer: 0,
  1517. status: ''
  1518. },
  1519. {
  1520. img: '../../image/the_second_pass_four_as_green_2.png',
  1521. isAnswer: 0,
  1522. status: ''
  1523. },
  1524. {
  1525. img: '../../image/the_second_pass_four_as_green_1.png',
  1526. isAnswer: 1,
  1527. status: ''
  1528. },
  1529. {
  1530. img: '../../image/the_second_pass_four_as_green_4.png',
  1531. isAnswer: 0,
  1532. status: ''
  1533. },
  1534. {
  1535. img: '../../image/the_second_pass_four_as_green_2.png',
  1536. isAnswer: 0,
  1537. status: ''
  1538. },
  1539. {
  1540. img: '../../image/the_second_pass_four_as_green_2.png',
  1541. isAnswer: 0,
  1542. status: ''
  1543. },
  1544. {
  1545. img: '../../image/the_second_pass_four_as_green_2.png',
  1546. isAnswer: 0,
  1547. status: ''
  1548. },
  1549. ],
  1550. [
  1551. {
  1552. img: '../../image/the_second_pass_four_as_green_4.png',
  1553. isAnswer: 0,
  1554. status: ''
  1555. },
  1556. {
  1557. img: '../../image/the_second_pass_four_as_green_4.png',
  1558. isAnswer: 0,
  1559. status: ''
  1560. },
  1561. {
  1562. img: '../../image/the_second_pass_four_as_green_4.png',
  1563. isAnswer: 0,
  1564. status: ''
  1565. },
  1566. {
  1567. img: '../../image/the_second_pass_four_as_green_3.png',
  1568. isAnswer: 1,
  1569. status: ''
  1570. },
  1571. {
  1572. img: '../../image/the_second_pass_four_as_green_4.png',
  1573. isAnswer: 0,
  1574. status: ''
  1575. },
  1576. {
  1577. img: '../../image/the_second_pass_four_as_green_2.png',
  1578. isAnswer: 0,
  1579. status: ''
  1580. },
  1581. {
  1582. img: '../../image/the_second_pass_four_as_green_4.png',
  1583. isAnswer: 0,
  1584. status: ''
  1585. },
  1586. {
  1587. img: '../../image/the_second_pass_four_as_green_4.png',
  1588. isAnswer: 0,
  1589. status: ''
  1590. },
  1591. ],
  1592. [
  1593. {
  1594. img: '../../image/the_second_pass_four_as_green_4.png',
  1595. isAnswer: 0,
  1596. status: ''
  1597. },
  1598. {
  1599. img: '../../image/the_second_pass_four_as_green_4.png',
  1600. isAnswer: 0,
  1601. status: ''
  1602. },
  1603. {
  1604. img: '../../image/the_second_pass_four_as_green_4.png',
  1605. isAnswer: 0,
  1606. status: ''
  1607. },
  1608. {
  1609. img: '../../image/the_second_pass_four_as_green_2.png',
  1610. isAnswer: 0,
  1611. status: ''
  1612. },
  1613. {
  1614. img: '../../image/the_second_pass_four_as_green_4.png',
  1615. isAnswer: 0,
  1616. status: ''
  1617. },
  1618. {
  1619. img: '../../image/the_second_pass_four_as_green_4.png',
  1620. isAnswer: 0,
  1621. status: ''
  1622. },
  1623. {
  1624. img: '../../image/the_second_pass_four_as_green_3.png',
  1625. isAnswer: 1,
  1626. status: ''
  1627. },
  1628. {
  1629. img: '../../image/the_second_pass_four_as_green_4.png',
  1630. isAnswer: 0,
  1631. status: ''
  1632. },
  1633. ],
  1634. [
  1635. {
  1636. img: '../../image/the_second_pass_four_as_green_4.png',
  1637. isAnswer: 0,
  1638. status: ''
  1639. },
  1640. {
  1641. img: '../../image/the_second_pass_four_as_green_2.png',
  1642. isAnswer: 0,
  1643. status: ''
  1644. },
  1645. {
  1646. img: '../../image/the_second_pass_four_as_green_2.png',
  1647. isAnswer: 0,
  1648. status: ''
  1649. },
  1650. {
  1651. img: '../../image/the_second_pass_four_as_green_2.png',
  1652. isAnswer: 0,
  1653. status: ''
  1654. },
  1655. {
  1656. img: '../../image/the_second_pass_four_as_green_1.png',
  1657. isAnswer: 1,
  1658. status: ''
  1659. },
  1660. {
  1661. img: '../../image/the_second_pass_four_as_green_2.png',
  1662. isAnswer: 0,
  1663. status: ''
  1664. },
  1665. {
  1666. img: '../../image/the_second_pass_four_as_green_2.png',
  1667. isAnswer: 0,
  1668. status: ''
  1669. },
  1670. {
  1671. img: '../../image/the_second_pass_four_as_green_2.png',
  1672. isAnswer: 0,
  1673. status: ''
  1674. },
  1675. ],
  1676. [
  1677. {
  1678. img: '../../image/the_second_pass_four_as_green_1.png',
  1679. isAnswer: 0,
  1680. status: ''
  1681. },
  1682. {
  1683. img: '../../image/the_second_pass_four_as_green_1.png',
  1684. isAnswer: 0,
  1685. status: ''
  1686. },
  1687. {
  1688. img: '../../image/the_second_pass_four_as_green_1.png',
  1689. isAnswer: 0,
  1690. status: ''
  1691. },
  1692. {
  1693. img: '../../image/the_second_pass_four_as_green_3.png',
  1694. isAnswer: 0,
  1695. status: ''
  1696. },
  1697. {
  1698. img: '../../image/the_second_pass_four_as_green_1.png',
  1699. isAnswer: 0,
  1700. status: ''
  1701. },
  1702. {
  1703. img: '../../image/the_second_pass_four_as_green_2.png',
  1704. isAnswer: 1,
  1705. status: ''
  1706. },
  1707. {
  1708. img: '../../image/the_second_pass_four_as_green_1.png',
  1709. isAnswer: 0,
  1710. status: ''
  1711. },
  1712. {
  1713. img: '../../image/the_second_pass_four_as_green_1.png',
  1714. isAnswer: 0,
  1715. status: ''
  1716. },
  1717. ],
  1718. [
  1719. {
  1720. img: '../../image/the_second_pass_four_as_green_2.png',
  1721. isAnswer: 0,
  1722. status: ''
  1723. },
  1724. {
  1725. img: '../../image/the_second_pass_four_as_green_2.png',
  1726. isAnswer: 0,
  1727. status: ''
  1728. },
  1729. {
  1730. img: '../../image/the_second_pass_four_as_green_2.png',
  1731. isAnswer: 0,
  1732. status: ''
  1733. },
  1734. {
  1735. img: '../../image/the_second_pass_four_as_green_2.png',
  1736. isAnswer: 0,
  1737. status: ''
  1738. },
  1739. {
  1740. img: '../../image/the_second_pass_four_as_green_4.png',
  1741. isAnswer: 0,
  1742. status: ''
  1743. },
  1744. {
  1745. img: '../../image/the_second_pass_four_as_green_2.png',
  1746. isAnswer: 0,
  1747. status: ''
  1748. },
  1749. {
  1750. img: '../../image/the_second_pass_four_as_green_2.png',
  1751. isAnswer: 0,
  1752. status: ''
  1753. },
  1754. {
  1755. img: '../../image/the_second_pass_four_as_green_1.png',
  1756. isAnswer: 1,
  1757. status: ''
  1758. },
  1759. ],
  1760. ],
  1761. fourList: [
  1762. [
  1763. {
  1764. img: '../../image/the_fourth_pass_four_as_S.png',
  1765. isAnswer: 0,
  1766. status: ''
  1767. },
  1768. {
  1769. img: '../../image/the_fourth_pass_four_as_S.png',
  1770. isAnswer: 0,
  1771. status: ''
  1772. },
  1773. {
  1774. img: '../../image/the_fourth_pass_four_as_P.png',
  1775. isAnswer: 1,
  1776. status: ''
  1777. },
  1778. {
  1779. img: '../../image/the_fourth_pass_four_as_S.png',
  1780. isAnswer: 0,
  1781. status: ''
  1782. },
  1783. {
  1784. img: '../../image/the_fourth_pass_four_as_S.png',
  1785. isAnswer: 0,
  1786. status: ''
  1787. },
  1788. {
  1789. img: '../../image/the_fourth_pass_four_as_S.png',
  1790. isAnswer: 0,
  1791. status: ''
  1792. },
  1793. {
  1794. img: '../../image/the_fourth_pass_four_as_S.png',
  1795. isAnswer: 0,
  1796. status: ''
  1797. },
  1798. {
  1799. img: '../../image/the_fourth_pass_four_as_S.png',
  1800. isAnswer: 0,
  1801. status: ''
  1802. },
  1803. ],
  1804. [
  1805. {
  1806. img: '../../image/the_fourth_pass_four_as_P.png',
  1807. isAnswer: 0,
  1808. status: ''
  1809. },
  1810. {
  1811. img: '../../image/the_fourth_pass_four_as_P.png',
  1812. isAnswer: 0,
  1813. status: ''
  1814. },
  1815. {
  1816. img: '../../image/the_fourth_pass_four_as_P.png',
  1817. isAnswer: 0,
  1818. status: ''
  1819. },
  1820. {
  1821. img: '../../image/the_fourth_pass_four_as_E.png',
  1822. isAnswer: 1,
  1823. status: ''
  1824. },
  1825. {
  1826. img: '../../image/the_fourth_pass_four_as_P.png',
  1827. isAnswer: 0,
  1828. status: ''
  1829. },
  1830. {
  1831. img: '../../image/the_fourth_pass_four_as_P.png',
  1832. isAnswer: 0,
  1833. status: ''
  1834. },
  1835. {
  1836. img: '../../image/the_fourth_pass_four_as_P.png',
  1837. isAnswer: 0,
  1838. status: ''
  1839. },
  1840. {
  1841. img: '../../image/the_fourth_pass_four_as_P.png',
  1842. isAnswer: 0,
  1843. status: ''
  1844. },
  1845. ],
  1846. [
  1847. {
  1848. img: '../../image/the_fourth_pass_four_as_P.png',
  1849. isAnswer: 0,
  1850. status: ''
  1851. },
  1852. {
  1853. img: '../../image/the_fourth_pass_four_as_P.png',
  1854. isAnswer: 0,
  1855. status: ''
  1856. },
  1857. {
  1858. img: '../../image/the_fourth_pass_four_as_P.png',
  1859. isAnswer: 0,
  1860. status: ''
  1861. },
  1862. {
  1863. img: '../../image/the_fourth_pass_four_as_P.png',
  1864. isAnswer: 0,
  1865. status: ''
  1866. },
  1867. {
  1868. img: '../../image/the_fourth_pass_four_as_P.png',
  1869. isAnswer: 0,
  1870. status: ''
  1871. },
  1872. {
  1873. img: '../../image/the_fourth_pass_four_as_E.png',
  1874. isAnswer: 1,
  1875. status: ''
  1876. },
  1877. {
  1878. img: '../../image/the_fourth_pass_four_as_P.png',
  1879. isAnswer: 0,
  1880. status: ''
  1881. },
  1882. {
  1883. img: '../../image/the_fourth_pass_four_as_P.png',
  1884. isAnswer: 0,
  1885. status: ''
  1886. },
  1887. ],
  1888. [
  1889. {
  1890. img: '../../image/the_fourth_pass_four_as_S.png',
  1891. isAnswer: 0,
  1892. status: ''
  1893. },
  1894. {
  1895. img: '../../image/the_fourth_pass_four_as_S.png',
  1896. isAnswer: 0,
  1897. status: ''
  1898. },
  1899. {
  1900. img: '../../image/the_fourth_pass_four_as_S.png',
  1901. isAnswer: 0,
  1902. status: ''
  1903. },
  1904. {
  1905. img: '../../image/the_fourth_pass_four_as_E.png',
  1906. isAnswer: 1,
  1907. status: ''
  1908. },
  1909. {
  1910. img: '../../image/the_fourth_pass_four_as_S.png',
  1911. isAnswer: 0,
  1912. status: ''
  1913. },
  1914. {
  1915. img: '../../image/the_fourth_pass_four_as_S.png',
  1916. isAnswer: 0,
  1917. status: ''
  1918. },
  1919. {
  1920. img: '../../image/the_fourth_pass_four_as_S.png',
  1921. isAnswer: 0,
  1922. status: ''
  1923. },
  1924. {
  1925. img: '../../image/the_fourth_pass_four_as_S.png',
  1926. isAnswer: 0,
  1927. status: ''
  1928. },
  1929. ],
  1930. [
  1931. {
  1932. img: '../../image/the_fourth_pass_four_as_P.png',
  1933. isAnswer: 0,
  1934. status: ''
  1935. },
  1936. {
  1937. img: '../../image/the_fourth_pass_four_as_E.png',
  1938. isAnswer: 1,
  1939. status: ''
  1940. },
  1941. {
  1942. img: '../../image/the_fourth_pass_four_as_P.png',
  1943. isAnswer: 0,
  1944. status: ''
  1945. },
  1946. {
  1947. img: '../../image/the_fourth_pass_four_as_P.png',
  1948. isAnswer: 0,
  1949. status: ''
  1950. },
  1951. {
  1952. img: '../../image/the_fourth_pass_four_as_P.png',
  1953. isAnswer: 0,
  1954. status: ''
  1955. },
  1956. {
  1957. img: '../../image/the_fourth_pass_four_as_P.png',
  1958. isAnswer: 0,
  1959. status: ''
  1960. },
  1961. {
  1962. img: '../../image/the_fourth_pass_four_as_P.png',
  1963. isAnswer: 0,
  1964. status: ''
  1965. },
  1966. {
  1967. img: '../../image/the_fourth_pass_four_as_P.png',
  1968. isAnswer: 0,
  1969. status: ''
  1970. },
  1971. ],
  1972. [
  1973. {
  1974. img: '../../image/the_fourth_pass_four_as_E.png',
  1975. isAnswer: 0,
  1976. status: ''
  1977. },
  1978. {
  1979. img: '../../image/the_fourth_pass_four_as_E.png',
  1980. isAnswer: 0,
  1981. status: ''
  1982. },
  1983. {
  1984. img: '../../image/the_fourth_pass_four_as_E.png',
  1985. isAnswer: 0,
  1986. status: ''
  1987. },
  1988. {
  1989. img: '../../image/the_fourth_pass_four_as_E.png',
  1990. isAnswer: 0,
  1991. status: ''
  1992. },
  1993. {
  1994. img: '../../image/the_fourth_pass_four_as_S.png',
  1995. isAnswer:1,
  1996. status: ''
  1997. },
  1998. {
  1999. img: '../../image/the_fourth_pass_four_as_E.png',
  2000. isAnswer: 0,
  2001. status: ''
  2002. },
  2003. {
  2004. img: '../../image/the_fourth_pass_four_as_E.png',
  2005. isAnswer: 0,
  2006. status: ''
  2007. },
  2008. {
  2009. img: '../../image/the_fourth_pass_four_as_E.png',
  2010. isAnswer: 0,
  2011. status: ''
  2012. },
  2013. ],
  2014. [
  2015. {
  2016. img: '../../image/the_fourth_pass_four_as_E.png',
  2017. isAnswer: 0,
  2018. status: ''
  2019. },
  2020. {
  2021. img: '../../image/the_fourth_pass_four_as_E.png',
  2022. isAnswer: 0,
  2023. status: ''
  2024. },
  2025. {
  2026. img: '../../image/the_fourth_pass_four_as_S.png',
  2027. isAnswer:1,
  2028. status: ''
  2029. },
  2030. {
  2031. img: '../../image/the_fourth_pass_four_as_E.png',
  2032. isAnswer: 0,
  2033. status: ''
  2034. },
  2035. {
  2036. img: '../../image/the_fourth_pass_four_as_E.png',
  2037. isAnswer: 0,
  2038. status: ''
  2039. },
  2040. {
  2041. img: '../../image/the_fourth_pass_four_as_E.png',
  2042. isAnswer: 0,
  2043. status: ''
  2044. },
  2045. {
  2046. img: '../../image/the_fourth_pass_four_as_E.png',
  2047. isAnswer: 0,
  2048. status: ''
  2049. },
  2050. {
  2051. img: '../../image/the_fourth_pass_four_as_E.png',
  2052. isAnswer: 0,
  2053. status: ''
  2054. },
  2055. ],
  2056. [
  2057. {
  2058. img: '../../image/the_fourth_pass_four_as_S.png',
  2059. isAnswer: 0,
  2060. status: ''
  2061. },
  2062. {
  2063. img: '../../image/the_fourth_pass_four_as_S.png',
  2064. isAnswer: 0,
  2065. status: ''
  2066. },
  2067. {
  2068. img: '../../image/the_fourth_pass_four_as_S.png',
  2069. isAnswer: 0,
  2070. status: ''
  2071. },
  2072. {
  2073. img: '../../image/the_fourth_pass_four_as_S.png',
  2074. isAnswer: 0,
  2075. status: ''
  2076. },
  2077. {
  2078. img: '../../image/the_fourth_pass_four_as_S.png',
  2079. isAnswer: 0,
  2080. status: ''
  2081. },
  2082. {
  2083. img: '../../image/the_fourth_pass_four_as_S.png',
  2084. isAnswer: 0,
  2085. status: ''
  2086. },
  2087. {
  2088. img: '../../image/the_fourth_pass_four_as_E.png',
  2089. isAnswer: 1,
  2090. status: ''
  2091. },
  2092. {
  2093. img: '../../image/the_fourth_pass_four_as_S.png',
  2094. isAnswer: 0,
  2095. status: ''
  2096. },
  2097. ],
  2098. [
  2099. {
  2100. img: '../../image/the_fourth_pass_four_as_P.png',
  2101. isAnswer: 0,
  2102. status: ''
  2103. },
  2104. {
  2105. img: '../../image/the_fourth_pass_four_as_P.png',
  2106. isAnswer: 0,
  2107. status: ''
  2108. },
  2109. {
  2110. img: '../../image/the_fourth_pass_four_as_P.png',
  2111. isAnswer: 0,
  2112. status: ''
  2113. },
  2114. {
  2115. img: '../../image/the_fourth_pass_four_as_P.png',
  2116. isAnswer: 0,
  2117. status: ''
  2118. },
  2119. {
  2120. img: '../../image/the_fourth_pass_four_as_S.png',
  2121. isAnswer: 1,
  2122. status: ''
  2123. },
  2124. {
  2125. img: '../../image/the_fourth_pass_four_as_P.png',
  2126. isAnswer: 0,
  2127. status: ''
  2128. },
  2129. {
  2130. img: '../../image/the_fourth_pass_four_as_P.png',
  2131. isAnswer: 0,
  2132. status: ''
  2133. },
  2134. {
  2135. img: '../../image/the_fourth_pass_four_as_P.png',
  2136. isAnswer: 0,
  2137. status: ''
  2138. },
  2139. ],
  2140. [
  2141. {
  2142. img: '../../image/the_fourth_pass_four_as_S.png',
  2143. isAnswer: 0,
  2144. status: ''
  2145. },
  2146. {
  2147. img: '../../image/the_fourth_pass_four_as_S.png',
  2148. isAnswer: 0,
  2149. status: ''
  2150. },
  2151. {
  2152. img: '../../image/the_fourth_pass_four_as_S.png',
  2153. isAnswer: 0,
  2154. status: ''
  2155. },
  2156. {
  2157. img: '../../image/the_fourth_pass_four_as_S.png',
  2158. isAnswer: 0,
  2159. status: ''
  2160. },
  2161. {
  2162. img: '../../image/the_fourth_pass_four_as_P.png',
  2163. isAnswer: 1,
  2164. status: ''
  2165. },
  2166. {
  2167. img: '../../image/the_fourth_pass_four_as_S.png',
  2168. isAnswer: 0,
  2169. status: ''
  2170. },
  2171. {
  2172. img: '../../image/the_fourth_pass_four_as_S.png',
  2173. isAnswer: 0,
  2174. status: ''
  2175. },
  2176. {
  2177. img: '../../image/the_fourth_pass_four_as_S.png',
  2178. isAnswer: 0,
  2179. status: ''
  2180. },
  2181. ],
  2182. ],
  2183. fiveList: [
  2184. [
  2185. {
  2186. img: '../../image/the_fourth_pass_four_as_P.png',
  2187. isAnswer: 0,
  2188. status: ''
  2189. },
  2190. {
  2191. img: '../../image/the_fourth_pass_four_as_P.png',
  2192. isAnswer: 0,
  2193. status: ''
  2194. },
  2195. {
  2196. img: '../../image/the_fourth_pass_four_as_P.png',
  2197. isAnswer: 0,
  2198. status: ''
  2199. },
  2200. {
  2201. img: '../../image/the_fourth_pass_four_as_E.png',
  2202. isAnswer: 1,
  2203. status: ''
  2204. },
  2205. {
  2206. img: '../../image/the_fourth_pass_four_as_P.png',
  2207. isAnswer: 0,
  2208. status: ''
  2209. },
  2210. {
  2211. img: '../../image/the_fourth_pass_four_as_P.png',
  2212. isAnswer: 0,
  2213. status: ''
  2214. },
  2215. {
  2216. img: '../../image/the_fourth_pass_four_as_P.png',
  2217. isAnswer: 0,
  2218. status: ''
  2219. },
  2220. {
  2221. img: '../../image/the_fourth_pass_four_as_P.png',
  2222. isAnswer: 0,
  2223. status: ''
  2224. },
  2225. ],
  2226. [
  2227. {
  2228. img: '../../image/the_fourth_pass_four_as_P.png',
  2229. isAnswer: 0,
  2230. status: ''
  2231. },
  2232. {
  2233. img: '../../image/the_fourth_pass_four_as_P.png',
  2234. isAnswer: 0,
  2235. status: ''
  2236. },
  2237. {
  2238. img: '../../image/the_fourth_pass_four_as_P.png',
  2239. isAnswer: 0,
  2240. status: ''
  2241. },
  2242. {
  2243. img: '../../image/the_fourth_pass_four_as_P.png',
  2244. isAnswer: 0,
  2245. status: ''
  2246. },
  2247. {
  2248. img: '../../image/the_fourth_pass_four_as_P.png',
  2249. isAnswer: 0,
  2250. status: ''
  2251. },
  2252. {
  2253. img: '../../image/the_fourth_pass_four_as_E.png',
  2254. isAnswer: 1,
  2255. status: ''
  2256. },
  2257. {
  2258. img: '../../image/the_fourth_pass_four_as_P.png',
  2259. isAnswer: 0,
  2260. status: ''
  2261. },
  2262. {
  2263. img: '../../image/the_fourth_pass_four_as_P.png',
  2264. isAnswer: 0,
  2265. status: ''
  2266. },
  2267. ],
  2268. [
  2269. {
  2270. img: '../../image/the_fourth_pass_four_as_S.png',
  2271. isAnswer: 0,
  2272. status: ''
  2273. },
  2274. {
  2275. img: '../../image/the_fourth_pass_four_as_S.png',
  2276. isAnswer: 0,
  2277. status: ''
  2278. },
  2279. {
  2280. img: '../../image/the_fourth_pass_four_as_S.png',
  2281. isAnswer: 0,
  2282. status: ''
  2283. },
  2284. {
  2285. img: '../../image/the_fourth_pass_four_as_E.png',
  2286. isAnswer: 1,
  2287. status: ''
  2288. },
  2289. {
  2290. img: '../../image/the_fourth_pass_four_as_S.png',
  2291. isAnswer: 0,
  2292. status: ''
  2293. },
  2294. {
  2295. img: '../../image/the_fourth_pass_four_as_S.png',
  2296. isAnswer: 0,
  2297. status: ''
  2298. },
  2299. {
  2300. img: '../../image/the_fourth_pass_four_as_S.png',
  2301. isAnswer: 0,
  2302. status: ''
  2303. },
  2304. {
  2305. img: '../../image/the_fourth_pass_four_as_S.png',
  2306. isAnswer: 0,
  2307. status: ''
  2308. },
  2309. ],
  2310. [
  2311. {
  2312. img: '../../image/the_fourth_pass_four_as_S.png',
  2313. isAnswer: 0,
  2314. status: ''
  2315. },
  2316. {
  2317. img: '../../image/the_fourth_pass_four_as_S.png',
  2318. isAnswer: 0,
  2319. status: ''
  2320. },
  2321. {
  2322. img: '../../image/the_fourth_pass_four_as_S.png',
  2323. isAnswer: 0,
  2324. status: ''
  2325. },
  2326. {
  2327. img: '../../image/the_fourth_pass_four_as_S.png',
  2328. isAnswer: 0,
  2329. status: ''
  2330. },
  2331. {
  2332. img: '../../image/the_fourth_pass_four_as_S.png',
  2333. isAnswer: 0,
  2334. status: ''
  2335. },
  2336. {
  2337. img: '../../image/the_fourth_pass_four_as_S.png',
  2338. isAnswer: 0,
  2339. status: ''
  2340. },
  2341. {
  2342. img: '../../image/the_fourth_pass_four_as_E.png',
  2343. isAnswer: 1,
  2344. status: ''
  2345. },
  2346. {
  2347. img: '../../image/the_fourth_pass_four_as_S.png',
  2348. isAnswer: 0,
  2349. status: ''
  2350. },
  2351. ],
  2352. [
  2353. {
  2354. img: '../../image/the_fourth_pass_four_as_P.png',
  2355. isAnswer: 0,
  2356. status: ''
  2357. },
  2358. {
  2359. img: '../../image/the_fourth_pass_four_as_P.png',
  2360. isAnswer: 0,
  2361. status: ''
  2362. },
  2363. {
  2364. img: '../../image/the_fourth_pass_four_as_P.png',
  2365. isAnswer: 0,
  2366. status: ''
  2367. },
  2368. {
  2369. img: '../../image/the_fourth_pass_four_as_P.png',
  2370. isAnswer: 0,
  2371. status: ''
  2372. },
  2373. {
  2374. img: '../../image/the_fourth_pass_four_as_S.png',
  2375. isAnswer: 1,
  2376. status: ''
  2377. },
  2378. {
  2379. img: '../../image/the_fourth_pass_four_as_P.png',
  2380. isAnswer: 0,
  2381. status: ''
  2382. },
  2383. {
  2384. img: '../../image/the_fourth_pass_four_as_P.png',
  2385. isAnswer: 0,
  2386. status: ''
  2387. },
  2388. {
  2389. img: '../../image/the_fourth_pass_four_as_P.png',
  2390. isAnswer: 0,
  2391. status: ''
  2392. },
  2393. ],
  2394. [
  2395. {
  2396. img: '../../image/the_fourth_pass_four_as_S.png',
  2397. isAnswer: 0,
  2398. status: ''
  2399. },
  2400. {
  2401. img: '../../image/the_fourth_pass_four_as_S.png',
  2402. isAnswer: 0,
  2403. status: ''
  2404. },
  2405. {
  2406. img: '../../image/the_fourth_pass_four_as_S.png',
  2407. isAnswer: 0,
  2408. status: ''
  2409. },
  2410. {
  2411. img: '../../image/the_fourth_pass_four_as_S.png',
  2412. isAnswer: 0,
  2413. status: ''
  2414. },
  2415. {
  2416. img: '../../image/the_fourth_pass_four_as_P.png',
  2417. isAnswer: 1,
  2418. status: ''
  2419. },
  2420. {
  2421. img: '../../image/the_fourth_pass_four_as_S.png',
  2422. isAnswer: 0,
  2423. status: ''
  2424. },
  2425. {
  2426. img: '../../image/the_fourth_pass_four_as_S.png',
  2427. isAnswer: 0,
  2428. status: ''
  2429. },
  2430. {
  2431. img: '../../image/the_fourth_pass_four_as_S.png',
  2432. isAnswer: 0,
  2433. status: ''
  2434. },
  2435. ],
  2436. [
  2437. {
  2438. img: '../../image/the_fourth_pass_four_as_S.png',
  2439. isAnswer: 0,
  2440. status: ''
  2441. },
  2442. {
  2443. img: '../../image/the_fourth_pass_four_as_S.png',
  2444. isAnswer: 0,
  2445. status: ''
  2446. },
  2447. {
  2448. img: '../../image/the_fourth_pass_four_as_P.png',
  2449. isAnswer: 1,
  2450. status: ''
  2451. },
  2452. {
  2453. img: '../../image/the_fourth_pass_four_as_S.png',
  2454. isAnswer: 0,
  2455. status: ''
  2456. },
  2457. {
  2458. img: '../../image/the_fourth_pass_four_as_S.png',
  2459. isAnswer: 0,
  2460. status: ''
  2461. },
  2462. {
  2463. img: '../../image/the_fourth_pass_four_as_S.png',
  2464. isAnswer: 0,
  2465. status: ''
  2466. },
  2467. {
  2468. img: '../../image/the_fourth_pass_four_as_S.png',
  2469. isAnswer: 0,
  2470. status: ''
  2471. },
  2472. {
  2473. img: '../../image/the_fourth_pass_four_as_S.png',
  2474. isAnswer: 0,
  2475. status: ''
  2476. },
  2477. ],
  2478. [
  2479. {
  2480. img: '../../image/the_fourth_pass_four_as_P.png',
  2481. isAnswer: 0,
  2482. status: ''
  2483. },
  2484. {
  2485. img: '../../image/the_fourth_pass_four_as_E.png',
  2486. isAnswer: 1,
  2487. status: ''
  2488. },
  2489. {
  2490. img: '../../image/the_fourth_pass_four_as_P.png',
  2491. isAnswer: 0,
  2492. status: ''
  2493. },
  2494. {
  2495. img: '../../image/the_fourth_pass_four_as_P.png',
  2496. isAnswer: 0,
  2497. status: ''
  2498. },
  2499. {
  2500. img: '../../image/the_fourth_pass_four_as_P.png',
  2501. isAnswer: 0,
  2502. status: ''
  2503. },
  2504. {
  2505. img: '../../image/the_fourth_pass_four_as_P.png',
  2506. isAnswer: 0,
  2507. status: ''
  2508. },
  2509. {
  2510. img: '../../image/the_fourth_pass_four_as_P.png',
  2511. isAnswer: 0,
  2512. status: ''
  2513. },
  2514. {
  2515. img: '../../image/the_fourth_pass_four_as_P.png',
  2516. isAnswer: 0,
  2517. status: ''
  2518. },
  2519. ],
  2520. [
  2521. {
  2522. img: '../../image/the_fourth_pass_four_as_E.png',
  2523. isAnswer: 0,
  2524. status: ''
  2525. },
  2526. {
  2527. img: '../../image/the_fourth_pass_four_as_E.png',
  2528. isAnswer: 0,
  2529. status: ''
  2530. },
  2531. {
  2532. img: '../../image/the_fourth_pass_four_as_E.png',
  2533. isAnswer: 0,
  2534. status: ''
  2535. },
  2536. {
  2537. img: '../../image/the_fourth_pass_four_as_E.png',
  2538. isAnswer: 0,
  2539. status: ''
  2540. },
  2541. {
  2542. img: '../../image/the_fourth_pass_four_as_S.png',
  2543. isAnswer:1,
  2544. status: ''
  2545. },
  2546. {
  2547. img: '../../image/the_fourth_pass_four_as_E.png',
  2548. isAnswer: 0,
  2549. status: ''
  2550. },
  2551. {
  2552. img: '../../image/the_fourth_pass_four_as_E.png',
  2553. isAnswer: 0,
  2554. status: ''
  2555. },
  2556. {
  2557. img: '../../image/the_fourth_pass_four_as_E.png',
  2558. isAnswer: 0,
  2559. status: ''
  2560. },
  2561. ],
  2562. [
  2563. {
  2564. img: '../../image/the_fourth_pass_four_as_E.png',
  2565. isAnswer: 0,
  2566. status: ''
  2567. },
  2568. {
  2569. img: '../../image/the_fourth_pass_four_as_E.png',
  2570. isAnswer: 0,
  2571. status: ''
  2572. },
  2573. {
  2574. img: '../../image/the_fourth_pass_four_as_S.png',
  2575. isAnswer:1,
  2576. status: ''
  2577. },
  2578. {
  2579. img: '../../image/the_fourth_pass_four_as_E.png',
  2580. isAnswer: 0,
  2581. status: ''
  2582. },
  2583. {
  2584. img: '../../image/the_fourth_pass_four_as_E.png',
  2585. isAnswer: 0,
  2586. status: ''
  2587. },
  2588. {
  2589. img: '../../image/the_fourth_pass_four_as_E.png',
  2590. isAnswer: 0,
  2591. status: ''
  2592. },
  2593. {
  2594. img: '../../image/the_fourth_pass_four_as_E.png',
  2595. isAnswer: 0,
  2596. status: ''
  2597. },
  2598. {
  2599. img: '../../image/the_fourth_pass_four_as_E.png',
  2600. isAnswer: 0,
  2601. status: ''
  2602. },
  2603. ]
  2604. ],
  2605. sjssList:[
  2606. {
  2607. score:0
  2608. },
  2609. {
  2610. score: 0
  2611. },
  2612. {
  2613. score: 0
  2614. },
  2615. {
  2616. score: 0
  2617. },
  2618. {
  2619. score: 0
  2620. },
  2621. {
  2622. score: 0
  2623. },
  2624. {
  2625. score: 0
  2626. },
  2627. {
  2628. score: 0
  2629. },
  2630. {
  2631. score: 0
  2632. },
  2633. {
  2634. score: 0
  2635. }
  2636. ]
  2637. },
  2638. /**
  2639. * 生命周期函数--监听页面加载
  2640. */
  2641. onLoad: function (options) {
  2642. console.log(options)
  2643. this.setData(options)
  2644. this.randomNumber()
  2645. },
  2646. /**
  2647. * 生命周期函数--监听页面初次渲染完成
  2648. */
  2649. onReady: function () {
  2650. },
  2651. /**
  2652. * 生命周期函数--监听页面显示
  2653. */
  2654. onShow: function () {
  2655. },
  2656. /**
  2657. * 生命周期函数--监听页面隐藏
  2658. */
  2659. onHide: function () {
  2660. },
  2661. /**
  2662. * 生命周期函数--监听页面卸载
  2663. */
  2664. onUnload: function () {
  2665. },
  2666. /**
  2667. * 页面相关事件处理函数--监听用户下拉动作
  2668. */
  2669. onPullDownRefresh: function () {
  2670. },
  2671. /**
  2672. * 页面上拉触底事件的处理函数
  2673. */
  2674. onReachBottom: function () {
  2675. },
  2676. /**
  2677. * 用户点击右上角分享
  2678. */
  2679. onShareAppMessage: function () {
  2680. },
  2681. /**
  2682. * 底部导航跳转
  2683. */
  2684. redirectCtl: app.redirectCtl,
  2685. /**
  2686. * 返回上一级页面
  2687. */
  2688. blockCtl: function () {
  2689. this.redirectCtl({ url: 'me', method: {} }, true)
  2690. this.endSetInter();
  2691. },
  2692. /**
  2693. * 开始答题
  2694. */
  2695. actionAnswer: function () {
  2696. const { isSjss } = this.data;
  2697. var that=this;
  2698. // this.setCountDown()
  2699. this.setData({ isSjss: false })
  2700. setTimeout(function () {
  2701. that.setData({ isOneImgShow:true})
  2702. }, 500)
  2703. },
  2704. /**
  2705. * 随机数
  2706. */
  2707. randomNumber:function(){
  2708. this.setData({
  2709. role0: Math.floor(Math.random() * 360),
  2710. role1: Math.floor(Math.random() * 360),
  2711. role2: Math.floor(Math.random() * 360),
  2712. role3: Math.floor(Math.random() * 360),
  2713. role4: Math.floor(Math.random() * 360),
  2714. role5: Math.floor(Math.random() * 360),
  2715. role6: Math.floor(Math.random() * 360),
  2716. role7: Math.floor(Math.random() * 360)
  2717. })
  2718. },
  2719. /**
  2720. * 积分规则处理
  2721. */
  2722. integraeRule: function (bindex,ts) {
  2723. const { ageGroup, times} = this.data;
  2724. var that = this;
  2725. var temp={};
  2726. that.saveCase(ts)
  2727. // console.log(bindex)
  2728. if (ts==1){
  2729. if(bindex<=10){
  2730. if (0<ageGroup&&ageGroup <= 8) {
  2731. if(0<times&&times<1.4){
  2732. temp[`sjssList[${bindex}].score`] = 5;
  2733. }else if(1.4<=times&&times<=1.7){
  2734. temp[`sjssList[${bindex}].score`] = 4;
  2735. }else if(times>1.7){
  2736. temp[`sjssList[${bindex}].score`] = 3;
  2737. }
  2738. }else if (9<=ageGroup&&ageGroup <= 12) {
  2739. if(0<times&&times<1.2){
  2740. temp[`sjssList[${bindex}].score`] = 5;
  2741. }else if(1.2<=times&&times<=1.5){
  2742. temp[`sjssList[${bindex}].score`] = 4;
  2743. }else if(times>1.5){
  2744. temp[`sjssList[${bindex}].score`] = 3;
  2745. }
  2746. }else if (13<=ageGroup&&ageGroup <= 15) {
  2747. if(0<times&&times<1){
  2748. temp[`sjssList[${bindex}].score`] = 5;
  2749. }else if(1<=times&&times<=1.2){
  2750. temp[`sjssList[${bindex}].score`] = 4;
  2751. }else if(times>1.2){
  2752. temp[`sjssList[${bindex}].score`] = 3;
  2753. }
  2754. }else if (16<=ageGroup&&ageGroup <= 35) {
  2755. if(0<times&&times<0.8){
  2756. temp[`sjssList[${bindex}].score`] = 5;
  2757. }else if(0.8<=times&&times<=1.1){
  2758. temp[`sjssList[${bindex}].score`] = 4;
  2759. }else if(times>1.1){
  2760. temp[`sjssList[${bindex}].score`] =3;
  2761. }
  2762. }else if (36<=ageGroup&&ageGroup <= 49) {
  2763. if(0<times&&times<1){
  2764. temp[`sjssList[${bindex}].score`] = 5;
  2765. }else if(1<=times&&times<=1.2){
  2766. temp[`sjssList[${bindex}].score`] = 4;
  2767. }else if(times>1.2){
  2768. temp[`sjssList[${bindex}].score`] = 3;
  2769. }
  2770. }else if (50<=ageGroup&&ageGroup <= 60) {
  2771. if(0<times&&times<1.2){
  2772. temp[`sjssList[${bindex}].score`] = 5;
  2773. }else if(1.2<=times&&times<=1.5){
  2774. temp[`sjssList[${bindex}].score`] = 4;
  2775. }else if(times>1.5){
  2776. temp[`sjssList[${bindex}].score`] = 3;
  2777. }
  2778. }else if (ageGroup>60) {
  2779. if(0<times&&times<1.4){
  2780. temp[`sjssList[${bindex}].score`] = 5;
  2781. }else if(1.4<=times&&times<=1.7){
  2782. temp[`sjssList[${bindex}].score`] = 4;
  2783. }else if(times>1.7){
  2784. temp[`sjssList[${bindex}].score`] = 3;
  2785. }
  2786. }
  2787. }else{
  2788. if (0<ageGroup&&ageGroup <= 8) {
  2789. if(0<times&&times<1.5){
  2790. temp[`sjssList[${bindex}].score`] = 5;
  2791. }else if(1.5<=times&&times<=1.8){
  2792. temp[`sjssList[${bindex}].score`] = 4;
  2793. }else if(times>1.8){
  2794. temp[`sjssList[${bindex}].score`] = 3;
  2795. }
  2796. }else if (9<=ageGroup&&ageGroup <= 12) {
  2797. if(0<times&&times<1.3){
  2798. temp[`sjssList[${bindex}].score`] = 5;
  2799. }else if(1.3<=times&&times<=1.6){
  2800. temp[`sjssList[${bindex}].score`] = 4;
  2801. }else if(times>1.6){
  2802. temp[`sjssList[${bindex}].score`] = 3;
  2803. }
  2804. }else if (13<=ageGroup&&ageGroup <= 15) {
  2805. if(0<times&&times<1.1){
  2806. temp[`sjssList[${bindex}].score`] = 5;
  2807. }else if(1.1<=times&&times<=1.4){
  2808. temp[`sjssList[${bindex}].score`] = 4;
  2809. }else if(times>1.4){
  2810. temp[`sjssList[${bindex}].score`] = 3;
  2811. }
  2812. }else if (16<=ageGroup&&ageGroup <= 35) {
  2813. if(0<times&&times<0.8){
  2814. temp[`sjssList[${bindex}].score`] = 5;
  2815. }else if(0.8<=times&&times<=1.3){
  2816. temp[`sjssList[${bindex}].score`] = 4;
  2817. }else if(times>1.3){
  2818. temp[`sjssList[${bindex}].score`] =3;
  2819. }
  2820. }else if (36<=ageGroup&&ageGroup <= 49) {
  2821. if(0<times&&times<1.1){
  2822. temp[`sjssList[${bindex}].score`] = 5;
  2823. }else if(1.1<=times&&times<=1.4){
  2824. temp[`sjssList[${bindex}].score`] = 4;
  2825. }else if(times>1.4){
  2826. temp[`sjssList[${bindex}].score`] = 3;
  2827. }
  2828. }else if (50<=ageGroup&&ageGroup <= 60) {
  2829. if(0<times&&times<1.3){
  2830. temp[`sjssList[${bindex}].score`] = 5;
  2831. }else if(1.3<=times&&times<=1.6){
  2832. temp[`sjssList[${bindex}].score`] = 4;
  2833. }else if(times>1.6){
  2834. temp[`sjssList[${bindex}].score`] = 3;
  2835. }
  2836. }else if (ageGroup>60) {
  2837. if(0<times&&times<1.5){
  2838. temp[`sjssList[${bindex}].score`] = 5;
  2839. }else if(1.5<=times&&times<=1.8){
  2840. temp[`sjssList[${bindex}].score`] = 4;
  2841. }else if(times>1.8){
  2842. temp[`sjssList[${bindex}].score`] = 3;
  2843. }
  2844. }
  2845. }
  2846. setTimeout(
  2847. function () {
  2848. that.endSetInter();
  2849. if (bindex == 19) {
  2850. that.tenEndTimes()
  2851. }
  2852. // that.startSetInter()
  2853. }, 150)
  2854. }else{
  2855. temp[`sjssList[${bindex}].score`] = 0
  2856. }
  2857. that.setData(temp)
  2858. // console.log(temp)
  2859. },
  2860. /**
  2861. * 开始计时
  2862. */
  2863. startSetInter: function () {
  2864. let time =10;
  2865. var that = this;
  2866. let { times, nIndex,isTime } = this.data;
  2867. var setTime = this.data.times + 0.01
  2868. that.setData({ times: setTime })
  2869. // console.log(setTime)
  2870. that.data.setInter = setTimeout(this.startSetInter, time);
  2871. if (setTime>2) {
  2872. var getTime=Math.round(setTime)
  2873. that.endSetInter();
  2874. if (nIndex+1 == 20) {
  2875. that.tenEndTimes()
  2876. }else{
  2877. that.randomNumber()
  2878. that.setData({ nIndex: nIndex + 1, times: 0,isWhite:true,isOneImgShow:false})
  2879. if(getTime==2){
  2880. that.hiddenShow()
  2881. }
  2882. }
  2883. }
  2884. },
  2885. /**
  2886. * 结束计时
  2887. */
  2888. endSetInter: function () {
  2889. var that = this;
  2890. clearTimeout(that.data.setInter)
  2891. that.setData({ times:0})
  2892. },
  2893. /**
  2894. * 页面跳转定时器
  2895. */
  2896. tenEndTimes: function () {
  2897. var that = this;
  2898. const { graphicReasoning, level, ageGroup,spaceImagination,executionFunctionality,visualSearch,workingMemory,mentalRotation,sjssList,gameRespondentId} = that.data;
  2899. var allScore = 0
  2900. for (var i in sjssList) {
  2901. allScore += sjssList[i].score
  2902. }
  2903. console.log(sjssList)
  2904. setTimeout(
  2905. function () {
  2906. that.redirectCtl({ url: 'gong_zuo_ji_yi', method: { graphicReasoning, level:0, ageGroup,spaceImagination,executionFunctionality,visualSearch:(Number(visualSearch)+allScore),workingMemory,mentalRotation,gameRespondentId} }, true)
  2907. }, 500)
  2908. },
  2909. /**
  2910. * 练习关选择答案
  2911. */
  2912. exerciseSelectItems:throttle(function(e){
  2913. const {mindex} = e.currentTarget.dataset;
  2914. const { exerciseList, times} = this.data;
  2915. var that = this;
  2916. var temp = {};
  2917. for (var i in exerciseList) {
  2918. temp[`exerciseList[${i}].status`] = '';
  2919. }
  2920. if (exerciseList[mindex].isAnswer == 1) {
  2921. that.setData({ isYes: true })
  2922. } else {
  2923. that.setData({ isYes: false })
  2924. }
  2925. temp[`exerciseList[${mindex}].status`] = exerciseList[mindex].status == '' ? 'active' : ''
  2926. that.setData(temp);
  2927. that.setData({ isAnswer: true})
  2928. setTimeout(
  2929. function () {
  2930. that.randomNumber()
  2931. that.setData({ isWhite:true,isOneImgShow:false,level:1,isAnswer:false,times: 0})
  2932. that.hiddenShow()
  2933. }, 500)
  2934. },1200),
  2935. /**
  2936. * 选择答案
  2937. */
  2938. selectItems:throttle(function(e){
  2939. const {lindex, mindex} = e.currentTarget.dataset;
  2940. const { oneList, times} = this.data;
  2941. var that = this;
  2942. var temp = {};
  2943. // console.log('xiao')
  2944. for (var i in oneList[lindex]) {
  2945. temp[`oneList[${lindex}][${i}].status`] = '';
  2946. }
  2947. temp[`oneList[${lindex}][${mindex}].status`]='active';
  2948. this.setData(temp);
  2949. if (oneList[lindex][mindex].isAnswer == 1) {
  2950. that.setData({ isYes: true,isAnswer: true })
  2951. that.integraeRule(lindex, 1)
  2952. that.endSetInter();
  2953. } else {
  2954. that.setData({ isYes: false,isAnswer: true })
  2955. that.integraeRule(lindex, 0)
  2956. that.endSetInter();
  2957. }
  2958. setTimeout(
  2959. function () {
  2960. that.endSetInter();
  2961. if(lindex+1==20){
  2962. that.tenEndTimes()
  2963. }else{
  2964. that.randomNumber()
  2965. that.setData({ isWhite:true,isOneImgShow:false,nIndex:lindex+1,isAnswer:false,times: 0,isTime:true})
  2966. that.hiddenShow()
  2967. // that.startSetInter()
  2968. }
  2969. }, 300)
  2970. },1200),
  2971. /**
  2972. * 过渡页显示
  2973. */
  2974. hiddenShow:function(){
  2975. const {isWhite} = this.data;
  2976. var that = this;
  2977. setTimeout(function () {
  2978. that.setData({ isWhite:false})
  2979. setTimeout(function () {
  2980. that.setData({ isOneImgShow:true})
  2981. that.startSetInter()
  2982. }, 500)
  2983. }, 500)
  2984. },
  2985. /**
  2986. * 答题情况保存
  2987. */
  2988. saveCase:function(str){
  2989. const postData = { fn: this.saveCase, param: { ...arguments } }
  2990. const {nIndex,times,gameRespondentId}=this.data
  2991. // console.log(times)
  2992. app.post('/api/game/v2/answerInfoSave', {gameRespondentId,moduleCode:2,questionCode:nIndex+1,usedTime:Math.round(times*1000),answerResult:str+1}, 0, postData).then(res => {
  2993. })
  2994. },
  2995. })