1
0

page.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import { Carousel, Tooltip } from 'antd';
  4. import { Link } from 'react-router-dom';
  5. import Fullscreen from 'react-fullscreen-crossbrowser';
  6. import './index.less';
  7. import Page from '@src/containers/Page';
  8. import { formatSeconds, formatPercent, formatDate, sortListWithOrder } from '@src/services/Tools';
  9. import Assets from '@src/components/Assets';
  10. import Navigation from '../../../components/Navigation';
  11. import Tabs from '../../../components/Tabs';
  12. import Icon from '../../../components/Icon';
  13. import Switch from '../../../components/Switch';
  14. import Select from '../../../components/Select';
  15. import AnswerSelect from '../../../components/AnswerSelect';
  16. import AnswerList from '../../../components/AnswerList';
  17. import AnswerButton from '../../../components/AnswerButton';
  18. import AnswerTable from '../../../components/AnswerTable';
  19. import OtherAnswer from '../../../components/OtherAnswer';
  20. import { AskTarget } from '../../../../Constant';
  21. import { Question } from '../../../stores/question';
  22. import { My } from '../../../stores/my';
  23. import Sentence from '../../paper/process/sentence';
  24. export default class extends Page {
  25. initState() {
  26. return {
  27. step: 0,
  28. hideAnalysis: true,
  29. analysisTab: 'official',
  30. showAnswer: false,
  31. noteField: AskTarget[0].key,
  32. showIds: false,
  33. // question: {
  34. // content: {
  35. // typeset: 'one',
  36. // },
  37. // // questionType: 'awa',
  38. // answer: {
  39. // subject: [[{ text: 'like', uuid: 'hKyz' }]],
  40. // options: ['parallel'],
  41. // },
  42. // stem: "<p><span uuid='kBJe'>I</span> <span uuid='hKyz'>like</span> <span uuid='fQXh'>book</span></p>",
  43. // },
  44. // userQuestion: {
  45. // userAnswer: {
  46. // subject: [{ text: 'I', uuid: 'kBJe' }],
  47. // options: ['compare'],
  48. // },
  49. // no: 2,
  50. // },
  51. // paper: {
  52. // title: '长难句练习',
  53. // questionNumber: 20,
  54. // },
  55. // report: {
  56. // paperModule: 'sentence',
  57. // },
  58. };
  59. }
  60. initData() {
  61. const { id } = this.params;
  62. Question.getDetailById(id).then(userQuestion => {
  63. const { question, questionNos, paper, note, report, setting } = userQuestion;
  64. let { questionNo } = userQuestion;
  65. if (!questionNo) ([questionNo] = questionNos);
  66. if (!question.answer) question.answer = { questions: [] };
  67. if (!question.answerDistributed) question.answerDistributed = { questions: [] };
  68. if (!userQuestion.userAnswer) userQuestion.userAnswer = { questions: [] };
  69. if ((report.setting || {}).disorder) {
  70. const { content } = question;
  71. // 还原做题顺序
  72. content.questions.forEach((q, i) => {
  73. q.select = sortListWithOrder(question.select, setting.questions[i]);
  74. });
  75. question.answer.questions.forEach((q, i) => {
  76. Object.keys(q).forEach((k) => {
  77. if (q[k]) q[k] = sortListWithOrder(q[k], setting.questions[i]);
  78. });
  79. });
  80. question.answerDistributed.questions.forEach((q, i) => {
  81. Object.keys(q).forEach((k) => {
  82. if (q[k]) q[k] = sortListWithOrder(q[k], setting.questions[i]);
  83. });
  84. });
  85. userQuestion.userAnswer.questions.forEach((q, i) => {
  86. Object.keys(q).forEach((k) => {
  87. if (q[k]) q[k] = sortListWithOrder(q[k], setting.questions[i]);
  88. });
  89. });
  90. }
  91. this.setState({ userQuestion, question, questionNo, note, paper, questionNos });
  92. });
  93. }
  94. prevQuestion() {
  95. const { userQuestion } = this.state;
  96. if (userQuestion.no === 1) return;
  97. Question.getDetailByNo(userQuestion.reportId, userQuestion.no - 1).then((r) => {
  98. linkTo(`/paper/question/${r.id}`);
  99. });
  100. }
  101. nextQuestion() {
  102. const { userQuestion } = this.state;
  103. if (userQuestion.questionNumber === userQuestion.no) return;
  104. Question.getDetailByNo(userQuestion.reportId, userQuestion.no + 1).then((r) => {
  105. linkTo(`/paper/question/${r.id}`);
  106. });
  107. }
  108. submitAsk() {
  109. const { question = {}, questionNo = {}, paper = {}, ask = {} } = this.state;
  110. if (ask.originContent === '' || ask.content === '' || ask.target === '') return;
  111. My.addQuestionAsk(paper.id, ask.target, question.questionModule, questionNo.id, ask.originContent, ask.content).then(() => {
  112. this.setState({ askModal: false, askOkModal: true });
  113. }).catch(err => {
  114. this.setState({ askError: err.message });
  115. });
  116. }
  117. submitFeedbackError() {
  118. const { feedback = {}, question = {}, questionNo = {} } = this.state;
  119. if (feedback.originContent === '' || feedback.content === '' || feedback.target === '') return;
  120. My.addFeedbackErrorQuestion(question.questionModule, questionNo.id, questionNo.title, feedback.target, feedback.originContent, feedback.content).then(() => {
  121. this.setState({ feedbackModal: false, feedbackOkModal: true });
  122. }).catch(err => {
  123. this.setState({ feedbackError: err.message });
  124. });
  125. }
  126. submitNote(close) {
  127. const { question = {}, questionNo = {}, note = {} } = this.state;
  128. My.updateQuestionNote(question.questionModule, questionNo.id, note).then(() => {
  129. if (close) this.setState({ noteModal: false });
  130. }).catch(err => {
  131. this.setState({ noteError: err.message });
  132. });
  133. }
  134. toggleFullscreen() {
  135. const { isFullscreenEnabled } = this.state;
  136. this.setState({ isFullscreenEnabled: !isFullscreenEnabled });
  137. }
  138. toggleCollect() {
  139. const { userQuestion = {}, question = {}, questionNo = {} } = this.state;
  140. if (!userQuestion.collect) {
  141. My.addQuestionCollect(question.questionModule, questionNo.id).then(() => {
  142. userQuestion.collect = true;
  143. this.setState({ userQuestion });
  144. });
  145. } else {
  146. My.delQuestionCollect(question.questionModule, questionNo.id).then(() => {
  147. userQuestion.collect = false;
  148. this.setState({ userQuestion });
  149. });
  150. }
  151. }
  152. formatStem(text) {
  153. if (!text) return '';
  154. const { showAnswer, question = { content: {} }, userQuestion } = this.state;
  155. const { table = {}, questions = [] } = question.content;
  156. text = text.replace(/#select#/g, "<span class='#select#' />");
  157. text = text.replace(/#table#/g, "<span class='#table#' />");
  158. setTimeout(() => {
  159. const selectList = document.getElementsByClassName('#select#');
  160. const tableList = document.getElementsByClassName('#table#');
  161. for (let i = 0; i < selectList.length; i += 1) {
  162. if (!questions[i]) break;
  163. ReactDOM.render(
  164. <AnswerSelect
  165. list={questions[i].select}
  166. type={'single'}
  167. selected={(userQuestion.userAnswer || { questions: [] }).questions[i]}
  168. answer={(question.answer || { questions: [] }).questions[i]}
  169. fix
  170. show={showAnswer} />,
  171. selectList[i],
  172. );
  173. }
  174. if (table.row && table.col && table.header) {
  175. const columns = table.header.map((title, index) => {
  176. return { title, key: index };
  177. });
  178. for (let i = 0; i < tableList.length; i += 1) {
  179. ReactDOM.render(<AnswerTable list={columns} columns={columns} data={table.data} />, tableList[i]);
  180. }
  181. }
  182. }, 1);
  183. return text;
  184. }
  185. renderView() {
  186. return (
  187. <Fullscreen
  188. enabled={this.state.isFullscreenEnabled}
  189. onChange={isFullscreenEnabled => this.setState({ isFullscreenEnabled })}
  190. >
  191. {this.renderDetail()}
  192. </Fullscreen>
  193. );
  194. }
  195. renderDetail() {
  196. const { report = {} } = this.state;
  197. switch (report.paperModule) {
  198. case 'sentence':
  199. return <Sentence {...this.state} flow={this} scene='answer' mode='question' />;
  200. default:
  201. return <div className='base'>{this.renderBase()}</div>;
  202. }
  203. }
  204. renderHeader() {
  205. const { userQuestion = {}, questionNo = {}, paper = {}, showIds, questionNos = [], question = {} } = this.state;
  206. return <div className="layout-header">
  207. <div className="left">
  208. <div className="no">No.{userQuestion.stageNo || userQuestion.no}</div>
  209. <div className="title"><Assets name='book' />{paper.title}</div>
  210. </div>
  211. <div className="center">
  212. <div className="menu-wrap">
  213. ID:{questionNo.title}
  214. {questionNos && questionNos.length > 0 && <Icon name="more" onClick={() => {
  215. this.setState({ showIds: true });
  216. }} />}
  217. {showIds && <div className='menu-content'>
  218. <p>题源汇总</p>
  219. {(questionNos || []).map((row) => <p>ID:{row.title}</p>)}
  220. </div>}
  221. </div>
  222. </div>
  223. <div className="right" hidden={question.questionType === 'awa'}>
  224. <span className="b" hidden={!userQuestion.id}>
  225. 用时:<span dangerouslySetInnerHTML={{ __html: formatSeconds(userQuestion.userTime).replace(/([0-9]+)([msh])/g, '<span class="s">$1</span>$2') }} />
  226. {/* 用时:<span className="s">1</span>m<span className="s">39</span>s */}
  227. </span>
  228. <span className="b">
  229. 全站:<span dangerouslySetInnerHTML={{ __html: formatSeconds(questionNo.totalTime / questionNo.totalNumber).replace(/([0-9]+)([msh])/g, '<span class="s">$1</span>$2') }} />
  230. {/* 全站:<span className="s">1</span>m<span className="s">39</span>s */}
  231. </span>
  232. <span className="b">
  233. <span className="s">{formatPercent(questionNo.totalCorrect, questionNo.totalNumber)}</span>%
  234. </span>
  235. <Icon name="question" />
  236. <Icon name="star" active={userQuestion.collect} onClick={() => this.toggleCollect()} />
  237. </div>
  238. </div>;
  239. }
  240. renderBase() {
  241. const { questionStatus, userQuestion = {}, showIds } = this.state;
  242. return <div className="layout" onClick={() => {
  243. if (showIds) this.setState({ showIds: false });
  244. }}>
  245. {this.renderHeader()}
  246. <div className="layout-body">{this.renderBody()}</div>
  247. <div className="layout-footer">
  248. <div className="left">
  249. <Tooltip overlayClassName='gray' placement='top' title='全屏'>
  250. <a>
  251. <Icon name={this.state.isFullscreenEnabled ? 'sceen-restore' : 'sceen-full'} onClick={() => this.toggleFullscreen()} />
  252. </a>
  253. </Tooltip>
  254. </div>
  255. <div className="center">
  256. <AnswerButton className="item" onClick={() => this.setState({ noteModal: true })}>笔记</AnswerButton>
  257. {questionStatus >= 0 && <AnswerButton className="item" onClick={() => {
  258. if (questionStatus > 0) {
  259. this.setState({ askModal: true });
  260. } else {
  261. this.setState({ askFailModal: true });
  262. }
  263. }}>提问</AnswerButton>}
  264. <AnswerButton className="item" onClick={() => this.setState({ feedbackModal: true })}>纠错</AnswerButton>
  265. </div>
  266. <div className="right">
  267. {userQuestion.no !== 1 && <Icon name="prev" onClick={() => this.prevQuestion()} />}
  268. {userQuestion.questionNumber !== userQuestion.no && <Icon name="next" onClick={() => this.nextQuestion()} />}
  269. </div>
  270. </div>
  271. {this.state.askModal && this.renderAsk()}
  272. {this.state.askOkModal && this.renderAskOk()}
  273. {this.state.askFailModal && this.renderAskFail()}
  274. {this.state.feedbackModal && this.renderFeedbackError()}
  275. {this.state.feedbackOkModal && this.renderFeedbackErrorOk()}
  276. {this.state.noteModal && this.renderNote()}
  277. </div>;
  278. }
  279. renderBody() {
  280. const { question = { content: {} } } = this.state;
  281. const { typeset = 'one' } = question.content;
  282. const { hideAnalysis } = this.state;
  283. const show = typeset === 'one' ? true : !hideAnalysis;
  284. return (
  285. <div className="layout-content">
  286. <div className='two'>
  287. {this.renderContent()}
  288. {question.questionType !== 'awa' && this.renderAnswer()}
  289. {question.questionType === 'awa' && this.renderAWA()}
  290. </div>
  291. {question.questionType !== 'awa' && this.renderAnalysis()}
  292. {typeset === 'two' && question.questionType !== 'awa' && (
  293. <div className="fixed-analysis" onClick={() => this.setState({ hideAnalysis: !hideAnalysis })}>
  294. {show ? '收起解析 >' : '查看解析 <'}
  295. </div>
  296. )}
  297. </div>
  298. );
  299. }
  300. renderAnalysis() {
  301. const { question = { content: {} }, analysisTab } = this.state;
  302. const { typeset = 'one' } = question.content;
  303. const { hideAnalysis } = this.state;
  304. const show = typeset === 'one' ? true : !hideAnalysis;
  305. return (
  306. <div className={`block block-analysis two-analysis ${show ? 'show' : ''}`}>
  307. <Tabs
  308. type="division"
  309. active={analysisTab}
  310. space={2}
  311. tabs={[
  312. { key: 'official', name: '官方解析' },
  313. { key: 'qx', name: '千行解析' },
  314. { key: 'association', name: '题源联想' },
  315. { key: 'qa', name: '相关回答' },
  316. ]}
  317. onChange={(key) => {
  318. this.setState({ analysisTab: key });
  319. }}
  320. />
  321. <div className="detail">
  322. {typeset === 'two' && this.renderAnswer()}
  323. {this.renderText()}
  324. </div>
  325. </div>
  326. );
  327. }
  328. renderText() {
  329. const { analysisTab, question = {}, userQuestion = {} } = this.state;
  330. const { asks = [], associations = [] } = userQuestion;
  331. let content;
  332. switch (analysisTab) {
  333. case 'official':
  334. content = <div className="detail-block text-block" dangerouslySetInnerHTML={{ __html: question.officialContent }} />;
  335. break;
  336. case 'qx':
  337. content = <div className="detail-block text-block" dangerouslySetInnerHTML={{ __html: question.qxContent }} />;
  338. break;
  339. case 'association':
  340. content = <div className="detail-block">
  341. <Carousel>
  342. {associations.map(association => {
  343. return <div className="text-block" dangerouslySetInnerHTML={{ __html: association.stem }} />;
  344. })}
  345. </Carousel>
  346. </div>;
  347. break;
  348. case 'qa':
  349. content = <div className="detail-block answer-block">
  350. {asks.map((ask, index) => {
  351. return <OtherAnswer key={index} data={ask} />;
  352. })}
  353. </div>;
  354. break;
  355. default:
  356. break;
  357. }
  358. return content;
  359. }
  360. renderAnswer() {
  361. const { question = { content: {} }, showAnswer, userQuestion = {} } = this.state;
  362. const { questions = [], type, typeset = 'one' } = question.content;
  363. return <div className="block block-answer">
  364. {typeset === 'two' ? <Switch checked={showAnswer} onChange={(value) => {
  365. this.setState({ showAnswer: value });
  366. }}>{showAnswer ? '显示答案' : '关闭答案'}</Switch> : ''}
  367. {questions.map((item, index) => {
  368. return (
  369. <div>
  370. <div className="text m-b-2">{item.description}</div>
  371. <AnswerList
  372. show={showAnswer}
  373. selected={(userQuestion.userAnswer || { questions: [] }).questions[index]}
  374. answer={(question.answer || { questions: [] }).questions[index]}
  375. distributed={(question.answerDistributed || { questions: [] }).questions[index]}
  376. list={item.select}
  377. type={type}
  378. first={item.first}
  379. second={item.second}
  380. direction={item.direction}
  381. />
  382. </div>
  383. );
  384. })}
  385. </div>;
  386. }
  387. renderContent() {
  388. const { question = { content: {} }, showAnswer, step } = this.state;
  389. const { typeset = 'one' } = question.content;
  390. const { steps = [] } = question.content;
  391. return (
  392. <div className="block block-content">
  393. {typeset === 'one' && question.questionType !== 'awa' ? <Switch checked={showAnswer} onChange={(value) => {
  394. this.setState({ showAnswer: value });
  395. }}>{showAnswer ? '显示答案' : '关闭答案'}</Switch> : ''}
  396. {question.questionType === 'awa' && <h2>Analytical Writing Assessment</h2>}
  397. {steps.length > 0 && <Navigation theme='detail' list={question.content.steps} active={step} onChange={(v) => this.setState({ step: v })} />}
  398. <div className="text" style={{ height: 2000 }} dangerouslySetInnerHTML={{ __html: this.formatStem(steps.length > 0 ? steps[step].stem : question.stem) }} />
  399. </div>
  400. );
  401. }
  402. renderAWA() {
  403. const { showAnswer, userQuestion = { detail: {}, userAnswer: {} } } = this.state;
  404. return <div className="block block-awa">
  405. <Switch checked={showAnswer} onChange={(value) => {
  406. this.setState({ showAnswer: value });
  407. }}>{showAnswer ? '显示答案' : '关闭答案'}</Switch>
  408. <div className="body">
  409. <h2>Your Response</h2>
  410. {showAnswer && <div className='detail'>
  411. <div className='info'>
  412. <span className="b">
  413. 用时:<span dangerouslySetInnerHTML={{ __html: formatSeconds(userQuestion.userTime).replace(/([0-9]+)([msh])/g, '<span class="s">$1</span>$2') }} />
  414. {/* 用时:<span className="s">1</span>m<span className="s">39</span>s */}
  415. </span>
  416. <span className="b">
  417. 单词数:<span className="s">{Number((userQuestion.detail || {}).words || 0)}</span>词
  418. </span>
  419. </div>
  420. <div className='content-awa' dangerouslySetInnerHTML={{ __html: userQuestion.userAnswer.awa || '' }} />
  421. </div>}
  422. {!showAnswer && <div className='show-awa'>选择「显示答案」查看自己的作文</div>}
  423. </div>
  424. </div>;
  425. }
  426. renderAsk() {
  427. const { ask = {} } = this.state;
  428. return (
  429. <div className="modal ask">
  430. <div className="mask" />
  431. <div className="body">
  432. <div className="title">提问</div>
  433. <div className="desc">
  434. <div className="select-inline">我想对<Select excludeSelf size="small" theme="white" value={ask.target} list={AskTarget} onChange={(item) => {
  435. ask.target = item.value;
  436. this.setState({ ask });
  437. }} />进行提问</div>
  438. <div className="label">有疑问的具体内容是:</div>
  439. <textarea className="textarea" value={ask.originContent} placeholder="请复制粘贴有疑问的内容。" onChange={(e) => {
  440. ask.originContent = e.target.value;
  441. this.setState({ ask });
  442. }} />
  443. <div className="label">针对以上内容的问题是:</div>
  444. <textarea className="textarea" value={ask.content} placeholder="提问频率高的问题会被优先回答哦。" onChange={(e) => {
  445. ask.content = e.target.value;
  446. this.setState({ ask });
  447. }} />
  448. </div>
  449. <div className="bottom">
  450. <AnswerButton theme="cancel" size="lager" onClick={() => this.setState({ askModal: false })}>
  451. 取消
  452. </AnswerButton>
  453. <AnswerButton size="lager" onClick={() => this.submitAsk()}>提交</AnswerButton>
  454. </div>
  455. </div>
  456. </div>
  457. );
  458. }
  459. renderAskOk() {
  460. return (
  461. <div className="modal ask-ok">
  462. <div className="mask" />
  463. <div className="body">
  464. <div className="title">提问</div>
  465. <div className="content">
  466. <div className="left">
  467. <div className="text">已提交成功!</div>
  468. <div className="text">关注公众号,老师回答后会立即收到通知。</div>
  469. <div className="text">我们也会通过站内信的方式通知你。</div>
  470. <div className="small">成为学员享受极速答疑特权。<Link>了解更多</Link></div>
  471. </div>
  472. <div className="right">
  473. <div className="text">扫码关注公众号</div>
  474. <div className="text">千行GMAT</div>
  475. </div>
  476. </div>
  477. <div className="confirm">
  478. <AnswerButton size="lager" theme="confirm" onClick={() => {
  479. this.setState({ askOkModal: false });
  480. }}>
  481. 好的,知道了
  482. </AnswerButton>
  483. </div>
  484. </div>
  485. </div>
  486. );
  487. }
  488. renderAskFail() {
  489. return (
  490. <div className="modal ask-ok">
  491. <div className="mask" />
  492. <div className="body">
  493. <div className="title">提问</div>
  494. <div className="content">
  495. <div className="left">
  496. <div className="text">提问功能正在维护中。</div>
  497. <div className="text">可先查阅“相关问答” 或 成为学员享受极速 答疑特权。</div>
  498. <Link to="/">了解更多></Link>
  499. </div>
  500. <div className="right">
  501. <div className="text">扫码关注公众号</div>
  502. <div className="text">千行GMAT</div>
  503. </div>
  504. </div>
  505. <div className="confirm">
  506. <AnswerButton size="lager" theme="confirm" onClick={() => {
  507. this.setState({ askFailModal: false });
  508. }}>
  509. 好的,知道了
  510. </AnswerButton>
  511. </div>
  512. </div>
  513. </div>
  514. );
  515. }
  516. renderFeedbackError() {
  517. const { feedback = {} } = this.state;
  518. return (
  519. <div className="modal error">
  520. <div className="mask" />
  521. <div className="body">
  522. <div className="title">纠错</div>
  523. <div className="desc">
  524. <div className="select-inline">我想对<Select excludeSelf size="small" theme="white" value={feedback.target} list={AskTarget} onChange={(item) => {
  525. feedback.target = item.value;
  526. this.setState({ feedback });
  527. }} />进行提问</div>
  528. <div className="label">错误内容是:</div>
  529. <textarea className="textarea" value={feedback.originContent} placeholder="你可以适当扩大复制范围以使我们准确定位,感谢。" />
  530. <div className="label">应该改为:</div>
  531. <textarea className="textarea" placeholder="只需提供正确内容即可" />
  532. </div>
  533. <div className="bottom">
  534. <AnswerButton theme="cancel" size="lager" onClick={() => {
  535. this.setState({ feedbackModal: false });
  536. }}>
  537. 取消
  538. </AnswerButton>
  539. <AnswerButton size="lager" onClick={() => {
  540. this.submitFeedbackError();
  541. }}>提交</AnswerButton>
  542. </div>
  543. </div>
  544. </div>
  545. );
  546. }
  547. renderFeedbackErrorOk() {
  548. return (
  549. <div className="modal error-ok">
  550. <div className="mask" />
  551. <div className="body">
  552. <div className="title">纠错</div>
  553. <div className="content">
  554. <div className="left">
  555. <div className="text"><Assets name='right' svg />已提交成功!</div>
  556. <div className="text">感谢您的耐心反馈,我们会尽快核实并以站内信的方式告知结果。</div>
  557. <div className="text">您也可以关注公众号及时获取结果。</div>
  558. </div>
  559. <div className="right">
  560. <div className="text">扫码关注公众号</div>
  561. <div className="text">千行GMAT</div>
  562. </div>
  563. </div>
  564. <div className="confirm">
  565. <AnswerButton size="lager" theme="confirm" onClick={() => {
  566. this.setState({ feedbackOkModal: false });
  567. }}>
  568. 好的,知道了
  569. </AnswerButton>
  570. </div>
  571. </div>
  572. </div>
  573. );
  574. }
  575. renderNote() {
  576. const { noteField, note = {} } = this.state;
  577. return (
  578. <div className="modal note">
  579. <div className="mask" />
  580. <div className="body">
  581. <div className="title">笔记</div>
  582. <div className="content">
  583. <div className="tabs">
  584. {AskTarget.map(item => {
  585. return (
  586. <div className={`tab ${noteField === item.key ? 'active' : ''}`} onClick={() => {
  587. this.setState({ noteField: item.key });
  588. }}>
  589. <div className="text">{item.label}</div>
  590. <div className="date">{note[`${item.key}Time`] ? formatDate(note[`${item.key}Time`]) : ''}</div>
  591. </div>
  592. );
  593. })}
  594. </div>
  595. <div className="input">
  596. <textarea className="textarea" value={note[`${noteField}Content`] || ''} placeholder="记下笔记,方便以后复习" onChange={(e) => {
  597. note[`${noteField}Time`] = new Date();
  598. note[`${noteField}Content`] = e.target.value;
  599. this.setState({ note });
  600. }} />
  601. <div className="bottom">
  602. <AnswerButton theme="cancel" size="lager" onClick={() => {
  603. this.setState({ noteModal: false });
  604. }}>
  605. 取消
  606. </AnswerButton>
  607. <AnswerButton size="lager" onClick={() => {
  608. this.submitNote();
  609. }}>编辑</AnswerButton>
  610. <AnswerButton size="lager" onClick={() => {
  611. this.submitNote(true);
  612. }}>保存</AnswerButton>
  613. </div>
  614. </div>
  615. </div>
  616. </div>
  617. </div>
  618. );
  619. }
  620. }