TestRecord.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  1. <script setup lang="ts">
  2. import CpmdHeader from '@/components/CpmdHeader.vue';
  3. import { onMounted, onUnmounted, ref } from 'vue'
  4. //持久化设置 菜单状态
  5. import { menuStatusStore, userInfoStore } from '@/stores'
  6. // import router from '@/router';
  7. import { useRouter } from 'vue-router';
  8. import { getDataApi } from '@/api/plan';
  9. import { userPlanDetailApi } from '@/api/home';
  10. const router = useRouter()
  11. const menuStatus = menuStatusStore();
  12. menuStatus.saveActiveIndex('5')
  13. const userInfo = userInfoStore()
  14. //分页设计
  15. //当前页
  16. //是哪一页
  17. const pageNum = ref<number>(1)
  18. //一页显示多少条
  19. const pageSize = ref<number>(5)
  20. //数据总共多少条
  21. const totol = ref<number>(0)
  22. //显示是否是在加载中
  23. const isLoading = ref<boolean>(false)
  24. //是否显示noMore
  25. const noMore = ref<boolean>(false)
  26. //页面返回的数据
  27. const list = ref<any>([])
  28. //获取数据报
  29. const getData = async () => {
  30. //判断总条数是否大于当前页面的数据
  31. console.log(totol.value == list.value.length)
  32. //先判断
  33. if (totol.value == list.value.length) {
  34. //显示noMore
  35. if (totol.value == 0) {
  36. noMore.value = false;
  37. } else {
  38. noMore.value = true;
  39. }
  40. return
  41. }
  42. //先是加载中的话就不加载了
  43. if (isLoading.value) {
  44. return
  45. }
  46. isLoading.value = true;
  47. //参数构造
  48. pageNum.value++
  49. //到这里就可以显示加载中
  50. let res = await initData()
  51. isLoading.value = false;
  52. }
  53. const initData = async () => {
  54. //判断用户登录没有
  55. if (!userInfo.token) {
  56. return
  57. }
  58. let params = {
  59. pageNum: pageNum.value,
  60. pageSize: pageSize.value,
  61. userNo: userInfo.userInfo.userNo
  62. }
  63. let res: any = await getDataApi(params)
  64. if (res.code == 200) {
  65. //在这里需要将已经测试完成的测试计划下的---的题目都标记出来
  66. //
  67. // list.value.push(...res.data)
  68. if (res.data.content.length > 0) {
  69. let listInit = []
  70. listInit.push(...res.data.content)
  71. // list.value.push(...res.data.content)
  72. //在这里进行循环--将需要显示的报告查询出来放入数组
  73. console.log(listInit.length)
  74. for (let i = 0; i < listInit.length; i++) {
  75. // list.value[i].listLin = []
  76. console.log(JSON.stringify(listInit))
  77. let params = {
  78. planId: listInit[i].id,
  79. userNo: userInfo.userInfo.userNo
  80. }
  81. let temp: any = await userPlanDetailApi(params)
  82. //在这里循环//且类型等于0 量表的 得到量表的列表
  83. let scaleList = []
  84. for (let j = 0; j < temp.data.length; j++) {
  85. if (temp.data[j].isDisplayed == '1' && temp.data[j].contentType == '0') {
  86. scaleList.push(temp.data[j])
  87. }
  88. }
  89. listInit[i].scaleList = scaleList;
  90. //在这里循环 //且类型为等于1的量表 得到量表列表
  91. let taskList = []
  92. for (let j = 0; j < temp.data.length; j++) {
  93. if (temp.data[j].isDisplayed == '1' && temp.data[j].contentType == '0') {
  94. taskList.push(temp.data[j])
  95. }
  96. }
  97. listInit[i].taskList = taskList;
  98. // list.value[i].list = temp.data
  99. // list.value[i].listLin = []
  100. }
  101. console.log("listInit")
  102. console.log(listInit)
  103. list.value.push(...listInit)
  104. totol.value = res.data.totalElements
  105. } else {
  106. list.value = []
  107. totol.value = 0
  108. // totalElements
  109. }
  110. }
  111. }
  112. //先判断总条数是否等于 当前页面的参数
  113. //如果等于的话--显示nomore
  114. //如果总条数大于 当前页面的总条数就显示loading
  115. //刚进入页面就将高度设置为页面需要的
  116. onMounted(() => {
  117. initData()
  118. //进到界面开始轮询
  119. })
  120. //界面销毁函数
  121. //跳转页面切换页面
  122. const viewReport = (planId: string) => {
  123. router.push({ name: 'report', params: { planId: planId, goFlag: '1' } })
  124. }
  125. //轮旋切换页面的方法
  126. //退出页面销毁 方法
  127. onUnmounted(() => {
  128. })
  129. </script>
  130. <template>
  131. <div class="home_header_out">
  132. <div class=" home_header_inner">
  133. <CpmdHeader />
  134. <div style="text-align: center;">
  135. <img class="xlts_img" style="margin-top:40px" src="../assets/home/other_text.png" />
  136. </div>
  137. </div>
  138. <div class="kply">
  139. <div class="kply_inner">
  140. <!-- -->
  141. <div style="padding: 20px 40px;">
  142. <div style="padding:10% 20%" v-show="list.length == 0">
  143. <img width="60%" style="margin-left: 20%;" src="../assets/planNo.png">
  144. </div>
  145. <div class="infinite-list-wrapper" style="overflow: auto" v-infinite-scroll="getData">
  146. <div v-for="item in list">
  147. <div class="test_record">
  148. <img src="../assets/kepu/task_1.png" />
  149. <span>{{ item.planName }}</span>
  150. </div>
  151. <div class="test_time">
  152. <span>测试时间:{{ item.taskStartTime }}~{{ item.taskEndTime }}</span>
  153. <!-- <div @click="viewReport(item.id)">查看报告</div> -->
  154. </div>
  155. <div class="content_out">
  156. <div class="content_inner">
  157. <div class="task_out">
  158. <div class="content_title">1.问答测试</div>
  159. <div class="task_inner">
  160. <div class="task_inner_single" v-for="subItem in item.scaleList"
  161. :key="subItem.id">
  162. <div class="task_inner_one">
  163. <img style="width: 80px;height: 80px"
  164. src="../assets/kepu/xlwht_active.png" alt="">
  165. <div class="task_content">
  166. <div class="title">{{ subItem.name }}</div>
  167. <!-- <div class="des" v-show="subItem.isCompleted != '1'">预计用时:{{
  168. subItem.expectTime }}</div> -->
  169. <div class="des" v-show="subItem.isCompleted == '1'">实际用时:{{
  170. subItem.useTime }}</div>
  171. <!-- <div class="noCompleted" v-show="subItem.isCompleted != '1'">
  172. <div class='noCompleted_status'> 未完成</div>
  173. </div> -->
  174. <div class="isCompleted" v-show="subItem.isCompleted == '1'">
  175. <div class='isCompleted_status'> 查看报告</div>
  176. </div>
  177. </div>
  178. </div>
  179. </div>
  180. </div>
  181. </div>
  182. <div class="task_out">
  183. <div class="content_title">2.认知评估</div>
  184. <div class="task_inner">
  185. <div class="task_inner_single" v-for="subItem in item.taskList">
  186. <div class="task_inner_one">
  187. <img style="width: 80px;height: 80px"
  188. src="../assets/kepu/xlwht_active.png" alt="">
  189. <div class="task_content">
  190. <div class="title">{{ subItem.name }}</div>
  191. <!-- <div class="des" v-show="subItem.isCompleted != '1'">预计用时:{{
  192. subItem.expectTime }}</div> -->
  193. <div class="des" v-show="subItem.isCompleted == '1'">实际用时:{{
  194. subItem.useTime }}</div>
  195. <!-- <div class="noCompleted" v-show="subItem.isCompleted != '1'">
  196. <div class='noCompleted_status'> 未完成</div>
  197. </div> -->
  198. <div class="isCompleted" v-show="subItem.isCompleted == '1'">
  199. <div class='isCompleted_status'> 查看报告</div>
  200. </div>
  201. </div>
  202. </div>
  203. </div>
  204. </div>
  205. </div>
  206. </div>
  207. <div></div>
  208. </div>
  209. <!-- <div class="record_out">
  210. <div class="record_score">
  211. <span>得&nbsp;&nbsp;&nbsp;&nbsp;分:</span>
  212. <span>{{ item.score }}</span>
  213. </div>
  214. <div class="record_result">
  215. <span>结&nbsp;&nbsp;&nbsp;&nbsp;论:</span>
  216. </div>
  217. </div> -->
  218. </div>
  219. <div style="text-align: center;margin-top:20px" v-show="isLoading">努力加载中...</div>
  220. <div style="text-align: center;;margin-top:20px" v-show="noMore">没有更多了</div>
  221. </div>
  222. <!-- 测试记录列表 -->
  223. </div>
  224. </div>
  225. </div>
  226. </div>
  227. </template>
  228. <style lang="scss" scoped>
  229. .home_header_out {
  230. // position: relative;
  231. padding-bottom: 60px;
  232. width: 100%;
  233. min-width: 1200px;
  234. background-image: url('../assets/home/bg_ty.png');
  235. background-repeat: no-repeat;
  236. background-size: contain;
  237. flex: 1;
  238. background-color: #FAFAFA; //估计是需要动态
  239. //获取屏幕宽度home_header_out 这个div的宽度--然后宽度*1000再除1920即为当前div的宽度
  240. .home_header_inner {
  241. min-height: 1;
  242. left: 0;
  243. right: 0;
  244. margin: auto;
  245. // height: 100px;
  246. width: 1200px;
  247. .xlts_img {
  248. height: 60px;
  249. }
  250. }
  251. .kply {
  252. width: 100%;
  253. margin-top: 40px;
  254. // background-color: #FAFAFA;
  255. .kply_inner {
  256. // padding: 20px 20px;
  257. left: 0;
  258. right: 0;
  259. margin: auto;
  260. width: 1200px;
  261. background-color: #ffffff;
  262. border-radius: 40px;
  263. margin-bottom: 20px;
  264. // height: 1000px;
  265. .infinite-list-wrapper {
  266. // max-height: 900px;
  267. // max-height: 500px;
  268. // min-height: 500px;
  269. .kepu_title {
  270. display: flex;
  271. flex-direction: row;
  272. justify-content: space-between;
  273. align-items: center;
  274. .kepu_title_des {
  275. font-family: Alibaba PuHuiTi 2.0;
  276. font-weight: 600;
  277. font-size: 30px;
  278. color: #000000;
  279. }
  280. .home_mid_plan_button {
  281. width: 100%;
  282. display: flex;
  283. flex-direction: row;
  284. justify-content: end;
  285. // text-align: right;
  286. .pub_button {
  287. cursor: pointer;
  288. // width: 100px;
  289. border-radius: 12px;
  290. border: 3px solid #48D68E;
  291. color: #ffffff;
  292. background-color: #000000;
  293. padding: 8px 30px;
  294. cursor: pointer;
  295. display: flex;
  296. align-items: center;
  297. }
  298. }
  299. }
  300. .com_out {
  301. min-height: 500px;
  302. padding: 20px 20px;
  303. }
  304. .test_record {
  305. margin-top: 20px;
  306. display: flex;
  307. align-items: center;
  308. img {
  309. width: 70px;
  310. }
  311. span {
  312. margin-left: 20px;
  313. font-size: 28px;
  314. font-weight: 700;
  315. letter-spacing: 3px;
  316. }
  317. }
  318. .test_time {
  319. margin-bottom: 10px;
  320. display: flex;
  321. flex-direction: row;
  322. justify-content: space-between;
  323. align-items: center;
  324. span {
  325. color: #000000;
  326. opacity: 0.4;
  327. font-size: 20px;
  328. }
  329. div {
  330. cursor: pointer;
  331. // width: 100px;
  332. border-radius: 12px;
  333. border: 3px solid #48D68E;
  334. color: #ffffff;
  335. background-color: #000000;
  336. margin-right: 20px;
  337. padding: 8px 30px;
  338. cursor: pointer;
  339. display: flex;
  340. align-items: center;
  341. }
  342. }
  343. .record_out {
  344. margin-top: 30px;
  345. background-color: #F7F7F7;
  346. padding: 30px 40px;
  347. border-radius: 40px;
  348. .record_score {
  349. color: #48D68E;
  350. margin-bottom: 5px;
  351. font-size: 20px;
  352. letter-spacing: 3px;
  353. }
  354. .record_result {
  355. line-height: 30px;
  356. color: #48D68E;
  357. margin-bottom: 10px;
  358. font-size: 20px;
  359. letter-spacing: 3px;
  360. }
  361. }
  362. .content_out {
  363. display: flex;
  364. flex-direction: column;
  365. width: 100%;
  366. // height: 200px;
  367. background-color: #F7F7F7;
  368. border-radius: 40px;
  369. .content_inner {
  370. padding: 20px 40px;
  371. .content_title {
  372. margin-bottom: 0px;
  373. font-weight: 700;
  374. font-size: 18px;
  375. }
  376. .content_one {
  377. border-radius: 20px;
  378. // padding: 10px 20px;
  379. display: flex;
  380. background-color: #ffffff;
  381. width: 45%;
  382. align-items: center;
  383. .content_single {
  384. border-radius: 20px;
  385. padding: 10px 20px;
  386. display: flex;
  387. background-color: #ffffff;
  388. width: 45%;
  389. align-items: center;
  390. .content_detail {
  391. display: flex;
  392. margin-left: 15px;
  393. justify-content: start;
  394. height: 80px;
  395. flex-direction: column;
  396. .title {
  397. font-weight: 700;
  398. font-size: 18px;
  399. }
  400. .des {
  401. color: #999999;
  402. font-size: 14px;
  403. }
  404. }
  405. }
  406. }
  407. .task_out {
  408. margin-top: 20px;
  409. display: flex;
  410. flex-direction: column;
  411. .task_inner {
  412. display: flex;
  413. flex-direction: row;
  414. justify-content: space-between;
  415. flex-wrap: wrap;
  416. .task_inner_single {
  417. margin-top: 20px;
  418. height: 100px;
  419. border-radius: 20px;
  420. width: 45%;
  421. display: flex;
  422. flex-direction: row;
  423. background-color: #ffffff;
  424. align-items: center;
  425. .task_inner_one {
  426. padding: 10px 20px;
  427. border-radius: 20px;
  428. width: 100%;
  429. display: flex;
  430. flex-direction: row;
  431. background-color: #ffffff;
  432. align-items: center;
  433. .task_content {
  434. height: 80px;
  435. margin-left: 10px;
  436. display: flex;
  437. flex-direction: column;
  438. width: 100%;
  439. .title {
  440. font-weight: 700;
  441. font-size: 18px;
  442. width: 100%;
  443. letter-spacing: 2px;
  444. }
  445. .des {
  446. color: #999999;
  447. font-size: 14px;
  448. line-height: 24px;
  449. letter-spacing: 2px;
  450. }
  451. .noCompleted {
  452. width: 100%;
  453. color: #ffffff;
  454. display: flex;
  455. justify-content: end;
  456. .noCompleted_status {
  457. line-height: 24px;
  458. font-size: 14px;
  459. border-radius: 20px;
  460. text-align: center;
  461. right: 0px;
  462. width: 70px;
  463. background-color: red;
  464. }
  465. }
  466. .isCompleted {
  467. width: 100%;
  468. color: #ffffff;
  469. display: flex;
  470. justify-content: end;
  471. .isCompleted_status {
  472. padding-left: 10px;
  473. padding-right: 10px;
  474. line-height: 30px;
  475. font-size: 14px;
  476. border-radius: 4px;
  477. text-align: center;
  478. right: 0px;
  479. width: 70px;
  480. border-radius: 12px;
  481. border: 3px solid #48D68E;
  482. color: #ffffff;
  483. background-color: #000000;
  484. cursor: pointer
  485. }
  486. }
  487. }
  488. }
  489. }
  490. }
  491. }
  492. }
  493. }
  494. }
  495. }
  496. }
  497. }
  498. .home_mid {
  499. // background-color: blanchedalmond;
  500. width: 1200px;
  501. left: 0;
  502. right: 0;
  503. margin: auto;
  504. margin-top: 40px;
  505. // position: relative;
  506. .kepu_title {
  507. text-align: center;
  508. font-size: 50px;
  509. color: #111111;
  510. line-height: 95px;
  511. // width: 100%;
  512. // left: 0;
  513. // right: 0;
  514. // margin: auto
  515. }
  516. .kepu_title_sub {
  517. margin-top: 30px;
  518. text-align: center;
  519. font-size: 28px;
  520. color: #48D68E;
  521. line-height: 26px;
  522. }
  523. .man1_group {
  524. margin-top: 60px;
  525. height: 100%;
  526. display: flex;
  527. .man1 {
  528. position: relative;
  529. width: 327px;
  530. // height: 100%;
  531. // height: 100%
  532. .man1_img {
  533. position: absolute;
  534. bottom: 0;
  535. /* bottom: 0px; */
  536. /* height: auto; */
  537. width: 100%;
  538. left: 100px
  539. }
  540. }
  541. .des {
  542. border: #48D68E solid 5px;
  543. border-radius: 40px;
  544. padding: 20px;
  545. letter-spacing: 6px;
  546. flex: 1;
  547. .des_inner {
  548. border: 1px dashed #48D68E;
  549. border-radius: 40px;
  550. padding-bottom: 40px;
  551. padding-top: 30px;
  552. padding-left: 100px;
  553. padding-right: 20px;
  554. letter-spacing: 6px;
  555. font-weight: normal;
  556. font-size: 24px;
  557. color: #333333;
  558. line-height: 40px;
  559. }
  560. }
  561. }
  562. .man2_group {
  563. margin-top: 60px;
  564. height: 100%;
  565. display: flex;
  566. .man2 {
  567. position: relative;
  568. width: 327px;
  569. // height: 100%;
  570. // height: 100%
  571. .man2_img {
  572. position: absolute;
  573. bottom: 0;
  574. /* bottom: 0px; */
  575. /* height: auto; */
  576. width: 100%;
  577. left: -100px
  578. }
  579. }
  580. .des2 {
  581. border: #48D68E solid 5px;
  582. border-radius: 40px;
  583. padding: 20px;
  584. letter-spacing: 6px;
  585. flex: 1;
  586. .des2_inner {
  587. border: 1px dashed #48D68E;
  588. border-radius: 40px;
  589. padding-bottom: 40px;
  590. padding-top: 30px;
  591. padding-left: 20px;
  592. padding-right: 100px;
  593. letter-spacing: 6px;
  594. font-weight: normal;
  595. font-size: 24px;
  596. color: #333333;
  597. line-height: 40px;
  598. }
  599. }
  600. }
  601. .get_more {
  602. text-align: center;
  603. img {
  604. width: 300px;
  605. margin-top: 60px;
  606. margin-bottom: 60px;
  607. }
  608. }
  609. }
  610. // .home_footer_out {
  611. // width: 100%;
  612. // background-color: #000000;
  613. // }</style>