Report.vue 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327
  1. <template>
  2. <div class="out">
  3. <!---lxh-修改密码-->
  4. <div class="dig_update">
  5. <el-dialog
  6. :visible.sync="dialogVisible"
  7. :close-on-click-modal="false"
  8. width="80%"
  9. style="border-radius: 40px"
  10. >
  11. <div slot="title">
  12. <div label-width="150px" class="demo-ruleForm">
  13. <p v-if="isView" class="dig_title">{{ proDataLin.userName }}的计划列表</p>
  14. <p v-if="!isView" class="dig_title">编辑计划</p>
  15. <div slot=""></div>
  16. <div slot="footer"></div>
  17. <div class="table-content">
  18. <el-table
  19. :data="tableData"
  20. :row-style="{ height: '0px' }"
  21. :cell-style="{ padding: '5px' }"
  22. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  23. >
  24. <el-table-column
  25. show-overflow-tooltip
  26. prop="planName"
  27. label="计划名称"
  28. align="center"
  29. width=""
  30. >
  31. </el-table-column>
  32. <!-- <el-table-column prop="userNo" label="学号" align="center" width="">
  33. </el-table-column> -->
  34. <el-table-column
  35. show-overflow-tooltip
  36. prop="completedTime"
  37. label="测试完成时间"
  38. align="center"
  39. width=""
  40. >
  41. </el-table-column>
  42. <el-table-column label="测试进度" align="center" width="">
  43. <template slot-scope="scope">
  44. <div class="progress_cla">
  45. <el-progress
  46. text-color="#000000"
  47. :text-inside="true"
  48. :stroke-width="26"
  49. :percentage="
  50. parseInt(
  51. parseFloat(
  52. scope.row.userCompletedNum / scope.row.userContentNum
  53. ) * 100
  54. )
  55. "
  56. ></el-progress>
  57. </div>
  58. </template>
  59. </el-table-column>
  60. <el-table-column
  61. prop="isComplete"
  62. :formatter="forMatCom"
  63. label="状态"
  64. align="center"
  65. width=""
  66. >
  67. <template slot-scope="scope">
  68. <div
  69. style="display: flex; justify-content: center; align-items: center"
  70. v-if="scope.row.isComplete == '1'"
  71. >
  72. <img
  73. style="width: 16px"
  74. src="../assets/img/home/isCom.png"
  75. alt=""
  76. />&nbsp;&nbsp;
  77. <div style="color: #00955e">已完成</div>
  78. </div>
  79. <div
  80. style="display: flex; justify-content: center; align-items: center"
  81. v-if="scope.row.isComplete == '0'"
  82. >
  83. <img
  84. style="width: 16px"
  85. src="../assets/img/home/isNo.png"
  86. alt=""
  87. />&nbsp;&nbsp;
  88. <div style="color: #d52121">未完成</div>
  89. </div>
  90. </template>
  91. </el-table-column>
  92. <el-table-column label="操作" width="240px" align="center">
  93. <template slot-scope="scope">
  94. <div class="detail_button_out" v-show="scope.row.isComplete == '1'">
  95. <div class="detail_button" @click="radioClickNew(scope.row)">
  96. <img src="../assets/img/table/search.png" />
  97. <span> 个人报告查看 </span>
  98. </div>
  99. </div>
  100. <!-- <div
  101. class="detail_button_out"
  102. v-if="scope.row.hasOwnProperty('contentList')"
  103. >
  104. <div v-for="item in scope.row.contentList" :key="item.id">
  105. <div
  106. v-if="item.isDisplayed == 1"
  107. style="
  108. color: #00bf78;
  109. display: flex;
  110. justify-content: flex-start;
  111. align-items: center;
  112. cursor: pointer;
  113. "
  114. @click="radioClick(item, scope.row)"
  115. >
  116. <img
  117. style="width: 15px; margin-left: 10px"
  118. src="../assets/img/table/search.png"
  119. />
  120. {{ item.name }}
  121. </div>
  122. </div>
  123. </div> -->
  124. </template>
  125. </el-table-column>
  126. </el-table>
  127. </div>
  128. <el-pagination
  129. class="pag_class"
  130. background
  131. @size-change="handleSizeChange"
  132. @current-change="handleCurrentChange"
  133. :current-page.sync="pageNum"
  134. layout="total, sizes, prev, pager, next"
  135. :page-size="pageSize"
  136. :page-sizes="[10, 20, 50, 100]"
  137. :total="total"
  138. >
  139. </el-pagination>
  140. <div class="dig_button"></div>
  141. </div>
  142. </div>
  143. </el-dialog>
  144. </div>
  145. <div>
  146. <el-dialog
  147. :visible.sync="topicVisible"
  148. :close-on-click-modal="false"
  149. width="40%"
  150. style="border-radius: 40px"
  151. >
  152. <div slot="title">
  153. <div label-width="150px" class="demo-ruleForm">
  154. <p v-if="isView" class="dig_title">查看报告</p>
  155. <div slot=""></div>
  156. <div slot="footer"></div>
  157. <div style="margin-bottom: 20px">量表</div>
  158. <el-button
  159. type="success"
  160. style="border-radius: 20px"
  161. v-for="item in topPicList"
  162. :key="item.name"
  163. @click="radioClick(item)"
  164. >
  165. {{ item.name }}
  166. </el-button>
  167. <div style="margin-bottom: 20px; margin-top: 20px">任务(必选)</div>
  168. <el-button
  169. type="success"
  170. style="border-radius: 20px"
  171. v-for="item in taskList"
  172. :key="item.name"
  173. @click="radioClick(item)"
  174. >
  175. {{ item.name }}
  176. </el-button>
  177. <div style="margin-bottom: 20px; margin-top: 20px">任务(可选)</div>
  178. <div v-show="taskOptionalList.length == 0">无</div>
  179. <el-button
  180. type="success"
  181. style="
  182. border-radius: 20px;
  183. margin-left: 0px;
  184. display: flex;
  185. margin-top: 20px;
  186. "
  187. v-for="item in taskOptionalList"
  188. :key="item.name"
  189. @click="radioClick(item)"
  190. >
  191. {{ item.name }}
  192. </el-button>
  193. <div class="dig_button"></div>
  194. </div>
  195. </div>
  196. </el-dialog>
  197. </div>
  198. <div class="dig_update">
  199. <el-dialog
  200. :visible.sync="userVisible"
  201. append-to-body
  202. width="82%"
  203. style="border-radius: 40px"
  204. >
  205. <div slot="title" style="border-radius: 40px">
  206. <p style="text-align: center; font-weight: 700; font-size: 20px">
  207. {{ proDataLin.userName }}{{ planObj.planName }}的报告
  208. </p>
  209. <div class="kply">
  210. <div class="kply_inner">
  211. <div style="padding: 20px 40px">
  212. <div>
  213. <div class="report_info_out">
  214. <img
  215. v-show="proDataLin.gender == '1'"
  216. src="../assets/report/man1.png"
  217. />
  218. <img
  219. v-show="proDataLin.gender == '0'"
  220. src="../assets/report/woman1.png"
  221. />
  222. <div class="report_info_user">
  223. <span class="info">姓名:&nbsp;&nbsp;{{ proDataLin.userName }}</span>
  224. <span class="info" v-show="proDataLin.roleType == '2'"
  225. >工号:&nbsp;&nbsp;{{ proDataLin.userNo }}</span
  226. >
  227. <span class="info" v-show="proDataLin.roleType == '1'"
  228. >工号:&nbsp;&nbsp;{{ proDataLin.userNo }}</span
  229. >
  230. <!-- roleType -->
  231. <span class="info">测试用时:&nbsp;&nbsp;{{ useTime }}</span>
  232. <span class="info"
  233. >所属组织:&nbsp;&nbsp;<span style="">{{
  234. orgName
  235. }}</span></span
  236. >
  237. </div>
  238. </div>
  239. <div class="report_totol_score">
  240. <div class="report_bei">
  241. <img height="200px !impotent" src="../assets/report/bei.png" />
  242. <div class="score" v-if="reportData.length > 0">
  243. {{ reportData[0].dimensionScore }}
  244. </div>
  245. </div>
  246. <div class="totol_result_des" v-if="reportData.length > 0">
  247. <div
  248. v-show="
  249. currentFlag == 'SHAPE_RANDOM' ||
  250. currentFlag == 'ETB01' ||
  251. currentFlag == 'FDOT' ||
  252. currentFlag == 'EMOTION_STROOP'
  253. "
  254. class="progress_out"
  255. :style="{
  256. width:
  257. currentFlag == 'SHAPE_RANDOM' ||
  258. currentFlag == 'ETB01' ||
  259. currentFlag == 'FDOT' ||
  260. currentFlag == 'EMOTION_STROOP'
  261. ? '100%'
  262. : '50%',
  263. }"
  264. style="display: flex; align-items: center"
  265. v-for="(item, index) in echarts_name_list"
  266. :key="index"
  267. >
  268. <span
  269. class="progress_out_name"
  270. style="width: 200px; font-size: 16px; font-weight: 700"
  271. >
  272. {{ item.name }}
  273. </span>
  274. <el-progress
  275. :percentage="echarts_data_list[index]"
  276. style="width: 100%"
  277. :stroke-width="18"
  278. :show-text="false"
  279. :color="colorPro"
  280. />
  281. <span class="progress_out_score">
  282. <span
  283. style="color: #ff1e00; font-size: 14px; font-weight: 700"
  284. >{{ echarts_data_list[index] }}</span
  285. ><span style="color: #000000; font-size: 12px; opacity: 0.4"
  286. >/100</span
  287. ></span
  288. >
  289. </div>
  290. 结论:{{ reportData[0].dimensionSymptom }},{{
  291. reportData[0].dimensionImprovement
  292. }}
  293. </div>
  294. </div>
  295. <div
  296. class="out_p"
  297. v-show="
  298. !(
  299. currentFlag == 'SHAPE_RANDOM' ||
  300. currentFlag == 'ETB01' ||
  301. currentFlag == 'FDOT' ||
  302. currentFlag == 'EMOTION_STROOP'
  303. )
  304. "
  305. >
  306. <div
  307. v-show="
  308. !(
  309. currentFlag == 'SHAPE_RANDOM' ||
  310. currentFlag == 'ETB01' ||
  311. currentFlag == 'FDOT' ||
  312. currentFlag == 'EMOTION_STROOP'
  313. )
  314. "
  315. class="echrts_sty"
  316. ref="echarts_ld"
  317. ></div>
  318. <div class="report_echarts_out">
  319. <div
  320. style="
  321. display: flex;
  322. flex-direction: row;
  323. width: 100%;
  324. flex-wrap: wrap;
  325. padding-top: 40px;
  326. padding-bottom: 40px;
  327. "
  328. >
  329. <div
  330. class="progress_out"
  331. :style="{
  332. width: !(
  333. currentFlag == 'SHAPE_RANDOM' ||
  334. currentFlag == 'ETB01' ||
  335. currentFlag == 'FDOT' ||
  336. currentFlag == 'EMOTION_STROOP'
  337. )
  338. ? '100%'
  339. : '50%',
  340. }"
  341. v-for="(item, index) in echarts_name_list"
  342. :key="index"
  343. >
  344. <span class="progress_out_name" style="width: 150px">
  345. {{ item.name }}
  346. </span>
  347. <el-progress
  348. :percentage="echarts_data_list[index]"
  349. style="width: 100%"
  350. :stroke-width="18"
  351. :show-text="false"
  352. :color="colorPro"
  353. />
  354. <span class="progress_out_score"
  355. >{{ echarts_data_list[index]
  356. }}<span style="color: #000000; font-size: 12px; opacity: 0.4"
  357. >/100</span
  358. ></span
  359. >
  360. </div>
  361. </div>
  362. </div>
  363. </div>
  364. <!-- **********************************开始1 -->
  365. <div
  366. v-show="
  367. !(
  368. currentFlag == 'SHAPE_RANDOM' ||
  369. currentFlag == 'ETB01' ||
  370. currentFlag == 'FDOT' ||
  371. currentFlag == 'EMOTION_STROOP'
  372. )
  373. "
  374. v-for="(item, index) in reportDataAll"
  375. :key="index"
  376. style="padding-top: 20px"
  377. >
  378. <div class="des_zhishu">
  379. {{ item.dimensionName }}
  380. </div>
  381. <div class="report_des_out">
  382. <div class="score">
  383. <div class="score_lin">
  384. <img
  385. src="../assets/img/report/score.png"
  386. style="width: 20px; height: 20px"
  387. alt=""
  388. />
  389. <span class="score_tt">分数:</span>
  390. </div>
  391. <span
  392. v-if="
  393. item.dimensionSymptom == '重度' ||
  394. item.dimensionSymptom == '高风险'
  395. "
  396. style="color: red"
  397. >
  398. {{ item.dimensionScore }}</span
  399. >
  400. <span
  401. v-if="
  402. item.dimensionSymptom == '无症状或轻度' ||
  403. item.dimensionSymptom == '无或轻风险'
  404. "
  405. style="color: #00bf78"
  406. >
  407. {{ item.dimensionScore }}</span
  408. >
  409. <span
  410. v-if="
  411. item.dimensionSymptom == '中度' ||
  412. item.dimensionSymptom == '中风险'
  413. "
  414. style="color: #f0a900"
  415. >
  416. {{ item.dimensionScore }}</span
  417. >
  418. <span
  419. style="
  420. font-size: 16px;
  421. color: rgb(153, 153, 153);
  422. letter-spacing: 0px;
  423. "
  424. >&nbsp;&nbsp;(满分100)</span
  425. >
  426. </div>
  427. <div class="score">
  428. <span class="score_tt">
  429. <div class="score_lin">
  430. <img
  431. src="../assets/img/report/result.png"
  432. style="width: 20px; height: 20px"
  433. alt=""
  434. />
  435. <span class="score_tt">结论:</span>
  436. </div>
  437. </span>
  438. <span
  439. v-if="
  440. item.dimensionSymptom == '重度' ||
  441. item.dimensionSymptom == '高风险'
  442. "
  443. style="color: red"
  444. >
  445. {{ item.dimensionSymptom }}</span
  446. >
  447. <span
  448. v-if="
  449. item.dimensionSymptom == '无症状或轻度' ||
  450. item.dimensionSymptom == '无或轻风险'
  451. "
  452. style="color: #00bf78"
  453. >
  454. {{ item.dimensionSymptom }}</span
  455. >
  456. <span
  457. v-if="
  458. item.dimensionSymptom == '中度' ||
  459. item.dimensionSymptom == '中风险'
  460. "
  461. style="color: #f0a900"
  462. >
  463. {{ item.dimensionSymptom }}</span
  464. >
  465. </div>
  466. <div class="scoreAsy">
  467. <span class="scoreAsyTitle">
  468. <div class="score_lin">
  469. <img
  470. src="../assets/img/report/asy.png"
  471. style="width: 20px; height: 20px"
  472. alt=""
  473. />
  474. <span class="score_tt">分析:</span>
  475. </div> </span
  476. ><span class="scoreAsyDes">{{ item.dimensionImprovement }}</span>
  477. </div>
  478. <!-- <div class="des">{{ item.dimensionImprovement }}</div> -->
  479. <div class="scoreAsy">
  480. <span class="scoreAsyTitle">
  481. <div class="score_lin">
  482. <img
  483. src="../assets/img/report/sm.png"
  484. style="width: 20px; height: 20px"
  485. alt=""
  486. />
  487. <span class="score_tt">说明:</span>
  488. </div> </span
  489. ><span class="scoreAsyDes">{{ item.dimensionDesc }}</span>
  490. </div>
  491. <div class="scoreAsy">
  492. <span class="scoreAsyTitle">
  493. <div class="score_lin">
  494. <img
  495. src="../assets/img/report/sug.png"
  496. style="width: 20px; height: 20px"
  497. alt=""
  498. />
  499. <span class="score_tt">建议:</span>
  500. </div> </span
  501. ><span class="scoreAsyDes">{{ item.dimensionSuggestion }}</span>
  502. </div>
  503. </div>
  504. </div>
  505. </div>
  506. </div>
  507. </div>
  508. </div>
  509. </div>
  510. </el-dialog>
  511. </div>
  512. </div>
  513. </template>
  514. <script>
  515. // import { oSessionStorage } from "../../utils/utils";
  516. import { oSessionStorage } from "../utils/utils";
  517. import * as echarts from "echarts";
  518. import md5 from "md5";
  519. export default {
  520. data() {
  521. return {
  522. topicVisible: false,
  523. //接收所属组织结构的词语
  524. orgName: "",
  525. userVisible: false,
  526. //编辑返回的值
  527. userDetailData: {},
  528. //组织架构名字
  529. groupName: "",
  530. disableFlag: false,
  531. phoneFlag: false,
  532. flag: 3,
  533. dialogVisible: false,
  534. //渠道列表
  535. isView: true,
  536. //当前计划ID
  537. planId: "",
  538. userInfo: {},
  539. proDataLin: [],
  540. total: 0,
  541. pageSize: 10,
  542. pageNum: 1,
  543. tableData: [],
  544. userTotal: 0,
  545. userpageSize: 10,
  546. userPageNum: 1,
  547. userTableData: [],
  548. multipleSelection: [],
  549. //获取报告总数据
  550. reportData: [],
  551. //获取不过滤的数据
  552. reportDataAll: [],
  553. echarts_des_list: ["", "", "", "", "", ""],
  554. echarts_data_list: [10, 20, 30, 40, 0, 0],
  555. echarts_name_list: [
  556. { name: "阳光指数", max: 100 },
  557. { name: "情绪稳定指数", max: 100 },
  558. { name: "社交能力", max: 100 },
  559. { name: "自律能力", max: 100 },
  560. { name: "爱情观", max: 100 },
  561. { name: "人生观", max: 100 },
  562. ],
  563. option: {},
  564. echarts_ld: "",
  565. colorPro: "linear-gradient(to right,#FF4E00 ,#ffffff)",
  566. //该用户的需要做的题目的列表
  567. //量表题目的选项
  568. topPicList: [],
  569. //认知任务必选的选项
  570. taskList: [],
  571. //认知任务可选的选项
  572. taskOptionalList: [],
  573. radio1: "",
  574. currentFlag: "",
  575. useTime: "",
  576. //当前用户选择的测试
  577. planObj: "",
  578. };
  579. },
  580. mounted() {
  581. this.echarts_ld = this.$refs.echarts_ld;
  582. this.userInfo = JSON.parse(oSessionStorage.getItem("userInfo"));
  583. },
  584. methods: {
  585. isRadioFun(val) {},
  586. forMatCom(val) {
  587. if (val.isComplete == "0") {
  588. return "未完成";
  589. } else {
  590. return "已完成";
  591. }
  592. },
  593. //查询报告 //根据planId 和用户编号
  594. queryRport(val) {
  595. //打印计划信息
  596. //调用接口--根据计划ID查询计划中题目需要显示的个数及名称
  597. let url = `/planContent/findAllByPlanId?planId=${val.id}&userNo=${val.userNo}`;
  598. this.$http.get(url, {}, (res) => {
  599. //查询题目列表
  600. let list = [];
  601. list = res.data;
  602. //过滤一下list
  603. // 量表过滤
  604. this.topPicList = list.filter((item) => {
  605. return (
  606. item.isDisplayed == "1" &&
  607. item.contentType == "0" &&
  608. item.flag != "20210617140713"
  609. );
  610. });
  611. //比作的认知任务
  612. this.taskList = list.filter((item) => {
  613. return (
  614. item.isDisplayed == "1" && item.contentType == "1" && item.isRequired == "1"
  615. );
  616. });
  617. //选做的认知任务
  618. this.taskOptionalList = list.filter((item) => {
  619. return (
  620. item.isDisplayed == "1" && item.contentType == "1" && item.isRequired == "0"
  621. );
  622. });
  623. // topPicList: [],
  624. // //认知任务必选的选项
  625. // taskList:[],
  626. // //认知任务可选的选项
  627. // taskOptionalList:[],
  628. });
  629. //出现选择了几个题目//需要显示--需要出现个弹出框进行选择
  630. this.topicVisible = true;
  631. },
  632. radioClickNew(val) {
  633. this.planObj = val;
  634. if (this.userInfo.roleType != "5") {
  635. if (val.enable == "0") {
  636. this.$message({
  637. type: "error",
  638. message: "暂未授权",
  639. });
  640. return;
  641. }
  642. }
  643. this.topicVisible = true;
  644. this.queryRport(val);
  645. },
  646. radioClick(val) {
  647. // this.planObj = planObj;
  648. // if (this.userInfo.roleType != "5") {
  649. // this.$message({
  650. // type: "error",
  651. // message: "暂未授权",
  652. // });
  653. // return;
  654. // }
  655. //在数组中招待
  656. let params = {
  657. planId: val.planId,
  658. userNo: this.proDataLin.userNo,
  659. flag: val.flag,
  660. };
  661. this.currentFlag = val.flag;
  662. this.userVisible = true;
  663. this.reportDetail(params);
  664. },
  665. reportDetail(params) {
  666. let url = `/userRecordScore/findByFlagAndUserNo?planId=${params.planId}&userNo=${params.userNo}&flag=${params.flag}`;
  667. this.$http.get(url, {}, (res) => {
  668. if (res.code == 200) {
  669. debugger;
  670. // this.reportData = res.data;
  671. let listTmp1 = [];
  672. listTmp1 = res.data.dimensionScore.filter((item) => {
  673. return item.dimensionName != "总分";
  674. });
  675. let listTmp2 = [];
  676. listTmp2 = listTmp1.filter((item) => {
  677. return (
  678. item.dimensionName == "压力" ||
  679. item.dimensionName == "焦虑" ||
  680. item.dimensionName == "抑郁"
  681. );
  682. });
  683. let listTmp3 = [];
  684. listTmp3 = listTmp1.filter((item) => {
  685. return !(
  686. item.dimensionName == "压力" ||
  687. item.dimensionName == "焦虑" ||
  688. item.dimensionName == "抑郁"
  689. );
  690. });
  691. this.reportDataAll = listTmp2.concat(listTmp3);
  692. //将数组中的压力---抑郁---焦虑 取出来
  693. //然后将数组中的不是焦虑--抑郁 --压力的 取出来 --进行排序
  694. // this.reportDataAll = res.data.dimensionScore.filter((item) => {
  695. // return item.dimensionName != "总分";
  696. // });
  697. //将三个维度提前
  698. this.useTime = res.data.usedTime;
  699. this.orgName = res.data.dimensionScore[0].orgName;
  700. this.reportData = res.data.dimensionScore;
  701. // let a =[res.data[0].]
  702. //修改文本
  703. let scoreList = [];
  704. let scoreDes = [];
  705. let nameList = [];
  706. for (let i = 0; i < this.reportData.length; i++) {
  707. //
  708. if (this.reportData[i].dimensionName != "总分") {
  709. scoreList.push(parseInt(this.reportData[i].dimensionScore));
  710. scoreDes.push(this.reportData[i].dimensionImprovement);
  711. let ob = { name: this.reportData[i].dimensionName, max: 100 };
  712. nameList.push(ob);
  713. }
  714. }
  715. this.echarts_des_list = scoreDes;
  716. this.echarts_data_list = scoreList;
  717. this.echarts_name_list = nameList;
  718. if (
  719. !(
  720. this.currentFlag == "SHAPE_RANDOM" ||
  721. this.currentFlag == "ETB01" ||
  722. this.currentFlag == "FDOT" ||
  723. this.currentFlag == "EMOTION_STROOP"
  724. )
  725. ) {
  726. const myChart = echarts.init(this.echarts_ld);
  727. // this.option.series[0].data[0] = a;
  728. this.option.series[0].data[0].value = this.echarts_data_list;
  729. this.option.radar.indicator = this.echarts_name_list; //name
  730. //当是认知任务时---不执行
  731. myChart.setOption(this.option);
  732. }
  733. } else {
  734. ElMessage({
  735. message: res.msg,
  736. type: "error",
  737. });
  738. }
  739. });
  740. },
  741. deleteUser(val) {
  742. let data = [val.id];
  743. //调用接口开始添加
  744. let url = `/planUser/deletePlanUsers`;
  745. this.$http.post(url, data, (res) => {
  746. if (res && res.code == 200) {
  747. this.searchTarget();
  748. this.tableData = res.data.content;
  749. this.total = res.data.totalElements;
  750. } else {
  751. // this.$toast.fail(res.msg);
  752. this.$message.error(res.msg);
  753. }
  754. });
  755. },
  756. addUser() {
  757. this.userVisible = true;
  758. //调用待添加的用户
  759. this.userSearchTarget();
  760. },
  761. isComUser(val, row) {
  762. //添加已选用户
  763. let data = [];
  764. if (val == 1) {
  765. for (let i = 0; i < this.multipleSelection.length; i++) {
  766. //
  767. let obj = {
  768. orgName: this.multipleSelection[i].orgName,
  769. orgNo: this.multipleSelection[i].orgNo,
  770. planId: this.proDataLin.id,
  771. userName: this.multipleSelection[i].userName,
  772. userNo: this.multipleSelection[i].userNo,
  773. };
  774. data.push(obj);
  775. }
  776. } else {
  777. let obj = {
  778. orgName: row.orgName,
  779. orgNo: row.orgNo,
  780. planId: this.proDataLin.id,
  781. userName: row.userName,
  782. userNo: row.userNo,
  783. };
  784. data.push(obj);
  785. }
  786. //调用接口开始添加
  787. let url = `/planUser/savePlanUsers`;
  788. this.$http.post(url, data, (res) => {
  789. if (res && res.code == 200) {
  790. this.searchTarget();
  791. this.userSearchTarget();
  792. this.tableData = res.data.content;
  793. this.total = res.data.totalElements;
  794. } else {
  795. // this.$toast.fail(res.msg);
  796. this.$message.error(res.msg);
  797. }
  798. });
  799. },
  800. searchTarget() {
  801. this.pageNum = 1;
  802. this.searchList();
  803. },
  804. userSearchTarget() {
  805. this.userPageNum = 1;
  806. this.userSearchList();
  807. },
  808. //进来调用已选列表接口
  809. searchList() {
  810. let url = `/plan/findAllByUserNo?pageSize=${this.pageSize}&pageNum=${this.pageNum}&userNo=${this.proDataLin.userNo}`;
  811. this.$http.get(url, {}, (res) => {
  812. if (res && res.code == 200) {
  813. this.tableData = res.data.content;
  814. this.total = res.data.totalElements;
  815. } else {
  816. // this.$toast.fail(res.msg);
  817. this.$message.error(res.msg);
  818. }
  819. });
  820. },
  821. userSearchList() {
  822. let url = `/plan/planAddUser?pageSize=${this.userpageSize}&pageNum=${this.userPageNum}&planId=${this.proDataLin.id}&orgNo=${this.proDataLin.planOrgNo}`;
  823. this.$http.get(url, {}, (res) => {
  824. if (res && res.code == 200) {
  825. this.userTableData = res.data.content;
  826. this.userTotalotal = res.data.totalElements;
  827. } else {
  828. // this.$toast.fail(res.msg);
  829. this.$message.error(res.msg);
  830. }
  831. });
  832. },
  833. //每页多少条
  834. handleSizeChange(val) {
  835. //将首页重置为1时---且总条数变化
  836. //设置为当前总条数
  837. },
  838. handleCurrentChange(val) {
  839. this.pageNum = val;
  840. this.searchList();
  841. },
  842. //已选选项
  843. handleSelectionChange(val) {
  844. this.multipleSelection = val;
  845. },
  846. resetForm(val) {
  847. this.cancle();
  848. },
  849. formatterTime(val) {
  850. let date = new Date(val);
  851. let year = date.getFullYear();
  852. let month = date.getMonth() + 1;
  853. month = this.formatterMon(month);
  854. let day = date.getDate();
  855. day = this.formatterMon(day);
  856. return year + "-" + month + "-" + day;
  857. },
  858. formatterMon(val) {
  859. if (val < 10) {
  860. return "0" + val;
  861. } else {
  862. return val;
  863. }
  864. },
  865. open(val) {
  866. this.proDataLin = val;
  867. this.dialogVisible = true;
  868. //查询用户下边的计划
  869. //获取渠道信息
  870. // this.option.radar.indicator=[] //name
  871. this.option = {
  872. title: {
  873. // text: 'Basic Radar Chart'
  874. },
  875. legend: {
  876. // data: ['Allocated Budget', 'Actual Spending']
  877. },
  878. radar: {
  879. shape: "square", //设置雷达图形状,值有circle、square,默认为方形
  880. splitNumber: 3, // 雷达图圈数设置
  881. // shape: 'circle',
  882. indicator: this.echarts_name_list,
  883. name: {
  884. //修改indicator文字的颜色
  885. textStyle: {
  886. // color: "#999999",
  887. },
  888. },
  889. },
  890. series: [
  891. {
  892. type: "radar",
  893. symbolSize: 6,
  894. data: [
  895. {
  896. value: this.echarts_data_list,
  897. lineStyle: {
  898. normal: {
  899. color: "#FF1E00",
  900. },
  901. },
  902. //折线拐点颜色
  903. itemStyle: {
  904. normal: {
  905. color: "#FF1E00",
  906. borderWidth: 3, //拐点边框大小
  907. },
  908. // emphasis: {
  909. // color: '#000000'//hover拐点颜色定义
  910. // }
  911. },
  912. // name: 'Actual Spending'
  913. areaStyle: {
  914. //阴影区域背景
  915. // color: 'rgba(255, 228, 52, 0.6)'
  916. color: "#F8B4AB",
  917. },
  918. },
  919. ],
  920. },
  921. ],
  922. };
  923. this.searchTarget();
  924. },
  925. edit(val) {
  926. this.dialogVisible = true;
  927. this.isView = false;
  928. this.userDetailData = val;
  929. //调用查询详情的接口
  930. },
  931. //调用查询详情的接口
  932. disableFlagStatus() {
  933. setTimeout(() => {
  934. this.disableFlag = false;
  935. }, 1500);
  936. },
  937. register() {
  938. let that = this;
  939. this.$http.post(`/plan/addOrUpdate`, {}, (res) => {
  940. this.disableFlagStatus();
  941. // this.disableFlag = false;
  942. if (res && res.code == 200) {
  943. this.dialogVisible = false;
  944. // this.$toast.success({ message: "成功" });
  945. //调用父组件的查询方法
  946. that.$emit("search");
  947. } else {
  948. // this.$toast.fail({ message: res.msg });
  949. this.$message.error(res.msg);
  950. }
  951. //清空缓存
  952. this.cancle();
  953. });
  954. },
  955. },
  956. };
  957. </script>
  958. <style scoped>
  959. .progress_cla >>> .el-progress-bar__inner {
  960. background-color: #00bf78;
  961. }
  962. </style>
  963. <style>
  964. input[aria-hidden="true"] {
  965. display: none !important;
  966. }
  967. .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
  968. box-shadow: none;
  969. }
  970. .el-dialog {
  971. border-radius: 20px !important;
  972. /* background-color: #f7f7f7 !important; */
  973. }
  974. </style>
  975. <style lang="less" scoped>
  976. // .out /deep/.el-dialog {
  977. // border-radius: 20px !important;
  978. // // background-color: #f7f7f7 !important;
  979. // }
  980. // .out/deep/ .el-dialog__header {
  981. // padding: 0px 0px 0px !important;
  982. // }
  983. .progress_out/deep/ .el-progress-bar__inner {
  984. background-image: linear-gradient(to right, #ff4e00, #ffffff);
  985. }
  986. .dig_update /deep/.el-cascader {
  987. position: relative;
  988. font-size: 14px;
  989. line-height: 40px;
  990. width: 100%;
  991. }
  992. // .dig_update /deep/.el-dialog {
  993. // border-radius: 20px !important;
  994. // box-shadow: none !important;
  995. // background: transparent !important;
  996. // }
  997. .demo-ruleForm /deep/ .el-form-item {
  998. // margin-right: 10px;
  999. vertical-align: top;
  1000. display: flex !important;
  1001. flex-direction: column;
  1002. }
  1003. .demo-ruleForm /deep/.el-form-item__label {
  1004. text-align: left;
  1005. vertical-align: middle;
  1006. float: left;
  1007. font-size: 14px;
  1008. color: #606266;
  1009. line-height: 40px;
  1010. padding: 0 12px 0 0;
  1011. -webkit-box-sizing: border-box;
  1012. box-sizing: border-box;
  1013. }
  1014. .demo-ruleForm /deep/.el-input {
  1015. width: 100% !important;
  1016. }
  1017. .demo-ruleForm /deep/.el-input__inner {
  1018. width: 100% !important;
  1019. background-color: #f7f7f7;
  1020. border: 0px;
  1021. }
  1022. .dig_button {
  1023. display: flex;
  1024. width: 100%;
  1025. justify-content: space-around;
  1026. }
  1027. .demo-ruleForm {
  1028. background-color: #ffffff;
  1029. // border-radius: 20px;
  1030. // margin-right: -10px;
  1031. margin-top: -10px;
  1032. padding-right: 100px;
  1033. padding-left: 100px;
  1034. border-radius: 20px;
  1035. padding-top: 20px;
  1036. padding-bottom: 40px;
  1037. .dig_title {
  1038. font-size: 20px;
  1039. margin-bottom: 30px;
  1040. text-align: center;
  1041. font-weight: 700;
  1042. }
  1043. }
  1044. .kply {
  1045. width: 100%;
  1046. margin-top: 20px;
  1047. // background-color: #FAFAFA;
  1048. .kply_inner {
  1049. // padding: 20px 20px;
  1050. left: 0;
  1051. right: 0;
  1052. margin: auto;
  1053. width: 1200px;
  1054. min-height: 500px;
  1055. background-color: #ffffff;
  1056. border-radius: 40px;
  1057. .report_totol_score {
  1058. margin-top: 20px;
  1059. display: flex;
  1060. flex-direction: row;
  1061. // justify-content: space-between;
  1062. align-items: center;
  1063. .report_bei {
  1064. position: relative;
  1065. img {
  1066. height: 150px !important;
  1067. width: 210px !important;
  1068. }
  1069. // background-color: #111111;
  1070. .score {
  1071. width: 100%;
  1072. height: 40px;
  1073. text-align: center;
  1074. position: absolute;
  1075. left: 0;
  1076. right: 0;
  1077. top: -20px;
  1078. bottom: 0;
  1079. margin: auto;
  1080. color: #ffffff;
  1081. font-size: 30px;
  1082. }
  1083. }
  1084. .totol_result_des {
  1085. font-size: 18px;
  1086. margin-left: 30px;
  1087. letter-spacing: 3px;
  1088. line-height: 30px;
  1089. }
  1090. }
  1091. .des_zhishu {
  1092. color: #222222;
  1093. font-size: 20px;
  1094. background-color: #00bf78;
  1095. letter-spacing: 3px;
  1096. color: #ffffff;
  1097. display: inline-flex;
  1098. border-radius: 26px;
  1099. padding: 5px 20px;
  1100. }
  1101. .report_des_out {
  1102. margin-top: 10px;
  1103. // background-color: #f7f7f7;
  1104. border: 4px solid #f2f2f2;
  1105. padding: 20px 40px;
  1106. border-radius: 40px;
  1107. .score {
  1108. // color: #48d68e;
  1109. font-size: 16px;
  1110. line-height: 30px;
  1111. letter-spacing: 2px;
  1112. margin-bottom: 20px;
  1113. display: flex;
  1114. .score_lin {
  1115. display: flex;
  1116. align-items: center;
  1117. .score_tt {
  1118. font-weight: 700;
  1119. margin-left: 5px;
  1120. }
  1121. }
  1122. }
  1123. .des {
  1124. color: #000000;
  1125. font-size: 18px;
  1126. line-height: 28px;
  1127. letter-spacing: 3px;
  1128. }
  1129. .scoreAsy {
  1130. display: flex;
  1131. flex-direction: row;
  1132. margin-bottom: 20px;
  1133. .scoreAsyTitle {
  1134. // color: #48d68e;
  1135. font-size: 16px;
  1136. line-height: 30px;
  1137. letter-spacing: 2px;
  1138. .score_lin {
  1139. display: flex;
  1140. align-items: center;
  1141. .score_tt {
  1142. font-weight: 700;
  1143. margin-left: 5px;
  1144. }
  1145. }
  1146. }
  1147. .scoreAsyDes {
  1148. flex: 1;
  1149. font-size: 16px;
  1150. line-height: 30px;
  1151. letter-spacing: 2px;
  1152. color: #555555;
  1153. }
  1154. }
  1155. }
  1156. .start_button_out {
  1157. margin-top: 100px;
  1158. margin-bottom: 40px;
  1159. display: flex;
  1160. flex-direction: row;
  1161. justify-content: center;
  1162. .start_button_self {
  1163. cursor: pointer;
  1164. // width: 100px;
  1165. border-radius: 12px;
  1166. border: 3px solid #48d68e;
  1167. color: #ffffff;
  1168. background-color: #000000;
  1169. margin-right: 20px;
  1170. padding: 8px 60px;
  1171. cursor: pointer;
  1172. display: flex;
  1173. align-items: center;
  1174. }
  1175. }
  1176. }
  1177. }
  1178. .report_info_out {
  1179. background-color: #f8f8f8;
  1180. border-radius: 40px;
  1181. padding-top: 40px;
  1182. padding-left: 40px;
  1183. padding-bottom: 40px;
  1184. display: flex;
  1185. align-items: center;
  1186. img {
  1187. width: 100px !important;
  1188. height: 100px !important;
  1189. }
  1190. .report_info_user {
  1191. display: flex;
  1192. flex-direction: column;
  1193. margin-left: 20px;
  1194. justify-content: space-around;
  1195. color: #000000;
  1196. font-size: 20px;
  1197. .info {
  1198. margin-bottom: 10px;
  1199. font-size: 18px;
  1200. color: #333333;
  1201. }
  1202. // font-weight: 700;
  1203. }
  1204. }
  1205. .detail_button_out {
  1206. flex: 1;
  1207. display: flex;
  1208. justify-content: space-around;
  1209. .detail_button {
  1210. display: flex;
  1211. align-items: center;
  1212. cursor: pointer;
  1213. letter-spacing: 2px;
  1214. img {
  1215. width: 15px;
  1216. margin-right: 5px;
  1217. }
  1218. span {
  1219. color: #00bf78;
  1220. // font-weight: 600;
  1221. }
  1222. }
  1223. }
  1224. .out_p {
  1225. display: flex;
  1226. flex: 1;
  1227. width: 100%;
  1228. align-items: center;
  1229. .echrts_sty {
  1230. flex: 6;
  1231. height: 400px;
  1232. }
  1233. .report_echarts_out {
  1234. flex: 4;
  1235. // margin-top: 100px;
  1236. // background-color: #f7f7f7;
  1237. border-radius: 40px;
  1238. display: flex;
  1239. flex-direction: row;
  1240. // justify-content: space-between;
  1241. // height: 200px;
  1242. .progress_out {
  1243. margin-bottom: 40px;
  1244. width: 100%;
  1245. display: flex;
  1246. justify-content: start;
  1247. flex-direction: row;
  1248. // align-items: center;
  1249. // padding-right: 40px;
  1250. .progress_out_name {
  1251. color: #000000;
  1252. font-weight: 600;
  1253. padding-left: 20px;
  1254. }
  1255. .progress_out_score {
  1256. color: #ff1e00;
  1257. font-weight: 600;
  1258. margin-right: 5px;
  1259. margin-left: 15px;
  1260. }
  1261. }
  1262. }
  1263. }
  1264. </style>