Cognize.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. <script setup lang="ts">
  2. import CpmdHeader from '@/components/CpmdHeader.vue';
  3. import { onMounted, onUnmounted, ref } from 'vue'
  4. import pdf3 from '../assets/cognize/goNogo.pdf'
  5. import pdf4 from '../assets/cognize/dtc.pdf'
  6. import { useRoute, useRouter } from 'vue-router';
  7. import { queryCognizeDetailApi } from '@/api/plan';
  8. import { userInfoStore } from '@/stores';
  9. const router = useRouter()
  10. const route = useRoute()
  11. const flag = ref<string>('')
  12. const planName = ref<string>('')
  13. const planId = ref<string>('')
  14. const type = ref<string>('')
  15. const cognizeDetail = ref<any>({})
  16. const isPass = ref<boolean>(false)
  17. // 查看PDF
  18. //刚进入页面就将高度设置为页面需要的
  19. onMounted(() => {
  20. //获取参数传过来的ID
  21. //获取参数传过来的planId
  22. flag.value = route.params.flag as string;
  23. planId.value = route.params.planId as string
  24. planName.value = route.params.planName as string
  25. type.value = route.params.type as string
  26. if (flag.value == 'ETB01') {
  27. isPass.value = userInfoStore().isPassETB01
  28. }
  29. if (flag.value == 'FDOT') {
  30. isPass.value = userInfoStore().isPassDot
  31. }
  32. if (flag.value == 'EMOTION_STROOP') {
  33. isPass.value = userInfoStore().isStroop
  34. }
  35. //根据flag 查询认知任务详情
  36. //进到界面开始轮询
  37. if (type.value == '1') {
  38. queryScaleDetail()
  39. }
  40. })
  41. const queryScaleDetail = async () => {
  42. //根据flag查询量表详情
  43. let res: any = await queryCognizeDetailApi(flag.value)
  44. cognizeDetail.value = res.data
  45. }
  46. const centerDialogVisible = ref<boolean>(false)
  47. const viewPDF = () => {
  48. centerDialogVisible.value = true
  49. }
  50. // vue3+vite 实现动态加载图片
  51. const requireImg = (name: string) => {
  52. // return new URL(`${path}`, import.meta.url).href
  53. // ../assets/cognize/goNogo.pdf
  54. return new URL(`../assets/cognize/${name}.pdf`, import.meta.url).href
  55. }
  56. const startCog = (val: number) => {
  57. // router.push(
  58. // {
  59. // name: 'shapeIntuitionRandom',
  60. // params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  61. // })
  62. //更改到 跳转到人脸表情这里的认知任务
  63. if (flag.value == 'ETB01') {
  64. router.push(
  65. {
  66. name: 'ETBexperimentNew',
  67. params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  68. })
  69. }
  70. if (flag.value == 'FDOT') {
  71. router.push(
  72. {
  73. name: 'cognizeFaceDot',
  74. params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  75. })
  76. }
  77. if (flag.value == 'EMOTION_STROOP') {
  78. router.push(
  79. {
  80. name: 'Stroop',
  81. params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  82. })
  83. }
  84. // if (num.value == '3') {
  85. // router.push({ name: 'cognizeGoNoGo', params: { currentType: val } })
  86. // } else if (num.value == '4') {
  87. // router.push({ name: 'cognizeFaceDot', params: { currentType: val } })
  88. // }
  89. }
  90. //界面销毁函数
  91. //轮旋切换页面的方法
  92. //退出页面销毁 方法
  93. onUnmounted(() => {
  94. })
  95. </script>
  96. <template>
  97. <div class="home_header_out" ref="homeHeaderOut">
  98. <div class=" home_header_inner">
  99. <CpmdHeader />
  100. <div style="text-align: center;">
  101. <!-- <img class="xlts_img" style="margin-top:20px" src="../assets/home/other_text.png" /> -->
  102. </div>
  103. </div>
  104. <div class="kply">
  105. <div class="kply_inner">
  106. <div style="padding :20px 40px">
  107. <div class="cognize_title">
  108. {{ cognizeDetail.name }}
  109. </div>
  110. <div class="cognize_img_out">
  111. <!-- <img src="../assets/kepu/czscz_default.png" width=" 100px" style="margin-right: 20px;" /> -->
  112. <!-- <img src="../assets/cognize/c2.png" v-show="num == '4'" width="100px"
  113. style="margin-right: 20px;" /> -->
  114. <div class="cognize_des">
  115. <span class="cpjs">测评介绍:</span>
  116. <span class="cpjs_detail">{{ cognizeDetail.testExplain }}</span>
  117. </div>
  118. </div>
  119. <div class="cpll">
  120. <span class="cpll_title">理论:</span>
  121. <span class="cpll_detail">{{ cognizeDetail.theory }}</span>
  122. </div>
  123. <div class="czsm">
  124. <span class="czsm_title">操作说明:</span>
  125. <span class="czsm_detail">
  126. {{ cognizeDetail.description }}
  127. {{ cognizeDetail.testDescription }}
  128. </span>
  129. </div>
  130. <div class="cognize_title2"> {{ cognizeDetail.name }}演示视频:</div>
  131. <div class="cognize_video">
  132. <!-- poster="../assets/cognize/bg_ty.png" -->
  133. <video width="60%" height="100%" controls style="border-radius: 40px;">
  134. <source src="../assets/cognize/yd.mp4" type="video/mp4">
  135. <!-- <source src="movie.ogg" type="video/ogg"> -->
  136. 您的浏览器不支持 video 标签。
  137. </video>
  138. </div>
  139. <div class="scale_button">
  140. <div class="scale_button_inner" v-show="!isPass">
  141. <div class="scale_button_self" @click="startCog(0)">练习测试
  142. </div>
  143. </div>
  144. <div :span="12" class="scale_button_inner" v-show="isPass">
  145. <div class="scale_button_self" @click="startCog(1)">开始测试</div>
  146. </div>
  147. </div>
  148. <div class="pdf_op">
  149. <div class="pdf_sc">
  150. <img @click="viewPDF" src="../assets/cognize/pdf.png" width="30px"
  151. style="margin-right:10px" />
  152. <div @click="viewPDF">测试手册</div>
  153. </div>
  154. <div class="pdf_sc">
  155. <!-- <img @click="viewPDF" width="40px" src="../assets/cognize/yan.png">
  156. <div @click="viewPDF" class="view">预览</div> -->
  157. </div>
  158. </div>
  159. <div class="reference_cla" v-if="cognizeDetail.reference">
  160. <div class="reference_title">参考文献:</div>
  161. <div class="reference_detail" v-for="item, index in cognizeDetail.reference.split('//')"
  162. :key="item">
  163. <div>[{{ index + 1 }}] </div>
  164. <div> {{ item }}</div>
  165. </div>
  166. </div>
  167. </div>
  168. </div>
  169. </div>
  170. <el-dialog v-model="centerDialogVisible" title="预览" width="90%" top="2vh" center>
  171. <span>
  172. <!-- :src="requireImg('../assets/cognize/goNogo.pdf')" -->
  173. <!-- <embed width="100%" height=500px v-show="num == '3'" src='../assets/cognize/goNogo.pdf'>
  174. </embed> -->
  175. <!-- <embed width="100%" height=500px v-show="num == '3'" :src="pdf3">
  176. </embed> -->
  177. <embed width="100%" height=700px :src="requireImg('yd')">
  178. </embed>
  179. <!-- <embed width="100%" height=500px v-show="num == '4'" :src="pdf4">
  180. </embed> -->
  181. </span>
  182. </el-dialog>
  183. </div>
  184. <!-- <div class="cognize_real_out">
  185. 我是认知任务
  186. </div> -->
  187. </template>
  188. <style lang="scss" scoped>
  189. .cognize_real_out {
  190. background-color: #b64d4d;
  191. color: #41348a;
  192. position: fixed;
  193. z-index: 100;
  194. top: 0;
  195. width: 100vw;
  196. height: 100vh;
  197. }
  198. .home_header_out {
  199. padding-bottom: 60px;
  200. width: 100%;
  201. min-width: 1200px;
  202. background-image: url('../assets/home/bg_ty.png');
  203. background-repeat: no-repeat;
  204. background-size: contain;
  205. background-color: #B3F1DA; //估计是需要动态
  206. .home_header_inner {
  207. min-height: 1;
  208. left: 0;
  209. right: 0;
  210. margin: auto;
  211. width: 1200px;
  212. .xlts_img {
  213. height: 40px;
  214. }
  215. }
  216. .kply {
  217. width: 100%;
  218. margin-top: 20px;
  219. .kply_inner {
  220. min-height: 500px;
  221. left: 0;
  222. right: 0;
  223. margin: auto;
  224. width: 860px;
  225. // padding: 20px 20px;
  226. background-color: #ffffff;
  227. border-radius: 40px;
  228. .reference_cla {
  229. margin-top: 10px;
  230. .reference_title {
  231. font-size: 14px;
  232. color: #a9a9a9;
  233. line-height: 24px;
  234. }
  235. .reference_detail {
  236. font-size: 14px;
  237. color: #a9a9a9;
  238. line-height: 24px;
  239. letter-spacing: 3px;
  240. display: flex;
  241. }
  242. }
  243. .cpll {
  244. margin-top: 10px;
  245. .cpll_title {
  246. font-size: 14px;
  247. color: #48D68E;
  248. font-weight: 700;
  249. }
  250. .cpll_detail {
  251. font-size: 14px;
  252. letter-spacing: 3px;
  253. line-height: 24px;
  254. }
  255. }
  256. .czsm {
  257. margin-top: 10px;
  258. .czsm_title {
  259. color: #48D68E;
  260. font-weight: 700;
  261. line-height: 24px;
  262. font-size: 14px;
  263. }
  264. .czsm_detail {
  265. line-height: 24px;
  266. font-size: 14px;
  267. letter-spacing: 3px;
  268. }
  269. }
  270. .cognize_title {
  271. font-size: 20px;
  272. letter-spacing: 3px;
  273. font-weight: 700;
  274. margin-bottom: 10px;
  275. }
  276. .cognize_title2 {
  277. font-size: 20px;
  278. letter-spacing: 3px;
  279. // font-weight: 700;
  280. margin-top: 10px;
  281. margin-bottom: 20px;
  282. }
  283. .cognize_img_out {
  284. display: flex;
  285. justify-content: center;
  286. .cognize_des {
  287. letter-spacing: 2px;
  288. line-height: 20px;
  289. font-size: 16px;
  290. .cpjs {
  291. color: #48D68E;
  292. font-weight: 700;
  293. font-size: 14px;
  294. line-height: 24px;
  295. }
  296. .cpjs_detail {
  297. line-height: 24px;
  298. letter-spacing: 3px;
  299. font-size: 14px;
  300. }
  301. }
  302. }
  303. .cognize_video {
  304. display: flex;
  305. justify-content: center;
  306. }
  307. .pdf_op {
  308. margin-top: 20px;
  309. display: flex;
  310. justify-content: space-between;
  311. align-items: center;
  312. .pdf_sc {
  313. display: flex;
  314. // justify-content: space-between;
  315. align-items: center;
  316. cursor: pointer;
  317. .view {
  318. margin-left: 10px;
  319. color: #3E43FF;
  320. }
  321. }
  322. }
  323. .scale_button {
  324. margin-top: 30px;
  325. margin-bottom: 20px;
  326. display: flex;
  327. justify-content: space-around;
  328. .scale_button_inner {
  329. text-align: center;
  330. display: flex;
  331. justify-content: center;
  332. .scale_button_self {
  333. border-radius: 12px;
  334. border: 3px solid #48D68E;
  335. color: #ffffff;
  336. background-color: #000000;
  337. margin-right: 20px;
  338. padding: 10px 40px;
  339. cursor: pointer;
  340. display: flex;
  341. align-items: center;
  342. font-size: 16px;
  343. }
  344. }
  345. }
  346. }
  347. }
  348. }
  349. .home_mid {
  350. // background-color: blanchedalmond;
  351. width: 1200px;
  352. left: 0;
  353. right: 0;
  354. margin: auto;
  355. margin-top: 40px;
  356. // position: relative;
  357. .kepu_title {
  358. text-align: center;
  359. font-size: 50px;
  360. color: #111111;
  361. line-height: 95px;
  362. // width: 100%;
  363. // left: 0;
  364. // right: 0;
  365. // margin: auto
  366. }
  367. .kepu_title_sub {
  368. margin-top: 30px;
  369. text-align: center;
  370. font-size: 28px;
  371. color: #48D68E;
  372. line-height: 26px;
  373. }
  374. .man1_group {
  375. margin-top: 60px;
  376. height: 100%;
  377. display: flex;
  378. .man1 {
  379. position: relative;
  380. width: 327px;
  381. // height: 100%;
  382. // height: 100%
  383. .man1_img {
  384. position: absolute;
  385. bottom: 0;
  386. /* bottom: 0px; */
  387. /* height: auto; */
  388. width: 100%;
  389. left: 100px
  390. }
  391. }
  392. .des {
  393. border: #48D68E solid 5px;
  394. border-radius: 40px;
  395. padding: 20px;
  396. letter-spacing: 6px;
  397. flex: 1;
  398. .des_inner {
  399. border: 1px dashed #48D68E;
  400. border-radius: 40px;
  401. padding-bottom: 40px;
  402. padding-top: 30px;
  403. padding-left: 100px;
  404. padding-right: 20px;
  405. letter-spacing: 6px;
  406. font-weight: normal;
  407. font-size: 24px;
  408. color: #333333;
  409. line-height: 40px;
  410. }
  411. }
  412. }
  413. .man2_group {
  414. margin-top: 60px;
  415. height: 100%;
  416. display: flex;
  417. .man2 {
  418. position: relative;
  419. width: 327px;
  420. // height: 100%;
  421. // height: 100%
  422. .man2_img {
  423. position: absolute;
  424. bottom: 0;
  425. /* bottom: 0px; */
  426. /* height: auto; */
  427. width: 100%;
  428. left: -100px
  429. }
  430. }
  431. .des2 {
  432. border: #48D68E solid 5px;
  433. border-radius: 40px;
  434. padding: 20px;
  435. letter-spacing: 6px;
  436. flex: 1;
  437. .des2_inner {
  438. border: 1px dashed #48D68E;
  439. border-radius: 40px;
  440. padding-bottom: 40px;
  441. padding-top: 30px;
  442. padding-left: 20px;
  443. padding-right: 100px;
  444. letter-spacing: 6px;
  445. font-weight: normal;
  446. font-size: 24px;
  447. color: #333333;
  448. line-height: 40px;
  449. }
  450. }
  451. }
  452. .get_more {
  453. text-align: center;
  454. img {
  455. width: 300px;
  456. margin-top: 60px;
  457. margin-bottom: 60px;
  458. }
  459. }
  460. }
  461. // .home_footer_out {
  462. // width: 100%;
  463. // background-color: #000000;
  464. // }</style>