ComparePlanUser.vue 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257
  1. <template>
  2. <div class="out">
  3. <el-dialog
  4. :visible.sync="dialogVisible"
  5. :close-on-click-modal="false"
  6. width="80%"
  7. style="border-radius: 40px"
  8. >
  9. <div slot="title">
  10. <p
  11. style="
  12. text-align: center;
  13. margin-bottom: 20px;
  14. font-size: 20px;
  15. font-weight: 700;
  16. "
  17. >
  18. {{ userInfo.planName }}的用户列表
  19. </p>
  20. <div class="table-content">
  21. <el-table
  22. :data="tableData"
  23. :row-style="{ height: '0px' }"
  24. :cell-style="{ padding: '5px' }"
  25. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  26. @selection-change="handleSelectionChange"
  27. >
  28. <el-table-column type="selection" width="55"> </el-table-column>
  29. <el-table-column
  30. show-overflow-tooltip
  31. prop="userName"
  32. label="用户姓名"
  33. align="center"
  34. width=""
  35. >
  36. </el-table-column>
  37. <el-table-column prop="userNo" label="工号" align="center" width="">
  38. </el-table-column>
  39. <el-table-column
  40. prop="isComplete"
  41. label="完成状态"
  42. :formatter="formaCom"
  43. align="center"
  44. width=""
  45. >
  46. <template slot-scope="scope">
  47. <div
  48. style="display: flex; justify-content: center; align-items: center"
  49. v-if="scope.row.isComplete == '1'"
  50. >
  51. <img
  52. style="width: 16px"
  53. src="../assets/img/home/isCom.png"
  54. alt=""
  55. />&nbsp;&nbsp;
  56. <div style="color: #00955e">已完成</div>
  57. </div>
  58. <div
  59. style="display: flex; justify-content: center; align-items: center"
  60. v-if="scope.row.isComplete == '0'"
  61. >
  62. <img
  63. style="width: 16px"
  64. src="../assets/img/home/isNo.png"
  65. alt=""
  66. />&nbsp;&nbsp;
  67. <div style="color: #d52121">未完成</div>
  68. </div>
  69. </template>
  70. </el-table-column>
  71. </el-table>
  72. </div>
  73. <el-pagination
  74. class="pag_class"
  75. background
  76. @size-change="handleSizeChange"
  77. @current-change="handleCurrentChange"
  78. :current-page.sync="pageNum"
  79. layout="total, sizes, prev, pager, next"
  80. :page-size="pageSize"
  81. :page-sizes="[10, 20, 50, 100]"
  82. :total="total"
  83. >
  84. </el-pagination>
  85. <p style="text-align: center; margin-top: 20px">
  86. <el-button type="success" round class="add_class" @click="isCompare"
  87. >对比</el-button
  88. >
  89. </p>
  90. </div>
  91. </el-dialog>
  92. <div>
  93. <el-dialog
  94. :visible.sync="compareVisible"
  95. :close-on-click-modal="false"
  96. width="82%"
  97. style="border-radius: 40px"
  98. >
  99. <!-- <span v-if="userData1.length > 0&&userData2.length > 0">({{multipleSelection[0].userName }}vs{{multipleSelection[1].userName}})</span> -->
  100. <div slot="title">
  101. <p
  102. style="
  103. text-align: center;
  104. margin-bottom: 20px;
  105. font-size: 20px;
  106. font-weight: 700;
  107. "
  108. >
  109. 同一计划不同用户对比
  110. </p>
  111. <div class="compare_plan">
  112. <div class="compare_plan_out1">
  113. <span class="compare_plan_name" v-if="userData1.length > 0"
  114. >计划名称:{{ userData1[0].planName }}</span
  115. >
  116. <span class="compare_plan_time" v-if="multipleSelection[0]"
  117. >结束时间:{{ planEndTime }}</span
  118. >
  119. </div>
  120. <div class="compare_plan_out2">
  121. <span class="compare_plan_name" v-if="userData2.length > 0"
  122. >计划名称:{{ userData2[0].planName }}</span
  123. >
  124. <span class="compare_plan_time" v-if="multipleSelection[1]"
  125. >结束时间:{{ planEndTime }}</span
  126. >
  127. </div>
  128. </div>
  129. <div class="compare_class">
  130. <div class="compare_user1" style="position: relative">
  131. <div class="compare_user1_out">
  132. <img v-show="userGender1 == '1'" src="../assets/report/man1.png" />
  133. <img v-show="userGender1 == '0'" src="../assets/report/woman1.png" />
  134. <div class="compare_user1_info">
  135. <div v-if="multipleSelection.length == 2">
  136. 姓名:{{ multipleSelection[0].userName }}
  137. </div>
  138. <div v-if="multipleSelection.length == 2">
  139. 工号:{{ multipleSelection[0].userNo }}
  140. </div>
  141. <div v-if="multipleSelection.length == 2">测试用时:{{ useTime1 }}</div>
  142. </div>
  143. </div>
  144. <div class="compare_group">所属组织</div>
  145. <div class="compare_group_detail">
  146. {{ orgName1 }}
  147. </div>
  148. <img class="img_vs" src="../assets/img/report/vs.png" />
  149. </div>
  150. <div class="compare_user2">
  151. <div class="compare_user1_out">
  152. <img v-show="userGender2 == '1'" src="../assets/report/man1.png" />
  153. <img v-show="userGender2 == '0'" src="../assets/report/woman1.png" />
  154. <div class="compare_user1_info">
  155. <div v-if="multipleSelection.length == 2">
  156. 姓名:{{ multipleSelection[1].userName }}
  157. </div>
  158. <div v-if="multipleSelection.length == 2">
  159. 工号:{{ multipleSelection[1].userNo }}
  160. </div>
  161. <div v-if="multipleSelection.length == 2">测试用时:{{ useTime2 }}</div>
  162. </div>
  163. </div>
  164. <div class="compare_group">所属组织</div>
  165. <div class="compare_group_detail">
  166. {{ orgName2 }}
  167. </div>
  168. </div>
  169. </div>
  170. <div class="compare_score">
  171. <div class="compare_score_inner">
  172. <div class="compare_score_left" v-if="userData1.length > 0">
  173. 总分:{{ userData1[0].dimensionScore }}
  174. </div>
  175. <div class="compare_result" v-if="userData1.length > 0">
  176. 结论:{{ userData1[0].dimensionSymptom }}、{{
  177. userData1[0].dimensionImprovement
  178. }}
  179. </div>
  180. </div>
  181. <div class="compare_score_inner">
  182. <div class="compare_score_right" v-if="userData2.length > 0">
  183. 总分:{{ userData2[0].dimensionScore }}
  184. </div>
  185. <div class="compare_result" v-if="userData2.length > 0">
  186. 结论:{{ userData2[0].dimensionSymptom }}、{{
  187. userData2[0].dimensionImprovement
  188. }}
  189. </div>
  190. </div>
  191. </div>
  192. <div
  193. ref="echarts_ld"
  194. style="width: 100%; height: 600px; margin-top: 20px"
  195. ></div>
  196. <div
  197. style="
  198. text-align: center;
  199. font-weight: 700;
  200. font-size: 16px;
  201. margin-bottom: 5px;
  202. "
  203. >
  204. 柱状图维度对比
  205. </div>
  206. <div ref="echarts_zhu" style="width: 100%; height: 600px"></div>
  207. <div class="cpmpare_all" v-if="userData1.length > 0 && userData2.length > 0">
  208. <div v-for="(item, index) in userData1" :key="item.id">
  209. <div v-show="item.dimensionName != '总分'" style="margin-bottom: 40px">
  210. <div class="dimensionality_out" style="margin-bottom: 20px">
  211. <div class="left">
  212. <img
  213. style="width: 22px; height: 22px; margin-right: 10px"
  214. src="../assets/img/report/wd_left.png"
  215. alt=""
  216. />
  217. <div
  218. style="
  219. background-color: #dcebff;
  220. flex: 1;
  221. line-height: 30px;
  222. display: flex;
  223. "
  224. >
  225. <span class="totol_all" style="letter-spacing: 3px">维度:</span>
  226. <span style="display: flex">{{
  227. userData1[index].dimensionName
  228. }}</span>
  229. </div>
  230. </div>
  231. <div class="right">
  232. <img
  233. style="width: 22px; height: 22px; margin-right: 10px"
  234. src="../assets/img/report/wd_right.png"
  235. alt=""
  236. />
  237. <div
  238. style="
  239. background-color: #ffdfdb;
  240. flex: 1;
  241. line-height: 30px;
  242. display: flex;
  243. "
  244. >
  245. <span class="totol_all" style="letter-spacing: 3px">维度:</span>
  246. <span> {{ userData2[index].dimensionName }}</span>
  247. </div>
  248. </div>
  249. </div>
  250. <div class="allScore_out" style="margin-bottom: 20px">
  251. <div class="left">
  252. <img
  253. style="width: 22px; height: 22px; margin-right: 10px"
  254. src="../assets/img/report/zf_left.png"
  255. alt=""
  256. />
  257. <span class="totol_all">总分:</span>
  258. <span
  259. :style="{
  260. color:
  261. parseFloat(userData1[index].dimensionScore) <
  262. parseFloat(userData2[index].dimensionScore)
  263. ? 'red'
  264. : '',
  265. }"
  266. >{{ userData1[index].dimensionScore }}</span
  267. >
  268. </div>
  269. <div class="right">
  270. <!-- {{userData1[index].dimensionScore>userData2[index].dimensionScore}} -->
  271. <img
  272. style="width: 22px; height: 22px; margin-right: 10px"
  273. src="../assets/img/report/zf_right.png"
  274. alt=""
  275. />
  276. <span class="totol_all">总分:</span
  277. ><span
  278. :style="{
  279. color:
  280. parseFloat(userData1[index].dimensionScore) >
  281. parseFloat(userData2[index].dimensionScore)
  282. ? 'red'
  283. : '',
  284. }"
  285. >{{ userData2[index].dimensionScore }}</span
  286. >
  287. </div>
  288. </div>
  289. <div class="allScore_out" style="margin-bottom: 20px">
  290. <div class="left">
  291. <img
  292. style="width: 22px; height: 22px; margin-right: 10px"
  293. src="../assets/img/report/jl_left.png"
  294. alt=""
  295. />
  296. <span class="totol_all">结论:</span
  297. ><span
  298. :style="{
  299. color:
  300. parseFloat(userData1[index].dimensionScore) <
  301. parseFloat(userData2[index].dimensionScore)
  302. ? 'red'
  303. : '',
  304. }"
  305. >{{ userData1[index].dimensionSymptom }}</span
  306. >
  307. </div>
  308. <div class="right">
  309. <img
  310. style="width: 22px; height: 22px; margin-right: 10px"
  311. src="../assets/img/report/jl_right.png"
  312. alt=""
  313. />
  314. <span class="totol_all">结论:</span
  315. ><span
  316. :style="{
  317. color:
  318. parseFloat(userData1[index].dimensionScore) >
  319. parseFloat(userData2[index].dimensionScore)
  320. ? 'red'
  321. : '',
  322. }"
  323. >{{ userData2[index].dimensionSymptom }}</span
  324. >
  325. </div>
  326. </div>
  327. <div class="allScore_out" style="margin-bottom: 20px">
  328. <div
  329. class="left"
  330. style="align-items: flex-start; justify-content: start"
  331. >
  332. <div style="display: flex">
  333. <img
  334. style="width: 22px; height: 22px; margin-right: 10px"
  335. src="../assets/img/report/sm_left.png"
  336. alt=""
  337. />
  338. <span class="totol_all" style="width: 60px">说明:</span>
  339. </div>
  340. <span
  341. :style="{
  342. color:
  343. parseFloat(userData1[index].dimensionScore) <
  344. parseFloat(userData2[index].dimensionScore)
  345. ? 'red'
  346. : '',
  347. }"
  348. >{{ userData1[index].dimensionDesc }}</span
  349. >
  350. </div>
  351. <div
  352. class="right"
  353. style="align-items: flex-start; justify-content: start"
  354. >
  355. <div style="display: flex">
  356. <img
  357. style="width: 22px; height: 22px; margin-right: 10px"
  358. src="../assets/img/report/sm_right.png"
  359. alt=""
  360. />
  361. <span class="totol_all" style="width: 60px">说明:</span>
  362. </div>
  363. <span
  364. :style="{
  365. color:
  366. parseFloat(userData1[index].dimensionScore) >
  367. parseFloat(userData2[index].dimensionScore)
  368. ? 'red'
  369. : '',
  370. }"
  371. >{{ userData2[index].dimensionDesc }}</span
  372. >
  373. </div>
  374. </div>
  375. <div class="allScore_out">
  376. <div
  377. class="left"
  378. style="align-items: flex-start; justify-content: start"
  379. >
  380. <div style="display: flex">
  381. <img
  382. style="width: 22px; height: 22px; margin-right: 10px"
  383. src="../assets/img/report/jy_left.png"
  384. alt=""
  385. />
  386. <span class="totol_all" style="width: 60px">建议:</span>
  387. </div>
  388. {{ userData1[index].dimensionSuggestion }}
  389. </div>
  390. <div
  391. class="right"
  392. style="align-items: flex-start; justify-content: start"
  393. >
  394. <div style="display: flex">
  395. <img
  396. style="width: 22px; height: 22px; margin-right: 10px"
  397. src="../assets/img/report/jy_right.png"
  398. alt=""
  399. />
  400. <span class="totol_all" style="width: 60px">建议:</span>
  401. </div>
  402. {{ userData2[index].dimensionSuggestion }}
  403. </div>
  404. </div>
  405. </div>
  406. </div>
  407. </div>
  408. </div>
  409. </el-dialog>
  410. </div>
  411. </div>
  412. </template>
  413. <script>
  414. //引入echarts组件
  415. import * as echarts from "echarts";
  416. export default {
  417. data() {
  418. return {
  419. userInfo: {},
  420. dialogVisible: false,
  421. compareVisible: false,
  422. total: 0,
  423. pageSize: 10,
  424. pageNum: 1,
  425. tableData: [],
  426. //选中的数组
  427. multipleSelection: [],
  428. echarts_ld: "",
  429. echarts_zhu: "",
  430. option_w: {},
  431. option_z: {},
  432. optionTT: {},
  433. userData1: {},
  434. userGender1: "1",
  435. userGender2: "1",
  436. orgName1: "",
  437. orgName2: "",
  438. //用户1的测试用时
  439. useTime1: "",
  440. //用户2的测试用时
  441. useTime2: "",
  442. echarts_des_list1: [],
  443. echarts_data_list1: [],
  444. echarts_name_list1: [],
  445. echarts_zhuname_list: [],
  446. userData2: {},
  447. echarts_des_list2: [],
  448. echarts_data_list2: [],
  449. echarts_name_list2: [],
  450. planEndTime: "",
  451. };
  452. },
  453. mounted() {
  454. this.echarts_ld = this.$refs.echarts_ld;
  455. this.echarts_zhu = this.$refs.echarts_zhu;
  456. this.option_w = {
  457. title: {
  458. text: "雷达图维度对比",
  459. left: "center",
  460. textStyle: {
  461. fontSize: 16,
  462. },
  463. },
  464. legend: {
  465. // data: ['Allocated Budget', 'Actual Spending']
  466. },
  467. radar: {
  468. // shape: "square", //设置雷达图形状,值有circle、square,默认为方形
  469. // splitNumber: 3, // 雷达图圈数设置
  470. // shape: 'circle',
  471. indicator: this.echarts_name_list1,
  472. name: {
  473. //修改indicator文字的颜色
  474. textStyle: {
  475. // color: "#999999",
  476. },
  477. },
  478. // 设置雷达图中间射线的颜色
  479. splitArea: {
  480. //设置图表颜色,show的值为true
  481. show: true,
  482. // areaStyle: {
  483. // // color:"#c1ddf8", //一般设置方式
  484. // //设置渐变背景色 new echarts.graphic.LinearGradient(a,b,c,d,arr)
  485. // //a ,b,c,d值可为0,1 a:1表示arr中的颜色右到左;c:1 arr中的颜色左到右
  486. // //b:1表示arr中的颜色下到上;d:1表示arr中的颜色上到下
  487. // color: new echarts.graphic.LinearGradient(
  488. // 0,
  489. // 0,
  490. // 0,
  491. // 0,
  492. // [
  493. // { offset: 1, color: "#F7E1DE" }, // 0% 处的颜色
  494. // { offset: 0, color: "#FF1E00" }, // 100% 处的颜色
  495. // ],
  496. // false
  497. // ),
  498. // },
  499. },
  500. // splitArea: {
  501. // areaStyle: {
  502. // color: {
  503. // type: "radial", // linear 线性渐变 radial径向渐变
  504. // x: 0.4, // 0.5为正中心,如果小于渐变中心靠左
  505. // y: 0.5, // 0.5为正中心,如果小于渐变中心靠上
  506. // r: 1,
  507. // colorStops: [
  508. // {
  509. // offset: 0,
  510. // color: "#f16e6e", // 0% 处的颜色rgba(247, 215, 211, 1)
  511. // },
  512. // {
  513. // offset: 1,
  514. // color: "rgba(247, 225, 222, 1)", // 100% 处的颜色rgba(247, 225, 222, 1)
  515. // },
  516. // ],
  517. // },
  518. // },
  519. // },
  520. //网格颜色设置
  521. splitLine: {
  522. show: true,
  523. lineStyle: {
  524. width: 1,
  525. // color: "#FFBA92",
  526. },
  527. },
  528. },
  529. series: [
  530. {
  531. // name: "Budget vs spending",
  532. type: "radar",
  533. // symbolSize: 6,
  534. data: [
  535. {
  536. value: this.echarts_data_list1,
  537. //折线的颜色
  538. lineStyle: {
  539. normal: {
  540. color: "#006FFF",
  541. },
  542. },
  543. //折线拐点颜色
  544. itemStyle: {
  545. normal: {
  546. color: "#006FFF",
  547. // borderColor:'#000000',//拐点边框颜色
  548. borderWidth: 3, //拐点边框大小
  549. },
  550. // emphasis: {
  551. // color: '#000000'//hover拐点颜色定义
  552. // }
  553. },
  554. //阴影面积
  555. areaStyle: {
  556. color: "rgba(0,111,255,0.3)",
  557. },
  558. },
  559. {
  560. value: this.echarts_data_list2,
  561. lineStyle: {
  562. normal: {
  563. color: "#FF1E00",
  564. },
  565. },
  566. itemStyle: {
  567. normal: {
  568. color: "#FF1E00",
  569. // borderColor:'#000000',//拐点边框颜色
  570. borderWidth: 3, //拐点边框大小
  571. },
  572. // emphasis: {
  573. // color: '#000000'//hover拐点颜色定义
  574. // }
  575. },
  576. areaStyle: {
  577. color: "rgba(255,30,0,0.3)",
  578. },
  579. },
  580. ],
  581. },
  582. ],
  583. };
  584. this.option_z = {
  585. title: {
  586. text: "",
  587. left: "center",
  588. textStyle: {
  589. fontSize: 16,
  590. },
  591. },
  592. legend: {
  593. data: [],
  594. },
  595. xAxis: {
  596. type: "category",
  597. data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
  598. axisLabel: {
  599. interval: 0,
  600. },
  601. },
  602. yAxis: {
  603. name: "分数",
  604. type: "value",
  605. },
  606. series: [
  607. {
  608. name: "",
  609. data: [120, 200, 150, 80, 70, 110, 130],
  610. type: "bar",
  611. itemStyle: {
  612. // 设置柱状图的颜色
  613. color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [
  614. { offset: 0, color: "#00F6E3" },
  615. { offset: 1, color: "#644BFD" },
  616. ]),
  617. borderRadius: [18, 18, 18, 18],
  618. // background:{
  619. // color:'rgba(0,0,0,0.1)',
  620. // image:'../assets/img/home/bg_p.png'
  621. // },
  622. barWidth: 40,
  623. // normal:{
  624. // background:{
  625. // color:'rgba(0,0,0,0.1)',
  626. // image:'../assets/img/home/bg_p.png'
  627. // }
  628. // }
  629. },
  630. label: {
  631. show: true,
  632. position: "top",
  633. color: "#006FFF",
  634. formatter: function (params) {
  635. return parseInt(params.value);
  636. },
  637. },
  638. },
  639. {
  640. name: "",
  641. data: [120, 200, 150, 80, 70, 110, 130],
  642. type: "bar",
  643. itemStyle: {
  644. // 设置柱状图的颜色
  645. color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [
  646. { offset: 0, color: "#FCD04B" },
  647. { offset: 1, color: "#FF4C15" },
  648. ]),
  649. borderRadius: [18, 18, 18, 18],
  650. barWidth: 40,
  651. },
  652. label: {
  653. show: true,
  654. position: "top",
  655. color: "#FE7A28",
  656. formatter: function (params) {
  657. return parseInt(params.value);
  658. },
  659. },
  660. },
  661. ],
  662. };
  663. },
  664. methods: {
  665. open(val) {
  666. this.planEndTime = val.planEndTime;
  667. this.userInfo = val;
  668. this.dialogVisible = true;
  669. this.searchTarget();
  670. },
  671. //对比方法
  672. isCompare() {
  673. console.log(this.multipleSelection);
  674. //判断是否是选了两个用户
  675. if (this.multipleSelection.length != 2) {
  676. this.$message({
  677. message: "请选两个进行对比",
  678. type: "warning",
  679. });
  680. return;
  681. }
  682. if (this.multipleSelection.length == 2) {
  683. let has = false;
  684. for (let i = 0; i < this.multipleSelection.length; i++) {
  685. if (this.multipleSelection[i].isComplete == "0") {
  686. has = true;
  687. break;
  688. }
  689. //
  690. }
  691. if (has) {
  692. this.$message({
  693. message: "选项中不能含有未完成的",
  694. type: "warning",
  695. });
  696. return;
  697. }
  698. }
  699. this.compareVisible = true;
  700. this.queryDetail1(this.multipleSelection[0].id);
  701. this.queryDetail2(this.multipleSelection[1].id);
  702. //开始调用对比的方法
  703. //打开对比弹出框、、显示对比结果
  704. //调用查询各个报告的方法
  705. },
  706. queryDetail1(id) {
  707. let url = `/userRecordScore/findAllByPlanIdAndUserNo?planId=${this.userInfo.id}&userNo=${this.multipleSelection[0].userNo}`;
  708. this.$http.get(url, {}, (res) => {
  709. if (res && res.code == 200) {
  710. this.useTime1 = res.data.usedTime;
  711. this.orgName1 = res.data.user.orgName;
  712. this.userGender1 = res.data.user.gender;
  713. let a = res.data.report;
  714. let listTmp2 = [];
  715. listTmp2 = a.filter((item) => {
  716. return (
  717. item.dimensionName == "总分" ||
  718. item.dimensionName == "躯体化" ||
  719. item.dimensionName == "焦虑" ||
  720. item.dimensionName == "抑郁"
  721. );
  722. });
  723. let listTmp3 = [];
  724. listTmp3 = a.filter((item) => {
  725. return !(
  726. item.dimensionName == "躯体化" ||
  727. item.dimensionName == "焦虑" ||
  728. item.dimensionName == "抑郁" ||
  729. item.dimensionName == "总分"
  730. );
  731. });
  732. this.userData1 = listTmp2.concat(listTmp3);
  733. if (this.userData2.length == 0) {
  734. this.formatterDataW(a, false, 1);
  735. } else {
  736. this.formatterDataW(a, true, 1);
  737. }
  738. } else {
  739. // this.$toast.fail(res.msg);
  740. this.$message.error(res.msg);
  741. }
  742. });
  743. },
  744. queryDetail2(id) {
  745. let url = `/userRecordScore/findAllByPlanIdAndUserNo?planId=${this.userInfo.id}&userNo=${this.multipleSelection[1].userNo}`;
  746. this.$http.get(url, {}, (res) => {
  747. if (res && res.code == 200) {
  748. this.useTime2 = res.data.usedTime;
  749. this.orgName2 = res.data.user.orgName;
  750. this.userGender2 = res.data.user.gender;
  751. let a = res.data.report.filter((item) => {
  752. return item.isIcon == "1";
  753. });
  754. //将设置--四个维度单独取出来
  755. // let listTmp1 =[]
  756. // listTmp1 = a.filter((item) => {
  757. // return item.dimensionName != "总分";
  758. // });
  759. let listTmp2 = [];
  760. listTmp2 = a.filter((item) => {
  761. return (
  762. item.dimensionName == "总分" ||
  763. item.dimensionName == "躯体化" ||
  764. item.dimensionName == "焦虑" ||
  765. item.dimensionName == "抑郁"
  766. );
  767. });
  768. let listTmp3 = [];
  769. listTmp3 = a.filter((item) => {
  770. return !(
  771. item.dimensionName == "躯体化" ||
  772. item.dimensionName == "焦虑" ||
  773. item.dimensionName == "抑郁" ||
  774. item.dimensionName == "总分"
  775. );
  776. });
  777. // this.reportDataAll=listTmp2.concat(listTmp3)
  778. this.userData2 = listTmp2.concat(listTmp3);
  779. // this.userData2 = a;
  780. if (this.userData1.length == 0) {
  781. this.formatterDataW(a, false, 2);
  782. } else {
  783. this.formatterDataW(a, true, 2);
  784. }
  785. } else {
  786. // this.$toast.fail(res.msg);
  787. this.$message.error(res.msg);
  788. }
  789. });
  790. },
  791. formatterDataW(a, flag, index) {
  792. let scoreList = [];
  793. let scoreDes = [];
  794. let nameList = [];
  795. let zhuNameList = [];
  796. for (let i = 0; i < a.length; i++) {
  797. //
  798. if (a[i].dimensionName != "总分") {
  799. scoreList.push(parseInt(a[i].dimensionScore));
  800. scoreDes.push(a[i].dimensionAnalysis);
  801. let ob = { name: a[i].dimensionName, max: 100 };
  802. nameList.push(ob);
  803. zhuNameList.push(a[i].dimensionName);
  804. }
  805. }
  806. this.echarts_zhuname_list = zhuNameList;
  807. if (index == "1") {
  808. this.echarts_des_list1 = scoreDes;
  809. this.echarts_data_list1 = scoreList;
  810. this.echarts_name_list1 = nameList;
  811. } else {
  812. this.echarts_des_list2 = scoreDes;
  813. this.echarts_data_list2 = scoreList;
  814. this.echarts_name_list2 = nameList;
  815. }
  816. if (flag) {
  817. const myChart = echarts.init(this.echarts_ld);
  818. this.option_w.series[0].data[0].value = this.echarts_data_list1;
  819. this.option_w.series[0].data[1].value = this.echarts_data_list2;
  820. this.option_w.radar.indicator = this.echarts_name_list1; //name
  821. myChart.setOption(this.option_w);
  822. const myChart1 = echarts.init(this.echarts_zhu);
  823. this.option_z.series[0].name = this.multipleSelection[0].userName;
  824. this.option_z.series[0].data = this.echarts_data_list1;
  825. this.option_z.series[1].name = this.multipleSelection[1].userName;
  826. this.option_z.series[1].data = this.echarts_data_list2;
  827. this.option_z.xAxis.data = this.echarts_zhuname_list; //name
  828. //multipleSelection[1].userName
  829. this.option_z.legend.data = [
  830. this.multipleSelection[0].userName,
  831. this.multipleSelection[1].userName,
  832. ];
  833. myChart1.setOption(this.option_z);
  834. }
  835. },
  836. //选择用户进行对比的方法
  837. handleSelectionChange(val) {
  838. // isComplete
  839. this.multipleSelection = val;
  840. //判断里边是否有未完成的
  841. let hasNo = false;
  842. if (val.length > 0) {
  843. for (let i = 0; i < val.length; i++) {
  844. //
  845. if (val[i].isComplete == "0") {
  846. hasNo = true;
  847. }
  848. }
  849. }
  850. if (hasNo) {
  851. this.$message({
  852. type: "warning",
  853. message: "选项中不能含有未完成的",
  854. });
  855. return;
  856. }
  857. if (val.length > 2) {
  858. this.$message({
  859. type: "warning",
  860. message: "请选两个进行对比",
  861. });
  862. return;
  863. }
  864. },
  865. searchTarget() {
  866. this.pageNum = 1;
  867. this.searchList();
  868. },
  869. //进来调用已选列表接口
  870. searchList() {
  871. let url = `/planUser/findUserProgressByPage?pageSize=${this.pageSize}&pageNum=${this.pageNum}&planId=${this.userInfo.id}`;
  872. this.$http.get(url, {}, (res) => {
  873. if (res && res.code == 200) {
  874. this.tableData = res.data.content;
  875. this.total = res.data.totalElements;
  876. } else {
  877. // this.$toast.fail(res.msg);
  878. this.$message.error(res.msg);
  879. }
  880. });
  881. },
  882. //每页多少条
  883. handleSizeChange(val) {
  884. //将首页重置为1时---且总条数变化
  885. //设置为当前总条数
  886. this.pageNum = 1;
  887. this.pageSize = val;
  888. this.searchList();
  889. },
  890. handleCurrentChange(val) {
  891. this.pageNum = val;
  892. this.searchList();
  893. },
  894. formaCom(val) {
  895. if (val.isComplete == "0") {
  896. return "未完成";
  897. } else {
  898. return "已完成";
  899. }
  900. },
  901. },
  902. };
  903. </script>
  904. <style lang="less" scoped>
  905. .out/deep/ .el-dialog {
  906. border-radius: 20px !important;
  907. // background-color: #f7f7f7 !important;
  908. }
  909. .pag_class /deep/ .el-input__inner {
  910. width: 100% !important;
  911. }
  912. .compare_class {
  913. display: flex;
  914. flex-direction: row;
  915. .compare_user1 {
  916. flex: 1;
  917. margin-right: 10px;
  918. background-color: #dcebff;
  919. padding: 20px 20px;
  920. border-radius: 20px;
  921. .compare_user1_out {
  922. display: flex;
  923. align-items: center;
  924. img {
  925. width: 80px;
  926. }
  927. .compare_user1_info {
  928. display: flex;
  929. flex-direction: column;
  930. justify-content: space-around;
  931. height: 80px;
  932. margin-left: 30px;
  933. font-size: 16px;
  934. }
  935. }
  936. .compare_group {
  937. font-size: 16px;
  938. margin-top: 10px;
  939. color: #999999;
  940. }
  941. .compare_group_detail {
  942. margin-top: 10px;
  943. font-size: 16px;
  944. // color: #006fff;
  945. }
  946. }
  947. .compare_user2 {
  948. margin-left: 10px;
  949. flex: 1;
  950. background-color: #ffdfdb;
  951. border-radius: 20px;
  952. padding: 20px 20px;
  953. .compare_user1_out {
  954. display: flex;
  955. align-items: center;
  956. img {
  957. width: 80px;
  958. }
  959. .compare_user1_info {
  960. display: flex;
  961. flex-direction: column;
  962. justify-content: space-around;
  963. height: 80px;
  964. margin-left: 30px;
  965. font-size: 16px;
  966. }
  967. }
  968. .compare_group {
  969. font-size: 16px;
  970. margin-top: 10px;
  971. color: #999999;
  972. }
  973. .compare_group_detail {
  974. margin-top: 10px;
  975. font-size: 16px;
  976. // color: #ff3014;
  977. }
  978. }
  979. }
  980. .compare_plan {
  981. margin-top: 40px;
  982. margin-bottom: 10px;
  983. display: flex;
  984. flex-direction: row;
  985. .compare_plan_out1 {
  986. flex: 1;
  987. margin-right: 10px;
  988. display: flex;
  989. justify-content: space-between;
  990. flex-direction: column;
  991. .compare_plan_time {
  992. margin-top: 6px;
  993. color: #999999;
  994. }
  995. }
  996. .compare_plan_out2 {
  997. margin-left: 10px;
  998. flex: 1;
  999. display: flex;
  1000. justify-content: space-between;
  1001. flex-direction: column;
  1002. .compare_plan_time {
  1003. margin-top: 6px;
  1004. color: #999999;
  1005. }
  1006. }
  1007. }
  1008. .compare_score {
  1009. display: flex;
  1010. flex-direction: row;
  1011. .compare_score_inner {
  1012. padding-left: 20px;
  1013. flex: 1;
  1014. .compare_score_left {
  1015. color: #006fff;
  1016. margin-top: 20px;
  1017. margin-bottom: 10px;
  1018. font-size: 16px;
  1019. letter-spacing: 3px;
  1020. }
  1021. .compare_score_right {
  1022. color: #ff3014;
  1023. margin-top: 20px;
  1024. margin-bottom: 10px;
  1025. font-size: 16px;
  1026. letter-spacing: 3px;
  1027. }
  1028. .compare_result {
  1029. font-size: 16px;
  1030. letter-spacing: 3px;
  1031. }
  1032. }
  1033. }
  1034. .cpmpare_all {
  1035. display: flex;
  1036. .compare_score_detail_left {
  1037. flex: 1;
  1038. .compare_score_inner {
  1039. padding-left: 20px;
  1040. flex: 1;
  1041. .compare_score_left_back {
  1042. color: #006fff;
  1043. margin-top: 20px;
  1044. margin-bottom: 10px;
  1045. font-size: 20px;
  1046. letter-spacing: 3px;
  1047. background-color: #f1f7ff;
  1048. }
  1049. .compare_score_right_back {
  1050. color: #ff3014;
  1051. margin-top: 20px;
  1052. margin-bottom: 10px;
  1053. font-size: 20px;
  1054. letter-spacing: 3px;
  1055. background-color: #fff4f2;
  1056. }
  1057. .compare_score_left {
  1058. color: #006fff;
  1059. margin-top: 20px;
  1060. margin-bottom: 10px;
  1061. font-size: 20px;
  1062. letter-spacing: 3px;
  1063. }
  1064. .compare_score_right {
  1065. color: #ff3014;
  1066. margin-top: 20px;
  1067. margin-bottom: 10px;
  1068. font-size: 20px;
  1069. letter-spacing: 3px;
  1070. }
  1071. .compare_result {
  1072. font-size: 20px;
  1073. letter-spacing: 3px;
  1074. }
  1075. .compare_result_new {
  1076. font-size: 20px;
  1077. letter-spacing: 3px;
  1078. margin-top: 10px;
  1079. .title {
  1080. color: #006fff;
  1081. }
  1082. }
  1083. }
  1084. }
  1085. .compare_score_detail_right {
  1086. flex: 1;
  1087. display: flex;
  1088. flex-direction: column;
  1089. .compare_score_inner {
  1090. padding-left: 20px;
  1091. flex: 1;
  1092. .compare_score_left_back {
  1093. color: #006fff;
  1094. margin-top: 20px;
  1095. margin-bottom: 10px;
  1096. font-size: 20px;
  1097. letter-spacing: 3px;
  1098. background-color: #f1f7ff;
  1099. }
  1100. .compare_score_right_back {
  1101. color: #ff3014;
  1102. margin-top: 20px;
  1103. margin-bottom: 10px;
  1104. font-size: 20px;
  1105. letter-spacing: 3px;
  1106. background-color: #fff4f2;
  1107. }
  1108. .compare_score_left {
  1109. color: #006fff;
  1110. margin-top: 20px;
  1111. margin-bottom: 10px;
  1112. font-size: 20px;
  1113. letter-spacing: 3px;
  1114. }
  1115. .compare_score_right {
  1116. color: #ff3014;
  1117. margin-top: 20px;
  1118. margin-bottom: 10px;
  1119. font-size: 20px;
  1120. letter-spacing: 3px;
  1121. }
  1122. .compare_result {
  1123. font-size: 20px;
  1124. letter-spacing: 3px;
  1125. }
  1126. .compare_result_new {
  1127. font-size: 20px;
  1128. letter-spacing: 3px;
  1129. margin-top: 10px;
  1130. .title {
  1131. color: #006fff;
  1132. }
  1133. }
  1134. }
  1135. }
  1136. }
  1137. .cpmpare_all {
  1138. // height: 100px;
  1139. display: flex;
  1140. flex-direction: column;
  1141. .dimensionality_out {
  1142. display: flex;
  1143. width: 100%;
  1144. .left {
  1145. margin-right: 10px;
  1146. flex: 1;
  1147. display: flex;
  1148. align-items: center;
  1149. margin-top: 20px;
  1150. margin-bottom: 4px;
  1151. font-size: 16px;
  1152. letter-spacing: 3px;
  1153. // background-color: #f1f7ff;
  1154. .totol_all {
  1155. color: #000000;
  1156. font-weight: 700;
  1157. margin-left: 10px;
  1158. }
  1159. }
  1160. .right {
  1161. margin-left: 10px;
  1162. flex: 1;
  1163. display: flex;
  1164. align-items: center;
  1165. margin-top: 20px;
  1166. margin-bottom: 4px;
  1167. font-size: 16px;
  1168. letter-spacing: 3px;
  1169. // background-color: #f1f7ff;
  1170. .totol_all {
  1171. color: #000000;
  1172. font-weight: 700;
  1173. margin-left: 10px;
  1174. }
  1175. }
  1176. }
  1177. .allScore_out {
  1178. display: flex;
  1179. width: 100%;
  1180. .left {
  1181. margin-right: 10px;
  1182. flex: 1;
  1183. display: flex;
  1184. align-items: center;
  1185. // margin-top: 10px;
  1186. margin-bottom: 4px;
  1187. font-size: 16px;
  1188. letter-spacing: 3px;
  1189. // background-color: #f1f7ff;
  1190. .totol_all {
  1191. color: #000000;
  1192. font-weight: 700;
  1193. margin-left: 10px;
  1194. }
  1195. }
  1196. .right {
  1197. margin-left: 10px;
  1198. flex: 1;
  1199. display: flex;
  1200. align-items: center;
  1201. // margin-top: 10px;
  1202. margin-bottom: 4px;
  1203. font-size: 16px;
  1204. letter-spacing: 3px;
  1205. // background-color: #f1f7ff;
  1206. .totol_all {
  1207. color: #000000;
  1208. font-weight: 700;
  1209. margin-left: 10px;
  1210. }
  1211. }
  1212. }
  1213. }
  1214. .img_vs {
  1215. width: 140px;
  1216. position: absolute;
  1217. right: 0;
  1218. top: -50px;
  1219. margin-right: -78px;
  1220. }
  1221. </style>