Plan.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804
  1. <script setup lang="ts">
  2. import CpmdHeader from '@/components/CpmdHeader.vue';
  3. import CpmdQuestionnaire from '@/components/CpmdQuestionnaire.vue'
  4. import { onMounted, onUnmounted, ref } from 'vue'
  5. import { useRouter } from 'vue-router'
  6. const router = useRouter()
  7. //调用子组件的ref
  8. const question = ref<any>()
  9. //持久化设置 菜单状态
  10. import { menuStatusStore, userInfoStore } from '@/stores'
  11. import { queryIsQuestionApi, userPlanApi, userPlanDetailApi } from '@/api/home';
  12. import { ElMessage } from 'element-plus';
  13. const userInfo = userInfoStore();
  14. const menuStatus = menuStatusStore();
  15. menuStatus.saveActiveIndex('4')
  16. //标志 设置--方法是否结束的标志
  17. const isFinshed = ref<boolean>(false)
  18. //定义计划列表数据
  19. const planList = ref<any>([
  20. ])
  21. //临时存储数组的
  22. const tempPlanList = ref<any>({})
  23. //时间格式化 1000 60 60
  24. // const formatterTi = (val: number) => {
  25. // let mill = Math.floor(val / 1000)
  26. // let ss = Math.floor(mill / 60)
  27. // //先判断是多少个小时
  28. // let hour = Math.floor(val / 1000 / 60 / 60)
  29. // return hour + ':时'
  30. // }
  31. //调用--接口
  32. //紧接着开始
  33. const continueFun = () => {
  34. startPlan(tempPlanList.value);
  35. }
  36. //点击了开始测试--跳转到测试页面
  37. const startPlan = async (val: any) => {
  38. tempPlanList.value = val
  39. //先判断
  40. //是否做了问卷
  41. //如果未做问卷需要弹出问卷的弹出框
  42. //做完以后开始测试
  43. let res: any = await queryIsQuestionApi()
  44. if (res.data != null) {
  45. //此时是问卷未做
  46. //调用问卷组件打开
  47. question.value.open(res.data, '1')
  48. return
  49. }
  50. let nextFlag = '';
  51. let type = '';
  52. if (val.scaleList.length > 0) {
  53. //循环判断是否都完成了
  54. for (let i = 0; i < val.scaleList.length; i++) {
  55. if (val.scaleList[i].isCompleted != '1') {
  56. nextFlag = val.scaleList[i].flag;
  57. type = val.scaleList[i].contentType;
  58. break;
  59. }
  60. }
  61. }
  62. //当标志是空的时候证明所有量表的问答测试都已经完成了
  63. //接下就需要判断认知任务的完成情况了
  64. if (nextFlag == '') {
  65. //那就需要判断是否是 认知任务是否做完了
  66. for (let i = 0; i < val.taskList.length; i++) {
  67. if (val.taskList[i].isCompleted !== '1') {
  68. nextFlag = val.taskList[i].flag;
  69. type = val.taskList[i].contentType;
  70. break
  71. }
  72. }
  73. } else {
  74. //那就需要
  75. //假如没做完的---判断是flag 是否是scl90
  76. if (nextFlag == "20210617140713") {
  77. //设置---
  78. //判断scl 90 的完成状态是0还是2
  79. for (let i = 0; i < val.scaleList.length; i++) {
  80. if (val.scaleList[i].flag == '20210617140713') {
  81. if (val.scaleList[i].isCompleted == '0') {
  82. }
  83. if (val.scaleList[i].isCompleted == '2') {
  84. //如果是2的话
  85. //几个量表
  86. //拿到
  87. //需要--找到下一个需要做的不展示但是需要必测的
  88. }
  89. }
  90. }
  91. }
  92. }
  93. //如果是量表就开始跳转到量表页面
  94. //判断是type 0还是1
  95. //如果是0的话,需要跳转到量表中间页面
  96. if (type == '0') {
  97. //跳转量表中间页
  98. //传输
  99. router.push({
  100. name: 'scaleDetail', params: {
  101. planId: val.id,
  102. planName: val.planName,
  103. flag: nextFlag,
  104. type: type
  105. }
  106. })
  107. } else if (type == '1') {
  108. //跳转到认知任务中间页
  109. router.push({
  110. name: 'cognize', params: {
  111. planId: val.id,
  112. planName: val.planName,
  113. flag: nextFlag,
  114. type: type
  115. }
  116. })
  117. }
  118. //如果是1的话,需要跳转到认知任务中间页面
  119. //先判断量表接口中是否都完成了
  120. //如果量表接口都完成了
  121. //则开始循环认知任务接口
  122. }
  123. const planNumGet = async () => {
  124. isFinshed.value = false
  125. //如果在就是登录了
  126. if (userInfo.token) {
  127. let userNo = ''
  128. //登录的话
  129. //判断当前是否有后台管理
  130. userNo = userInfo.userInfo.userNo
  131. //调用根据用户查询计划的API
  132. let res: any = await userPlanApi(userNo)
  133. userInfo.savePlanCurrentNum(res.data.length)
  134. planList.value = res.data
  135. //循环list 给她赋值
  136. for (let i = 0; i < planList.value.length; i++) {
  137. let params = {
  138. planId: planList.value[i].id,
  139. userNo: userInfo.userInfo.userNo
  140. }
  141. let temp: any = await userPlanDetailApi(params)
  142. planList.value[i].list = temp.data
  143. //应该再这里再掉用一个数据?
  144. }
  145. //-------------处理SCL90的完成状态----------------
  146. for (let i = 0; i < planList.value.length; i++) {
  147. //
  148. if (planList.value[i].list.length > 0) {
  149. planList.value[i].scaleList = []
  150. planList.value[i].taskList = []
  151. //判断是否有----不显示必做但是必做未完成的
  152. let flag = false
  153. for (let j = 0; j < planList.value[i].list.length; j++) {
  154. //
  155. //不需要展示--但是必做--且含有未完成的
  156. if (planList.value[i].list[j].isDisplayed == '0'
  157. && planList.value[i].list[j].isAvailable == '1'
  158. && planList.value[i].list[j].isCompleted == '0') {
  159. flag = true
  160. }
  161. //判断是否是SCL90的flag
  162. //如果是SCL的Flag则判断其完成状态
  163. //如果完成状态是0则正常开始
  164. //如果完成状态为1,则判断后边的到底有没有必做不显示但是其中有未完成的
  165. //如果完成状态为1,则判断后边的到底有没有必做不显示但是其中有未完成的
  166. }
  167. for (let j = 0; j < planList.value[i].list.length; j++) {
  168. //不需要展示--但是必做--且含有未完成的
  169. if (flag) {
  170. if (planList.value[i].list[j].flag == "20210713155333" && planList.value[i].list[j].isCompleted == "1") {
  171. //如果满足以上条件则scl90的状态切换为2 --也是未完成--但是预示着后边还有需要做的
  172. planList.value[i].list[j].isCompleted = '2'
  173. }
  174. }
  175. if (planList.value[i].list[j].contentType == '0' && planList.value[i].list[j].isAvailable == '1' && planList.value[i].list[j].isDisplayed == '1') {
  176. planList.value[i].scaleList.push(planList.value[i].list[j])
  177. }
  178. if (planList.value[i].list[j].contentType == '1' && planList.value[i].list[j].isAvailable == '1' && planList.value[i].list[j].isDisplayed == '1') {
  179. planList.value[i].taskList.push(planList.value[i].list[j])
  180. }
  181. //判断是否是SCL90的flag
  182. //如果是SCL的Flag则判断其完成状态
  183. //如果完成状态是0则正常开始
  184. //如果完成状态为1,则判断后边的到底有没有必做不显示但是其中有未完成的
  185. //如果完成状态为1,则判断后边的到底有没有必做不显示但是其中有未完成的
  186. }
  187. //判断是显示开始测试还是继续测试
  188. let isContinue = []
  189. isContinue = planList.value[i].list.filter((item: any) => {
  190. return item.isCompleted != '0'
  191. })
  192. if (isContinue.length == 0) {
  193. planList.value[i].isCompleted = '0'
  194. } else {
  195. planList.value[i].isCompleted = '2'
  196. }
  197. }
  198. }
  199. //判断是开始测试还好继续测试
  200. //数据格式改变抽出需要展示的量表、、放入数组
  201. //抽出需要展示的认知任务--放入数组
  202. }
  203. isFinshed.value = true
  204. }
  205. //刚进入页面就将高度设置为页面需要的
  206. onMounted(() => {
  207. //查询计划内容
  208. planNumGet()
  209. //进到界面开始轮询
  210. })
  211. //界面销毁函数
  212. //退出页面销毁 方法
  213. onUnmounted(() => {
  214. })
  215. </script>
  216. <template>
  217. <div class="home_header_out">
  218. <div class=" home_header_inner">
  219. <CpmdHeader />
  220. <div style="text-align: center;">
  221. <!-- <img class="xlts_img" style="margin-top:40px" src="../assets/home/other_text.png" /> -->
  222. </div>
  223. </div>
  224. <div class="kply">
  225. <div class="kply_inner">
  226. <div>
  227. <div style="padding: 20px 40px;" v-show="planList.length == 0 && isFinshed">
  228. <div style="padding:10% 20% ;" v-show="planList.length == 0 && isFinshed">
  229. <!-- <img width="100%" src="../assets/planNo.png"> -->
  230. <img width="60%" style="margin-left: 20%;" src="../assets/planNo.png">
  231. </div>
  232. </div>
  233. <div class="test_record_out" v-for="item in planList">
  234. <div class="record_tip">
  235. <span class="record_tip_out"><span class="record_tip_inner">创建时间:</span>{{ item.createTime
  236. }}</span>
  237. <span><span class="record_tip_inner">结束时间:</span>{{ item.planEndTime }}</span>
  238. </div>
  239. <div class="test_record">
  240. <img src="../assets/kepu/task_1.png" />
  241. <span>{{ item.planName }}</span>
  242. </div>
  243. <!-- <div class="test_time">
  244. <span>请根据您最近一个月的实际情况,选择最符合自己的选项。所有陈述都无正确和错误之分。所以请您不要再三思考,要根据第一反应诚实作答。</span>
  245. </div> -->
  246. <div class="content_out">
  247. <div class="content_inner">
  248. <div class="task_out">
  249. <div class="content_title">1.问答测试</div>
  250. <div class="task_inner">
  251. <div class="task_inner_single" v-for="subItem in item.scaleList"
  252. :key="subItem.id">
  253. <div class="task_inner_one">
  254. <img style="width: 80px;height: 80px"
  255. src="../assets/kepu/xlwht_active.png" alt="">
  256. <div class="task_content">
  257. <div class="title">{{ subItem.name }}</div>
  258. <div class="des" v-show="subItem.isCompleted != '1'">预计用时:{{
  259. subItem.expectTime }}</div>
  260. <div class="des" v-show="subItem.isCompleted == '1'">实际用时:{{
  261. subItem.useTime }}</div>
  262. <div class="noCompleted" v-show="subItem.isCompleted != '1'">
  263. <div class='noCompleted_status'> 未完成</div>
  264. </div>
  265. <div class="isCompleted" v-show="subItem.isCompleted == '1'">
  266. <div class='isCompleted_status'> 已完成</div>
  267. </div>
  268. <div class="isMust" v-show="subItem.isRequired == '1'">必做</div>
  269. <div class="isChoosable" v-show="subItem.isRequired == '0'">选做</div>
  270. </div>
  271. </div>
  272. </div>
  273. </div>
  274. </div>
  275. <div class="task_out">
  276. <div class="content_title">2.认知评估</div>
  277. <div class="task_inner">
  278. <div class="task_inner_single" v-for="subItem in item.taskList">
  279. <div class="task_inner_one">
  280. <img style="width: 80px;height: 80px"
  281. src="../assets/kepu/task_active.png" alt="">
  282. <div class="task_content">
  283. <div class="title">{{ subItem.name }}</div>
  284. <div class="des" v-show="subItem.isCompleted != '1'">预计用时:{{
  285. subItem.expectTime }}</div>
  286. <div class="des" v-show="subItem.isCompleted == '1'">实际用时:{{
  287. subItem.useTime }}</div>
  288. <div class="noCompleted" v-show="subItem.isCompleted != '1'">
  289. <div class='noCompleted_status'> 未完成</div>
  290. </div>
  291. <div class="isCompleted" v-show="subItem.isCompleted == '1'">
  292. <div class='isCompleted_status'> 已完成</div>
  293. </div>
  294. <div class="isMust" v-show="subItem.isRequired == '1'">必做</div>
  295. <div class="isChoosable" v-show="subItem.isRequired == '0'">选做</div>
  296. </div>
  297. </div>
  298. </div>
  299. </div>
  300. </div>
  301. </div>
  302. <div></div>
  303. </div>
  304. <div class="start_button_out">
  305. <div class="start_button_self" @click="startPlan(item)"><span
  306. v-if="item.isCompleted == '0'">开始测试</span><span
  307. v-if="item.isCompleted == '2'">继续测试</span></div>
  308. </div>
  309. </div>
  310. <!-- 测试记录列表 -->
  311. </div>
  312. </div>
  313. </div>
  314. <CpmdQuestionnaire ref="question" @continueFun="continueFun" />
  315. </div>
  316. </template>
  317. <style lang="scss" scoped>
  318. .home_header_out {
  319. // position: relative;
  320. padding-bottom: 60px;
  321. width: 100%;
  322. min-width: 1200px;
  323. background-image: url('../assets/home/bg_ty.png');
  324. background-repeat: no-repeat;
  325. background-size: contain;
  326. background-color: #B3F1DA;
  327. //获取屏幕宽度home_header_out 这个div的宽度--然后宽度*1000再除1920即为当前div的宽度
  328. .home_header_inner {
  329. min-height: 1;
  330. left: 0;
  331. right: 0;
  332. margin: auto;
  333. // height: 100px;
  334. width: 1200px;
  335. .xlts_img {
  336. height: 60px;
  337. }
  338. }
  339. .kply {
  340. width: 100%;
  341. margin-top: 40px;
  342. // background-color: #FAFAFA;
  343. .kply_inner {
  344. // padding: 20px 20px;
  345. left: 0;
  346. right: 0;
  347. margin: auto;
  348. width: 1200px;
  349. min-height: 600px;
  350. background-color: #FAFAFA;
  351. border-radius: 40px;
  352. // height: 1000px;
  353. // margin-bottom: 60px;
  354. .kepu_title {
  355. display: flex;
  356. flex-direction: row;
  357. justify-content: space-between;
  358. align-items: center;
  359. .kepu_title_des {
  360. font-family: Alibaba PuHuiTi 2.0;
  361. font-weight: 600;
  362. font-size: 30px;
  363. color: #000000;
  364. }
  365. .home_mid_plan_button {
  366. width: 100%;
  367. display: flex;
  368. flex-direction: row;
  369. justify-content: end;
  370. // text-align: right;
  371. .pub_button {
  372. cursor: pointer;
  373. // width: 100px;
  374. border-radius: 12px;
  375. border: 3px solid #48D68E;
  376. color: #ffffff;
  377. background-color: #000000;
  378. padding: 8px 30px;
  379. cursor: pointer;
  380. display: flex;
  381. align-items: center;
  382. }
  383. }
  384. }
  385. .com_out {
  386. min-height: 500px;
  387. padding: 20px 20px;
  388. }
  389. .test_record {
  390. margin-top: 20px;
  391. display: flex;
  392. align-items: center;
  393. img {
  394. width: 50px;
  395. }
  396. span {
  397. margin-left: 20px;
  398. font-size: 22px;
  399. font-weight: 700;
  400. letter-spacing: 3px;
  401. }
  402. }
  403. .test_time {
  404. display: flex;
  405. flex-direction: row;
  406. justify-content: space-between;
  407. align-items: center;
  408. letter-spacing: 3px;
  409. line-height: 30px;
  410. span {
  411. color: #000000;
  412. opacity: 0.4;
  413. font-size: 18px;
  414. }
  415. div {
  416. cursor: pointer;
  417. // width: 100px;
  418. border-radius: 12px;
  419. border: 3px solid #48D68E;
  420. color: #ffffff;
  421. background-color: #000000;
  422. margin-right: 20px;
  423. padding: 8px 30px;
  424. cursor: pointer;
  425. display: flex;
  426. align-items: center;
  427. }
  428. }
  429. .record_out {
  430. margin-top: 30px;
  431. background-color: #F7F7F7;
  432. padding: 30px 40px;
  433. border-radius: 40px;
  434. display: flex;
  435. justify-content: center;
  436. align-items: center;
  437. .record_img_out {
  438. position: relative;
  439. .record_img_inner_name {
  440. position: absolute;
  441. margin-top: -150px;
  442. height: 100%;
  443. width: 100%;
  444. text-align: center;
  445. .test_des_name {
  446. font-weight: 700;
  447. color: #000000;
  448. font-size: 20px;
  449. letter-spacing: 3px;
  450. line-height: 15px;
  451. }
  452. }
  453. .record_img_inner {
  454. bottom: 0;
  455. margin-bottom: 10px;
  456. padding-left: 20px;
  457. width: 100%;
  458. position: absolute;
  459. display: flex;
  460. flex-direction: column;
  461. // background-color: #000000;
  462. justify-content: center;
  463. .test_des {
  464. color: #FEFFFE;
  465. font-size: 10px;
  466. line-height: 15px;
  467. .test_time1 {
  468. color: #ffffff;
  469. font-size: 10px;
  470. // line-height: 30px;
  471. line-height: 15px;
  472. }
  473. }
  474. .test_time1 {
  475. color: #ffffff;
  476. font-size: 10px;
  477. line-height: 15px;
  478. }
  479. }
  480. }
  481. .record_diceng {
  482. width: 80px;
  483. margin-left: 10px;
  484. margin-right: 10px;
  485. }
  486. .record_img {
  487. cursor: pointer;
  488. width: 180px;
  489. }
  490. }
  491. .start_button_out {
  492. margin-top: 40px;
  493. margin-bottom: 40px;
  494. display: flex;
  495. flex-direction: row;
  496. justify-content: end;
  497. .start_button_self {
  498. cursor: pointer;
  499. // width: 100px;
  500. border-radius: 12px;
  501. border: 3px solid #48D68E;
  502. color: #ffffff;
  503. background-color: #000000;
  504. margin-right: 20px;
  505. padding: 8px 60px;
  506. cursor: pointer;
  507. display: flex;
  508. align-items: center;
  509. }
  510. }
  511. .test_record_out {
  512. margin-top: 40px;
  513. padding: 20px 40px;
  514. background-color: #ffffff;
  515. border-radius: 40px;
  516. position: relative;
  517. .record_tip {
  518. background-color: #FFF6DF;
  519. position: absolute;
  520. right: 0;
  521. display: flex;
  522. flex-direction: column;
  523. top: 0;
  524. border-top-right-radius: 40px;
  525. border-bottom-left-radius: 40px;
  526. padding: 10px 40px;
  527. color: #FFB700;
  528. font-size: 14px;
  529. font-weight: 700;
  530. letter-spacing: 2px;
  531. .record_tip_inner {
  532. font-size: 13px;
  533. letter-spacing: 3px;
  534. }
  535. .record_tip_out {
  536. margin-bottom: 4px;
  537. .record_tip_inner {
  538. font-size: 13px;
  539. letter-spacing: 3px;
  540. }
  541. }
  542. }
  543. .content_out {
  544. display: flex;
  545. flex-direction: column;
  546. width: 100%;
  547. // height: 200px;
  548. background-color: #F7F7F7;
  549. border-radius: 40px;
  550. .content_inner {
  551. padding: 20px 40px;
  552. .content_title {
  553. margin-bottom: 0px;
  554. font-weight: 700;
  555. font-size: 20px;
  556. }
  557. .content_one {
  558. border-radius: 20px;
  559. // padding: 10px 20px;
  560. display: flex;
  561. background-color: #ffffff;
  562. width: 45%;
  563. align-items: center;
  564. .content_single {
  565. border-radius: 20px;
  566. padding: 10px 20px;
  567. display: flex;
  568. background-color: #ffffff;
  569. width: 45%;
  570. align-items: center;
  571. .content_detail {
  572. display: flex;
  573. margin-left: 15px;
  574. justify-content: start;
  575. height: 80px;
  576. flex-direction: column;
  577. .title {
  578. font-weight: 700;
  579. font-size: 18px;
  580. }
  581. .des {
  582. color: #999999;
  583. font-size: 14px;
  584. }
  585. }
  586. }
  587. }
  588. .task_out {
  589. margin-top: 20px;
  590. display: flex;
  591. flex-direction: column;
  592. .task_inner {
  593. display: flex;
  594. flex-direction: row;
  595. justify-content: space-between;
  596. flex-wrap: wrap;
  597. .task_inner_single {
  598. margin-top: 20px;
  599. height: 100px;
  600. border-radius: 20px;
  601. width: 45%;
  602. display: flex;
  603. flex-direction: row;
  604. background-color: #ffffff;
  605. align-items: center;
  606. .task_inner_one {
  607. padding: 10px 20px;
  608. border-radius: 20px;
  609. width: 100%;
  610. display: flex;
  611. flex-direction: row;
  612. background-color: #ffffff;
  613. align-items: center;
  614. .task_content {
  615. position: relative;
  616. height: 80px;
  617. margin-left: 10px;
  618. display: flex;
  619. flex-direction: column;
  620. width: 100%;
  621. .title {
  622. font-weight: 700;
  623. font-size: 18px;
  624. width: 100%;
  625. letter-spacing: 2px;
  626. }
  627. .des {
  628. color: #999999;
  629. font-size: 14px;
  630. line-height: 24px;
  631. letter-spacing: 2px;
  632. }
  633. .noCompleted {
  634. width: 100%;
  635. color: #ffffff;
  636. display: flex;
  637. justify-content: end;
  638. .noCompleted_status {
  639. // font-weight: 600;
  640. color: #222222;
  641. line-height: 24px;
  642. font-size: 14px;
  643. border-radius: 20px;
  644. text-align: center;
  645. right: 0px;
  646. width: 70px;
  647. background-color: #EDEDED;
  648. }
  649. }
  650. .isCompleted {
  651. width: 100%;
  652. color: #ffffff;
  653. display: flex;
  654. justify-content: end;
  655. .isCompleted_status {
  656. line-height: 24px;
  657. font-size: 14px;
  658. border-radius: 20px;
  659. text-align: center;
  660. right: 0px;
  661. width: 70px;
  662. background-color: #48D68E;
  663. }
  664. }
  665. .isMust {
  666. position: absolute;
  667. right: 0;
  668. background-color: #48D68E;
  669. font-size: 10px;
  670. color: #ffffff;
  671. padding: 2px 6px;
  672. border-radius: 10px;
  673. }
  674. .isChoosable {
  675. position: absolute;
  676. right: 0;
  677. background-color: #EDEDED;
  678. font-size: 10px;
  679. color: #222222;
  680. padding: 2px 6px;
  681. border-radius: 10px;
  682. }
  683. }
  684. }
  685. }
  686. }
  687. }
  688. }
  689. }
  690. }
  691. }
  692. }
  693. }
  694. </style>