ScaleDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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 { useRoute, useRouter } from 'vue-router'
  6. const route = useRoute()
  7. const router = useRouter()
  8. //测试flag
  9. const flag = ref<string>('')
  10. //测试计划ID
  11. const planId = ref<string>('')
  12. //测试计划名称
  13. const planName = ref<string>('')
  14. //测试任务的类型
  15. const type = ref<string>('')
  16. //量表描述
  17. const detail = ref<string>('')
  18. //量表理论
  19. const theory = ref<string>('')
  20. //量表参考文献
  21. const reference = ref<string>('')
  22. //量表名称
  23. const scaleName = ref<string>('')
  24. onMounted(() => {
  25. //修改 flag
  26. flag.value = route.params.flag as string;
  27. planId.value = route.params.planId as string;
  28. planName.value = route.params.planName as string;
  29. type.value = route.params.type as string;
  30. //获取传输过来的测评介绍
  31. //获取传输过来的类型
  32. //获取传输过来的flag
  33. //拿到以后根据根据flag查询
  34. if (type.value == '0') {
  35. queryScaleDetail()
  36. }
  37. })
  38. const queryScaleDetail = async () => {
  39. //根据flag查询量表详情
  40. let res: any = await queryScaleDetailApi(flag.value)
  41. console.log(res)
  42. scaleName.value = res.data.name;
  43. detail.value = res.data.description;
  44. theory.value = res.data.theory;
  45. //参考文献
  46. console.log(res.data.reference)
  47. reference.value = res.data.reference.split('//');
  48. console.log(reference.value)
  49. debugger
  50. }
  51. const startText = () => {
  52. //当;类型是0时、、跳转到量表测试界面
  53. if (type.value == '0') {
  54. //开始跳转到scal90测试界面
  55. router.push({
  56. name: 'scale',
  57. params: {
  58. planId: planId.value,
  59. planName: planName.value,
  60. flag: flag.value,
  61. flagName: scaleName.value
  62. }
  63. })
  64. }
  65. }
  66. //接受来自计划页面的参数
  67. //得到需要测试的类型
  68. //得到需要测试的flag
  69. //查询量表的描述
  70. //查询量表的文献
  71. </script>
  72. <template>
  73. <div class="home_header_out" ref="homeHeaderOut">
  74. <div class=" home_header_inner">
  75. <CpmdHeader />
  76. <div style="text-align: center;">
  77. <img class="xlts_img" style="margin-top:20px" src="../assets/home/other_text.png" />
  78. </div>
  79. </div>
  80. <div class="kply">
  81. <div class="kply_inner">
  82. <div style="padding :20px 40px">
  83. <div class="cognize_title">
  84. {{ scaleName }}
  85. </div>
  86. <div class="cognize_img_out">
  87. <img src="../assets/cognize/c1.png" v-show="true" width=" 100px" height="100px"
  88. style="margin-right: 20px;" />
  89. <div class="cognize_des">
  90. <span class="cpjs">测评介绍:</span>{{ detail }}
  91. </div>
  92. </div>
  93. <div class="yl_out"><span class="yl">原理:</span><span class="yl_detail">{{ theory }}</span>
  94. </div>
  95. <div class="ckwx">
  96. <div class="reference_title">参考文献:</div>
  97. <div v-for="item, index in reference" :key="index" class='reference_cal'>
  98. <div>[{{ index + 1 }}]</div>
  99. <div>{{ item }}</div>
  100. </div>
  101. </div>
  102. <div class=" scale_button">
  103. <el-row>
  104. <el-col :span="12" class="scale_button_inner">
  105. <div class="scale_button_self" @click="startText">开始测试</div>
  106. </el-col>
  107. </el-row>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. </template>
  114. <style lang="scss">
  115. .cognize_real_out {
  116. background-color: #b64d4d;
  117. color: #41348a;
  118. position: fixed;
  119. z-index: 100;
  120. top: 0;
  121. width: 100vw;
  122. height: 100vh;
  123. }
  124. .home_header_out {
  125. padding-bottom: 60px;
  126. width: 100%;
  127. min-width: 1200px;
  128. background-image: url('../assets/home/bg_ty.png');
  129. background-repeat: no-repeat;
  130. background-size: contain;
  131. background-color: #FAFAFA; //估计是需要动态
  132. .home_header_inner {
  133. min-height: 1;
  134. left: 0;
  135. right: 0;
  136. margin: auto;
  137. width: 1200px;
  138. .xlts_img {
  139. height: 40px;
  140. }
  141. }
  142. .kply {
  143. width: 100%;
  144. margin-top: 20px;
  145. .kply_inner {
  146. min-height: 500px;
  147. left: 0;
  148. right: 0;
  149. margin: auto;
  150. width: 860px;
  151. // padding: 20px 20px;
  152. background-color: #ffffff;
  153. border-radius: 40px;
  154. .yl_out {
  155. margin-top: 10px;
  156. letter-spacing: 3px;
  157. .yl {
  158. color: #48D68E;
  159. font-weight: 700;
  160. }
  161. .yl_detail {
  162. letter-spacing: 2px;
  163. line-height: 25px;
  164. }
  165. }
  166. .ckwx {
  167. margin-top: 10px;
  168. .reference_title {
  169. color: #a9a9a9;
  170. font-size: 16px;
  171. }
  172. .reference_cal {
  173. display: flex;
  174. width: 100%;
  175. color: #a9a9a9;
  176. font-size: 14px;
  177. letter-spacing: 2px;
  178. line-height: 30px;
  179. }
  180. }
  181. .cognize_title {
  182. font-size: 20px;
  183. letter-spacing: 3px;
  184. font-weight: 700;
  185. margin-bottom: 10px;
  186. }
  187. .cognize_title2 {
  188. font-size: 20px;
  189. letter-spacing: 3px;
  190. // font-weight: 700;
  191. margin-top: 10px;
  192. margin-bottom: 20px;
  193. }
  194. .cognize_img_out {
  195. display: flex;
  196. justify-content: center;
  197. align-items: center;
  198. .cognize_des {
  199. letter-spacing: 2px;
  200. line-height: 20px;
  201. font-size: 16px;
  202. line-height: 25px;
  203. .cpjs {
  204. color: #48D68E;
  205. font-weight: 700;
  206. }
  207. }
  208. }
  209. .cognize_video {
  210. display: flex;
  211. justify-content: center;
  212. }
  213. .pdf_op {
  214. margin-top: 20px;
  215. display: flex;
  216. justify-content: space-between;
  217. align-items: center;
  218. .pdf_sc {
  219. display: flex;
  220. // justify-content: space-between;
  221. align-items: center;
  222. cursor: pointer;
  223. .view {
  224. margin-left: 10px;
  225. color: #3E43FF;
  226. }
  227. }
  228. }
  229. .scale_button {
  230. margin-top: 30px;
  231. margin-bottom: 20px;
  232. .scale_button_inner {
  233. text-align: center;
  234. display: flex;
  235. justify-content: center;
  236. .scale_button_self {
  237. border-radius: 12px;
  238. border: 3px solid #48D68E;
  239. color: #ffffff;
  240. background-color: #000000;
  241. margin-right: 20px;
  242. padding: 10px 40px;
  243. cursor: pointer;
  244. display: flex;
  245. align-items: center;
  246. font-size: 16px;
  247. }
  248. }
  249. }
  250. }
  251. }
  252. }
  253. .home_mid {
  254. // background-color: blanchedalmond;
  255. width: 1200px;
  256. left: 0;
  257. right: 0;
  258. margin: auto;
  259. margin-top: 40px;
  260. // position: relative;
  261. .kepu_title {
  262. text-align: center;
  263. font-size: 50px;
  264. color: #111111;
  265. line-height: 95px;
  266. // width: 100%;
  267. // left: 0;
  268. // right: 0;
  269. // margin: auto
  270. }
  271. .kepu_title_sub {
  272. margin-top: 30px;
  273. text-align: center;
  274. font-size: 28px;
  275. color: #48D68E;
  276. line-height: 26px;
  277. }
  278. .man1_group {
  279. margin-top: 60px;
  280. height: 100%;
  281. display: flex;
  282. .man1 {
  283. position: relative;
  284. width: 327px;
  285. // height: 100%;
  286. // height: 100%
  287. .man1_img {
  288. position: absolute;
  289. bottom: 0;
  290. /* bottom: 0px; */
  291. /* height: auto; */
  292. width: 100%;
  293. left: 100px
  294. }
  295. }
  296. .des {
  297. border: #48D68E solid 5px;
  298. border-radius: 40px;
  299. padding: 20px;
  300. letter-spacing: 6px;
  301. flex: 1;
  302. .des_inner {
  303. border: 1px dashed #48D68E;
  304. border-radius: 40px;
  305. padding-bottom: 40px;
  306. padding-top: 30px;
  307. padding-left: 100px;
  308. padding-right: 20px;
  309. letter-spacing: 6px;
  310. font-weight: normal;
  311. font-size: 24px;
  312. color: #333333;
  313. line-height: 40px;
  314. }
  315. }
  316. }
  317. .man2_group {
  318. margin-top: 60px;
  319. height: 100%;
  320. display: flex;
  321. .man2 {
  322. position: relative;
  323. width: 327px;
  324. // height: 100%;
  325. // height: 100%
  326. .man2_img {
  327. position: absolute;
  328. bottom: 0;
  329. /* bottom: 0px; */
  330. /* height: auto; */
  331. width: 100%;
  332. left: -100px
  333. }
  334. }
  335. .des2 {
  336. border: #48D68E solid 5px;
  337. border-radius: 40px;
  338. padding: 20px;
  339. letter-spacing: 6px;
  340. flex: 1;
  341. .des2_inner {
  342. border: 1px dashed #48D68E;
  343. border-radius: 40px;
  344. padding-bottom: 40px;
  345. padding-top: 30px;
  346. padding-left: 20px;
  347. padding-right: 100px;
  348. letter-spacing: 6px;
  349. font-weight: normal;
  350. font-size: 24px;
  351. color: #333333;
  352. line-height: 40px;
  353. }
  354. }
  355. }
  356. .get_more {
  357. text-align: center;
  358. img {
  359. width: 300px;
  360. margin-top: 60px;
  361. margin-bottom: 60px;
  362. }
  363. }
  364. }
  365. </style>