ScaleDetail.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. <script lang="ts" setup>
  2. import CpmdHeader from '@/components/CpmdHeader.vue';
  3. import { queryScaleDetailApi } from '@/api/plan'
  4. import { ref, onMounted } from 'vue'
  5. import { userInfoStore } from '@/stores'
  6. import { useRoute, useRouter } from 'vue-router'
  7. import { userPlanApi, userPlanDetailApi } from '@/api/home';
  8. const userInfo = userInfoStore();
  9. const route = useRoute()
  10. const router = useRouter()
  11. //测试flag
  12. const flag = ref<string>('')
  13. //测试计划ID
  14. const planId = ref<string>('')
  15. //测试计划名称
  16. const planName = ref<string>('')
  17. //测试任务的类型
  18. const type = ref<string>('')
  19. //量表描述
  20. const detail = ref<string>('')
  21. //量表理论
  22. const theory = ref<string>('')
  23. //量表参考文献
  24. const reference = ref<string>('')
  25. //量表名称
  26. const scaleName = ref<string>('')
  27. //
  28. const planObj = ref<any>({})
  29. const isComplate = ref<string>()
  30. onMounted(() => {
  31. //修改 flag
  32. flag.value = route.params.flag as string;
  33. planId.value = route.params.planId as string;
  34. planName.value = route.params.planName as string;
  35. type.value = route.params.type as string;
  36. //获取传输过来的测评介绍
  37. //获取传输过来的类型
  38. //获取传输过来的flag
  39. //拿到以后根据根据flag查询
  40. if (type.value == '0') {
  41. queryScaleDetail()
  42. sclStatus()
  43. }
  44. })
  45. //在这个页面设置一下
  46. //查询scl90的状态是什么
  47. const sclStatus = async () => {
  48. //先判断是否是scl90
  49. //如果是的话---则判断是否状态已完成
  50. if (flag.value == "20210617140713") {
  51. //
  52. let userNo = ''
  53. //登录的话
  54. //判断当前是否有后台管理
  55. userNo = userInfo.userInfo.userNo
  56. //调用根据用户查询计划的API
  57. let res: any = await userPlanApi(userNo)
  58. for (let i = 0; i < res.data.length; i++) {
  59. if (res.data[i].id = planId.value) {
  60. planObj.value = res.data[i]
  61. }
  62. }
  63. //将list赋值进去
  64. planObj.value.list = [];
  65. let params = {
  66. planId: planObj.value.id,
  67. userNo: userInfo.userInfo.userNo
  68. }
  69. //调用详细的API
  70. let temp: any = await userPlanDetailApi(params)
  71. planObj.value.list = temp.data
  72. //循环list 查询到量表的状态
  73. for (let i = 0; i < planObj.value.list.length; i++) {
  74. if (planObj.value.list[i].flag == '20210617140713') {
  75. if (planObj.value.list[i].isCompleted == '0') {
  76. isComplate.value = planObj.value.list[i].isCompleted
  77. } else if (planObj.value.list[i].isCompleted == '1') {
  78. //此时应该判断--他后边还有需要做的吗 必做--不显示的量表--如果有状态改为2 --如果没有状态改为1
  79. let listTmp = []
  80. for (let j = 0; j < planObj.value.list.length; j++) {
  81. if (planObj.value.list[j].isDisplayed == '0' && planObj.value.list[j].isAvailable == '1' && planObj.value.list[j].isCompleted == '0') {
  82. listTmp.push('1')
  83. }
  84. }
  85. if (listTmp.length > 0) {
  86. isComplate.value = '2'
  87. } else {
  88. isComplate.value = '1'
  89. }
  90. }
  91. }
  92. }
  93. //得到list
  94. }
  95. //如果是1的状态 需要
  96. //判断当前scl90的状态是什么
  97. }
  98. const queryScaleDetail = async () => {
  99. //根据flag查询量表详情
  100. let res: any = await queryScaleDetailApi(flag.value)
  101. scaleName.value = res.data.name;
  102. detail.value = res.data.description;
  103. theory.value = res.data.theory;
  104. //参考文献
  105. reference.value = res.data.reference.split('//');
  106. }
  107. const startText = () => {
  108. //当;类型是0时、、跳转到量表测试界面
  109. if (type.value == '0') {
  110. //开始跳转到scal90测试界面
  111. router.push({
  112. name: 'scale',
  113. params: {
  114. planId: planId.value,
  115. planName: planName.value,
  116. flag: flag.value,
  117. flagName: scaleName.value,
  118. isComplate: isComplate.value
  119. }
  120. })
  121. }
  122. }
  123. //接受来自计划页面的参数
  124. //得到需要测试的类型
  125. //得到需要测试的flag
  126. //查询量表的描述
  127. //查询量表的文献
  128. </script>
  129. <template>
  130. <div class="home_header_out" ref="homeHeaderOut">
  131. <div class=" home_header_inner">
  132. <CpmdHeader />
  133. <div style="text-align: center;">
  134. <!-- <img class="xlts_img" style="margin-top:20px" src="../assets/home/other_text.png" /> -->
  135. </div>
  136. </div>
  137. <div class="kply">
  138. <div class="kply_inner">
  139. <div style="padding :20px 40px">
  140. <div class="cognize_title">
  141. {{ scaleName }}
  142. </div>
  143. <div class="cognize_img_out">
  144. <!-- <img src="../assets/cognize/c1.png" v-show="true" width=" 100px" height="100px"
  145. style="margin-right: 20px;" /> -->
  146. <!-- <img src="../assets/kepu/czscz_default.png" width=" 100px" style="margin-right: 20px;" /> -->
  147. <!-- <img src="../assets/kepu/czscz_active.png" v-show="true" width=" 100px" height="100px"
  148. style="margin-right: 20px;" /> -->
  149. <div class="cognize_des">
  150. <span class="cpjs">测评介绍:</span>
  151. <span class="cpjs_detail">{{ detail }}</span>
  152. </div>
  153. </div>
  154. <div class="yl_out">
  155. <span class="yl">原理:</span>
  156. <span class="yl_detail">{{ theory }}</span>
  157. </div>
  158. <div class=" scale_button">
  159. <el-row>
  160. <el-col :span="24" class="scale_button_inner">
  161. <div class="scale_button_self" @click="startText">开始测试</div>
  162. </el-col>
  163. </el-row>
  164. </div>
  165. <div class="ckwx">
  166. <div class="reference_title">参考文献:</div>
  167. <div v-for="item, index in reference" :key="index" class='reference_cal'>
  168. <div>[{{ index + 1 }}]</div>
  169. <div>{{ item }}</div>
  170. </div>
  171. </div>
  172. <!-- <div class=" scale_button">
  173. <el-row>
  174. <el-col :span="24" class="scale_button_inner">
  175. <div class="scale_button_self" @click="startText">开始测试</div>
  176. </el-col>
  177. </el-row>
  178. </div> -->
  179. </div>
  180. </div>
  181. </div>
  182. </div>
  183. </template>
  184. <style lang="scss">
  185. .cognize_real_out {
  186. background-color: #b64d4d;
  187. color: #41348a;
  188. position: fixed;
  189. z-index: 100;
  190. top: 0;
  191. width: 100vw;
  192. height: 100vh;
  193. }
  194. .home_header_out {
  195. padding-bottom: 60px;
  196. width: 100%;
  197. min-width: 1200px;
  198. background-image: url('../assets/home/bg_ty.png');
  199. background-repeat: no-repeat;
  200. background-size: contain;
  201. background-color: #B3F1DA; //估计是需要动态
  202. .home_header_inner {
  203. min-height: 1;
  204. left: 0;
  205. right: 0;
  206. margin: auto;
  207. width: 1200px;
  208. .xlts_img {
  209. height: 40px;
  210. }
  211. }
  212. .kply {
  213. width: 100%;
  214. margin-top: 20px;
  215. .kply_inner {
  216. min-height: 500px;
  217. left: 0;
  218. right: 0;
  219. margin: auto;
  220. width: 860px;
  221. // padding: 20px 20px;
  222. background-color: #ffffff;
  223. border-radius: 40px;
  224. .yl_out {
  225. margin-top: 10px;
  226. letter-spacing: 3px;
  227. .yl {
  228. color: #48D68E;
  229. font-weight: 700;
  230. font-size: 14px;
  231. line-height: 24px;
  232. }
  233. .yl_detail {
  234. font-size: 14px;
  235. letter-spacing: 3px;
  236. line-height: 24px;
  237. }
  238. }
  239. .ckwx {
  240. margin-top: 10px;
  241. .reference_title {
  242. color: #a9a9a9;
  243. font-size: 14px;
  244. }
  245. .reference_cal {
  246. display: flex;
  247. width: 100%;
  248. color: #a9a9a9;
  249. font-size: 14px;
  250. letter-spacing: 3px;
  251. line-height: 24px;
  252. }
  253. }
  254. .cognize_title {
  255. font-size: 20px;
  256. letter-spacing: 3px;
  257. font-weight: 700;
  258. margin-bottom: 10px;
  259. }
  260. .cognize_title2 {
  261. font-size: 20px;
  262. letter-spacing: 3px;
  263. // font-weight: 700;
  264. margin-top: 10px;
  265. margin-bottom: 20px;
  266. }
  267. .cognize_img_out {
  268. display: flex;
  269. justify-content: center;
  270. align-items: center;
  271. .cognize_des {
  272. .cpjs {
  273. color: #48D68E;
  274. font-weight: 700;
  275. font-size: 14px;
  276. }
  277. .cpjs_detail {
  278. font-size: 14px;
  279. letter-spacing: 3px;
  280. line-height: 24px;
  281. }
  282. }
  283. }
  284. .cognize_video {
  285. display: flex;
  286. justify-content: center;
  287. }
  288. .pdf_op {
  289. margin-top: 20px;
  290. display: flex;
  291. justify-content: space-between;
  292. align-items: center;
  293. .pdf_sc {
  294. display: flex;
  295. // justify-content: space-between;
  296. align-items: center;
  297. cursor: pointer;
  298. .view {
  299. margin-left: 10px;
  300. color: #3E43FF;
  301. }
  302. }
  303. }
  304. .scale_button {
  305. margin-top: 30px;
  306. margin-bottom: 20px;
  307. .scale_button_inner {
  308. text-align: center;
  309. display: flex;
  310. justify-content: center;
  311. .scale_button_self {
  312. border-radius: 12px;
  313. border: 3px solid #48D68E;
  314. color: #ffffff;
  315. background-color: #000000;
  316. margin-right: 20px;
  317. padding: 10px 40px;
  318. cursor: pointer;
  319. display: flex;
  320. align-items: center;
  321. font-size: 16px;
  322. }
  323. }
  324. }
  325. }
  326. }
  327. }
  328. .home_mid {
  329. // background-color: blanchedalmond;
  330. width: 1200px;
  331. left: 0;
  332. right: 0;
  333. margin: auto;
  334. margin-top: 40px;
  335. // position: relative;
  336. .kepu_title {
  337. text-align: center;
  338. font-size: 50px;
  339. color: #111111;
  340. line-height: 95px;
  341. // width: 100%;
  342. // left: 0;
  343. // right: 0;
  344. // margin: auto
  345. }
  346. .kepu_title_sub {
  347. margin-top: 30px;
  348. text-align: center;
  349. font-size: 28px;
  350. color: #48D68E;
  351. line-height: 26px;
  352. }
  353. .man1_group {
  354. margin-top: 60px;
  355. height: 100%;
  356. display: flex;
  357. .man1 {
  358. position: relative;
  359. width: 327px;
  360. // height: 100%;
  361. // height: 100%
  362. .man1_img {
  363. position: absolute;
  364. bottom: 0;
  365. /* bottom: 0px; */
  366. /* height: auto; */
  367. width: 100%;
  368. left: 100px
  369. }
  370. }
  371. .des {
  372. border: #48D68E solid 5px;
  373. border-radius: 40px;
  374. padding: 20px;
  375. letter-spacing: 6px;
  376. flex: 1;
  377. .des_inner {
  378. border: 1px dashed #48D68E;
  379. border-radius: 40px;
  380. padding-bottom: 40px;
  381. padding-top: 30px;
  382. padding-left: 100px;
  383. padding-right: 20px;
  384. letter-spacing: 6px;
  385. font-weight: normal;
  386. font-size: 24px;
  387. color: #333333;
  388. line-height: 40px;
  389. }
  390. }
  391. }
  392. .man2_group {
  393. margin-top: 60px;
  394. height: 100%;
  395. display: flex;
  396. .man2 {
  397. position: relative;
  398. width: 327px;
  399. // height: 100%;
  400. // height: 100%
  401. .man2_img {
  402. position: absolute;
  403. bottom: 0;
  404. /* bottom: 0px; */
  405. /* height: auto; */
  406. width: 100%;
  407. left: -100px
  408. }
  409. }
  410. .des2 {
  411. border: #48D68E solid 5px;
  412. border-radius: 40px;
  413. padding: 20px;
  414. letter-spacing: 6px;
  415. flex: 1;
  416. .des2_inner {
  417. border: 1px dashed #48D68E;
  418. border-radius: 40px;
  419. padding-bottom: 40px;
  420. padding-top: 30px;
  421. padding-left: 20px;
  422. padding-right: 100px;
  423. letter-spacing: 6px;
  424. font-weight: normal;
  425. font-size: 24px;
  426. color: #333333;
  427. line-height: 40px;
  428. }
  429. }
  430. }
  431. .get_more {
  432. text-align: center;
  433. img {
  434. width: 300px;
  435. margin-top: 60px;
  436. margin-bottom: 60px;
  437. }
  438. }
  439. }
  440. </style>