PlanReport.vue 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701
  1. <template>
  2. <div>
  3. <el-dialog
  4. :visible.sync="dialogVisible"
  5. :close-on-click-modal="false"
  6. width="90%"
  7. style="border-radius: 40px"
  8. >
  9. <div slot="title">
  10. <p
  11. style="
  12. text-align: center;
  13. font-size: 20px;
  14. margin-bottom: 20px;
  15. font-weight: 700;
  16. "
  17. >
  18. {{ planName }}报告
  19. </p>
  20. <div class="report_ge_title" style="margin-bottom: 20px">
  21. <div class="blue_t"></div>
  22. <div class="com">完成情况</div>
  23. </div>
  24. <div style="display: flex">
  25. <div class="chart_wrap" style="flex: 4">
  26. <div class="report_top_bingBo">
  27. <div class="isComStyle">
  28. 总人数:&nbsp;&nbsp;{{ this.completeNum + this.unComplete }}人
  29. </div>
  30. </div>
  31. <div class="report_top_bingBo" style="margin-top: 20px">
  32. <div class="isComStyle">
  33. 已完成<span>{{ this.completeNum }}人</span>
  34. </div>
  35. <div class="isUnComStyle">
  36. 未完成<span>{{ this.unComplete }}人</span>
  37. </div>
  38. </div>
  39. <BingChart
  40. :options="options1"
  41. chartId="myPieChart1"
  42. chartName="完成度"
  43. v-show="this.unComplete != 0"
  44. />
  45. </div>
  46. <!-- v-show="this.unComplete != 0" -->
  47. <div style="flex: 8" class="report_top_right_out" v-show="this.unComplete != 0">
  48. <div class="report_top_right">
  49. <div style="font-size: 16px; letter-spacing: 1px">未完成人员列表</div>
  50. <div></div>
  51. </div>
  52. <el-table
  53. :data="complateTableData"
  54. :row-style="{ height: '0px', borderRadius: '20px' }"
  55. :cell-style="{ padding: '5px' }"
  56. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  57. >
  58. <el-table-column
  59. show-overflow-tooltip
  60. prop="userName"
  61. label="姓名"
  62. align="center"
  63. width=""
  64. >
  65. </el-table-column>
  66. <el-table-column
  67. prop="userNo"
  68. v-if="planType == '0'"
  69. label="学号"
  70. align="center"
  71. width=""
  72. >
  73. </el-table-column>
  74. <el-table-column
  75. prop="userNo"
  76. v-if="planType == '1'"
  77. label="编号"
  78. align="center"
  79. width=""
  80. >
  81. </el-table-column>
  82. <el-table-column
  83. prop="orgName"
  84. label="所属组织架构"
  85. align="center"
  86. width=""
  87. >
  88. </el-table-column>
  89. </el-table>
  90. <el-pagination
  91. class="pag_class"
  92. background
  93. @current-change="complateHandleCurrentChange"
  94. :current-page.sync="complatePageNum"
  95. layout="total, prev, pager, next"
  96. :page-size="complatePageSize"
  97. :page-sizes="[10, 20, 50, 100]"
  98. :total="complateTotal"
  99. >
  100. </el-pagination>
  101. </div>
  102. <div
  103. style="flex: 4; display: flex; flex-direction: column; align-items: center"
  104. class="report_top_right_out"
  105. v-show="this.unComplete == 0"
  106. >
  107. <img style="width: 60%" src="../assets/img/report/task.png" />
  108. <div style="text-align: center; margin-top: 20px; font-size: 16px">
  109. 全部人员已完成测试
  110. </div>
  111. </div>
  112. <div style="flex: 4" class="report_top_right_out" v-show="this.unComplete == 0">
  113. &nbsp;
  114. </div>
  115. </div>
  116. <div class="report_ge_title" style="margin-top: 40px; margin-bottom: 20px">
  117. <div class="blue_t"></div>
  118. <div class="com">已完成人员测评情况</div>
  119. </div>
  120. <div style="display: flex">
  121. <div class="chart_wrap" style="flex: 4">
  122. <div class="report_top_bingBo">
  123. <div class="isComStyle">
  124. 已完成人数:&nbsp;&nbsp;{{ this.completeNum }}人
  125. </div>
  126. </div>
  127. <div class="report_top_bingBo" style="margin-top: 20px">
  128. <div class="isComStyle">
  129. 心理健康<span>{{ this.completeNum - this.abnormalNum }}人</span>
  130. </div>
  131. <div class="isUnComStyle">
  132. 心理异常<span>{{ this.abnormalNum }}人</span>
  133. </div>
  134. </div>
  135. <BingChart :options="options6" chartId="myPieChart6" chartName="完成度" />
  136. </div>
  137. <div style="flex: 8; margin-left: 20px" class="report_top_right_out">
  138. <div class="report_top_bingBo">
  139. <div class="isComStyle" style="font-size: 16px; text-align: center">
  140. 心理异常人次统计
  141. </div>
  142. </div>
  143. <div style="height: 100%; width: 100%" ref="echarts_zhu"></div>
  144. </div>
  145. </div>
  146. <div class="table-content">
  147. <div
  148. class="radio_group_style"
  149. style="display: flex; justify-content: space-between; align-items: center"
  150. >
  151. <el-radio-group
  152. v-model="userType"
  153. style="margin-top: 40px; margin-bottom: 20px"
  154. @input="userTypeChange"
  155. >
  156. <el-radio-button label="心理异常"></el-radio-button>
  157. <el-radio-button label="抑郁"></el-radio-button>
  158. <el-radio-button label="压力"></el-radio-button>
  159. <el-radio-button label="焦虑"></el-radio-button>
  160. <el-radio-button label="视觉整合能力"></el-radio-button>
  161. <!-- <el-radio-button label="其他"></el-radio-button> -->
  162. </el-radio-group>
  163. <el-button
  164. style="margin-top: 40px; margin-bottom: 20px"
  165. @click="funExport"
  166. type="success"
  167. round
  168. class="add_class"
  169. >
  170. 心理异常导出
  171. </el-button>
  172. </div>
  173. <el-table
  174. :data="tableData"
  175. :cell-style="{ padding: '5px' }"
  176. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  177. >
  178. <el-table-column
  179. show-overflow-tooltip
  180. prop="userName"
  181. label="姓名"
  182. align="center"
  183. width=""
  184. >
  185. </el-table-column>
  186. <el-table-column
  187. prop="userNo"
  188. v-if="planType == '0'"
  189. label="学号"
  190. align="center"
  191. width=""
  192. >
  193. </el-table-column>
  194. <el-table-column
  195. prop="userNo"
  196. v-if="planType == '1'"
  197. label="编号"
  198. align="center"
  199. width=""
  200. >
  201. </el-table-column>
  202. <el-table-column prop="orgName" label="所属组织架构" align="center" width="">
  203. </el-table-column>
  204. <el-table-column label="症状" align="center" v-if="userType == '心理异常'">
  205. <template slot-scope="scope">
  206. <div
  207. v-show="scope.row.symptom == '重度'"
  208. style="display: flex; align-items: center; justify-content: center"
  209. >
  210. <img
  211. style="width: 18px; height: 18px; margin-right: 4px"
  212. src="../assets/img/report/1.png"
  213. alt=""
  214. />
  215. <div style="color: #d91b00">{{ scope.row.symptom }}</div>
  216. </div>
  217. <div
  218. v-show="scope.row.symptom == '中度'"
  219. style="display: flex; align-items: center; justify-content: center"
  220. >
  221. <img
  222. style="width: 18px; height: 18px; margin-right: 4px"
  223. src="../assets/img/report/2.png"
  224. alt=""
  225. />
  226. <div style="color: #f0a900">{{ scope.row.symptom }}</div>
  227. </div>
  228. </template>
  229. </el-table-column>
  230. <el-table-column label="症状" align="center" v-if="userType != '心理异常'">
  231. <template slot-scope="scope">
  232. <div
  233. v-show="scope.row.dimensionSymptom == '重度'"
  234. style="display: flex; align-items: center; justify-content: center"
  235. >
  236. <img
  237. style="width: 18px; height: 18px; margin-right: 4px"
  238. src="../assets/img/report/1.png"
  239. alt=""
  240. />
  241. <div style="color: #d91b00">{{ scope.row.dimensionSymptom }}</div>
  242. </div>
  243. <div
  244. v-show="scope.row.dimensionSymptom == '中度'"
  245. style="display: flex; align-items: center; justify-content: center"
  246. >
  247. <img
  248. style="width: 18px; height: 18px; margin-right: 4px"
  249. src="../assets/img/report/2.png"
  250. alt=""
  251. />
  252. <div style="color: #f0a900">{{ scope.row.dimensionSymptom }}</div>
  253. </div>
  254. </template>
  255. </el-table-column>
  256. <el-table-column label="操作" width="260px" align="center">
  257. <template slot-scope="scope">
  258. <div class="detail_button_out">
  259. <div class="detail_button" @click="selectPlan(scope.row)">
  260. <img src="../assets/img/table/search.png" />
  261. <span> 个人报告查看 </span>
  262. </div>
  263. <div class="detail_button" @click="queryQS(scope.row)">
  264. <img src="../assets/img/table/search.png" />
  265. <span> 趋势查看 </span>
  266. </div>
  267. </div>
  268. </template>
  269. </el-table-column>
  270. </el-table>
  271. </div>
  272. <el-pagination
  273. class="pag_class"
  274. background
  275. @current-change="handleCurrentChange"
  276. :current-page.sync="pageNum"
  277. layout="total, prev, pager, next"
  278. :page-size="pageSize"
  279. :page-sizes="[10, 20, 50, 100]"
  280. :total="total"
  281. >
  282. </el-pagination>
  283. <div class="report_ge_title" style="margin-top: 40px; margin-bottom: 20px">
  284. <div class="blue_t"></div>
  285. <div class="com">已完成人员中各维度统计</div>
  286. </div>
  287. <el-form :inline="true" class="demo-form-inline">
  288. <el-form-item label="维度选择">
  289. <el-select
  290. v-model="dime"
  291. @change="userDimensionality"
  292. placeholder="请选择维度"
  293. >
  294. <el-option
  295. v-for="item in dimeList"
  296. :key="item.id"
  297. :label="item.paramName"
  298. :value="item.paramValue"
  299. ></el-option>
  300. </el-select>
  301. </el-form-item>
  302. <el-form-item label="年级选择" v-show="planType=='0'">
  303. <el-select v-model="grade" placeholder="请选择年级" @change="gradeChange">
  304. <el-option
  305. v-for="item in gradeList"
  306. :key="item.id"
  307. :label="item == '全部' ? '' : item == -1 ? '教师组' : `${item}级`"
  308. :value="item"
  309. ></el-option>
  310. </el-select>
  311. </el-form-item>
  312. <el-form-item label="组织架构选择" class="org_class">
  313. <el-select
  314. :popper-append-to-body="false"
  315. collapse-tags
  316. multiple
  317. v-model="orgName"
  318. @change="userOrgName"
  319. placeholder="请选择组织架构"
  320. >
  321. <el-option
  322. v-for="item in orgList"
  323. :key="item.id"
  324. :label="item.orgName"
  325. :value="item.orgNo"
  326. >
  327. </el-option>
  328. <div class="button_report">
  329. <el-button
  330. size="mini"
  331. type="success"
  332. class="all_select"
  333. @click="selectAllFun"
  334. >
  335. 全选
  336. </el-button>
  337. <el-button size="mini" class="all_clear" @click="clearAllFun">
  338. 清空
  339. </el-button>
  340. </div>
  341. </el-select>
  342. </el-form-item>
  343. </el-form>
  344. <div class="radio_group_style">
  345. <el-radio-group
  346. v-model="tabName"
  347. style="margin-top: 20px; margin-bottom: 20px"
  348. @input="tabFun"
  349. >
  350. <el-radio-button
  351. :label="item.paramValue"
  352. v-for="item in subDimeList"
  353. :key="item.id"
  354. >{{ item.paramName }}</el-radio-button
  355. >
  356. </el-radio-group>
  357. </div>
  358. <div style="display: flex; flex-direction: row">
  359. <el-radio-group
  360. v-model="subValue"
  361. @change="userSubFun"
  362. style="
  363. width: 100%;
  364. flex: 3;
  365. display: flex;
  366. flex-direction: row;
  367. justify-content: left;
  368. "
  369. >
  370. <el-radio
  371. v-for="item in subOption"
  372. :key="item"
  373. :label="item"
  374. style="margin-top: 20px"
  375. ></el-radio>
  376. </el-radio-group>
  377. </div>
  378. <div style="display: flex; flex-direction: row">
  379. <div
  380. style="
  381. flex: 4;
  382. width: 100%;
  383. display: flex;
  384. flex-direction: row;
  385. margin-top: 20px;
  386. justify-content: center;
  387. margin-bottom: 40px;
  388. "
  389. >
  390. <div style="flex: 1">
  391. <div style="display: flex; font-size: 16px; flex-direction: row">
  392. <div style="display: flex; flex-direction: column">
  393. <span class="sex_class">{{ tabNameCurrent }}</span>
  394. <span class="sex_class">心理健康</span>
  395. <span class="sex_class"
  396. >中重度{{ dime == "压力" ? "压力" : dime }}</span
  397. >
  398. </div>
  399. <div style="display: flex; flex-direction: column">
  400. <span class="sex_class"
  401. >:<span style="visibility: hidden">你</span></span
  402. >
  403. <span class="sex_class"
  404. >:<span style="visibility: hidden">你</span></span
  405. >
  406. <span class="sex_class"
  407. >:<span style="visibility: hidden">你</span></span
  408. >
  409. </div>
  410. <div style="display: flex; flex-direction: column">
  411. <span class="sex_class1"> {{ subValue }}&nbsp;{{ subAll }}人</span>
  412. <span
  413. class="sex_class1"
  414. style="background-color: #5470c6; text-align: center; color: #ffffff"
  415. >
  416. {{ subAll-subSingle }}人</span
  417. >
  418. <span
  419. class="sex_class1"
  420. style="background-color: #ffae00; text-align: center; color: #ffffff"
  421. >
  422. {{ subSingle }}人</span
  423. >
  424. </div>
  425. </div>
  426. </div>
  427. </div>
  428. <div class="chart_wrap" style="flex: 4">
  429. <BingChart2
  430. :options="options7"
  431. chartId="myPieChart7"
  432. chartName="心理健康异常"
  433. />
  434. </div>
  435. <div class="chart_wrap" style="flex: 4">&nbsp;</div>
  436. </div>
  437. <div class="finish_class">
  438. <el-table
  439. :data="subData"
  440. :row-style="{ height: '0px' }"
  441. :cell-style="{ padding: '5px' }"
  442. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  443. >
  444. <el-table-column
  445. show-overflow-tooltip
  446. prop="userName"
  447. label="姓名"
  448. align="center"
  449. width=""
  450. >
  451. </el-table-column>
  452. <el-table-column
  453. prop="userNo"
  454. v-if="planType == '0'"
  455. label="学号"
  456. align="center"
  457. width=""
  458. >
  459. </el-table-column>
  460. <el-table-column
  461. prop="userNo"
  462. v-if="planType == '1'"
  463. label="编号"
  464. align="center"
  465. width=""
  466. >
  467. </el-table-column>
  468. <el-table-column prop="orgName" label="所属组织架构" align="center" width="">
  469. </el-table-column>
  470. <el-table-column
  471. prop="dimensionName"
  472. label="维度"
  473. :formatter="forDimen"
  474. align="center"
  475. width=""
  476. >
  477. </el-table-column>
  478. <el-table-column label="症状" align="center">
  479. <template slot-scope="scope">
  480. <div
  481. v-show="scope.row.dimensionSymptom == '重度'"
  482. style="display: flex; align-items: center; justify-content: center"
  483. >
  484. <img
  485. style="width: 18px; height: 18px; margin-right: 4px"
  486. src="../assets/img/report/1.png"
  487. alt=""
  488. />
  489. <div style="color: #d91b00">{{ scope.row.dimensionSymptom }}</div>
  490. </div>
  491. <div
  492. v-show="scope.row.dimensionSymptom == '中度'"
  493. style="display: flex; align-items: center; justify-content: center"
  494. >
  495. <img
  496. style="width: 18px; height: 18px; margin-right: 4px"
  497. src="../assets/img/report/2.png"
  498. alt=""
  499. />
  500. <div style="color: #f0a900">{{ scope.row.dimensionSymptom }}</div>
  501. </div>
  502. </template>
  503. </el-table-column>
  504. <el-table-column label="操作" width="260px" align="center">
  505. <template slot-scope="scope">
  506. <div class="detail_button_out">
  507. <div class="detail_button" @click="selectPlan(scope.row)">
  508. <img src="../assets/img/table/search.png" />
  509. <span> 个人报告查看 </span>
  510. </div>
  511. <div class="detail_button" @click="queryQS(scope.row)">
  512. <img src="../assets/img/table/search.png" />
  513. <span> 趋势查看 </span>
  514. </div>
  515. </div>
  516. </template>
  517. </el-table-column>
  518. </el-table>
  519. </div>
  520. <el-pagination
  521. class="pag_class"
  522. background
  523. @current-change="subHandleCurrentChange"
  524. :current-page.sync="subPageNum"
  525. layout="total, prev, pager, next"
  526. :page-size="subPageSize"
  527. :page-sizes="[10, 20, 50, 100]"
  528. :total="subTotal"
  529. >
  530. </el-pagination>
  531. <div class="report_ge_title" style="margin-top: 40px; margin-bottom: 20px">
  532. <div class="blue_t"></div>
  533. <div class="com">可疑人员</div>
  534. </div>
  535. <div class="finish_class">
  536. <el-table
  537. :data="doubtfulData"
  538. :row-style="{ height: '0px' }"
  539. :cell-style="{ padding: '5px' }"
  540. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  541. >
  542. <el-table-column
  543. show-overflow-tooltip
  544. prop="userName"
  545. label="姓名"
  546. align="center"
  547. width=""
  548. >
  549. </el-table-column>
  550. <el-table-column
  551. prop="userNo"
  552. v-if="planType == '0'"
  553. label="学号"
  554. align="center"
  555. width=""
  556. >
  557. </el-table-column>
  558. <el-table-column
  559. prop="userNo"
  560. v-if="planType == '1'"
  561. label="编号"
  562. align="center"
  563. width=""
  564. >
  565. </el-table-column>
  566. <el-table-column prop="orgName" label="所属组织架构" align="center" width="">
  567. </el-table-column>
  568. <el-table-column
  569. prop="usedTime1"
  570. label="心理健康测评基础量表用时"
  571. align="center"
  572. width=""
  573. >
  574. </el-table-column>
  575. <el-table-column
  576. prop="usedTime2"
  577. label="心理健康评估任务用时"
  578. align="center"
  579. width=""
  580. >
  581. </el-table-column>
  582. <el-table-column label="操作" width="260px" align="center">
  583. <template slot-scope="scope">
  584. <div class="detail_button_out">
  585. <div class="detail_button" @click="selectPlan(scope.row)">
  586. <img src="../assets/img/table/search.png" />
  587. <span> 个人报告查看 </span>
  588. </div>
  589. <div class="detail_button" @click="queryQS(scope.row)">
  590. <img src="../assets/img/table/search.png" />
  591. <span> 趋势查看 </span>
  592. </div>
  593. </div>
  594. </template>
  595. </el-table-column>
  596. <!-- <el-table-column
  597. prop="dimensionName"
  598. label="维度"
  599. :formatter="forDimen"
  600. align="center"
  601. width=""
  602. >
  603. </el-table-column> -->
  604. <!-- <el-table-column prop="dimensionSymptom" label="症状" align="center" width="">
  605. </el-table-column> -->
  606. </el-table>
  607. </div>
  608. <el-pagination
  609. class="pag_class"
  610. background
  611. @current-change="doubtfulHandleCurrentChange"
  612. :current-page.sync="doubtfulPageNum"
  613. layout="total, prev, pager, next"
  614. :page-size="doubtfulPageSize"
  615. :page-sizes="[10, 20, 50, 100]"
  616. :total="doubtfulTotal"
  617. >
  618. </el-pagination>
  619. <!-- <div class="report_ge_title" style="margin-top: 40px; margin-bottom: 20px">
  620. <div class="blue_t"></div>
  621. <div class="com">满分人员</div>
  622. </div>
  623. <div class="finish_class">
  624. <el-table
  625. :data="fullmarkData"
  626. :row-style="{ height: '0px' }"
  627. :cell-style="{ padding: '5px' }"
  628. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  629. >
  630. <el-table-column
  631. show-overflow-tooltip
  632. prop="userName"
  633. label="姓名"
  634. align="center"
  635. width=""
  636. >
  637. </el-table-column>
  638. <el-table-column prop="userNo" label="学号" align="center" width="">
  639. </el-table-column>
  640. <el-table-column prop="orgName" label="所属组织架构" align="center" width="">
  641. </el-table-column>
  642. </el-table>
  643. </div>
  644. <el-pagination
  645. class="pag_class"
  646. background
  647. @current-change="fullmarkHandleCurrentChange"
  648. :current-page.sync="fullmarkPageNum"
  649. layout="total, prev, pager, next"
  650. :page-size="fullmarkPageSize"
  651. :page-sizes="[10, 20, 50, 100]"
  652. :total="fullmarkTotal"
  653. >
  654. </el-pagination> -->
  655. </div>
  656. </el-dialog>
  657. <Report1 ref="register" @search="searchTarget" />
  658. <div></div>
  659. </div>
  660. </template>
  661. <script>
  662. //引入echarts组件
  663. import * as echarts from "echarts";
  664. import PieChart from "@/components/PieChart";
  665. import BingChart from "@/components/BingChart";
  666. import BingChart2 from "@/components/BingChart2";
  667. import { basePath } from "../utils/http";
  668. import report1 from "../components/Report1.vue";
  669. import { reject, resolve } from "core-js/fn/promise";
  670. export default {
  671. components: {
  672. BingChart,
  673. BingChart2,
  674. Report1: report1,
  675. },
  676. data() {
  677. return {
  678. basePath: basePath,
  679. //获取计划名称
  680. planName: "",
  681. planId: "",
  682. dialogVisible: false,
  683. echarts_bing: "",
  684. option_bing: {},
  685. echarts_zhu: "",
  686. option_zhu: {},
  687. total: 0,
  688. pageSize: 10,
  689. pageNum: 1,
  690. tableData: [],
  691. options1: [],
  692. options2: [],
  693. options3: [],
  694. options4: [],
  695. options5: [],
  696. options6: [],
  697. options7: [],
  698. completeNum: 0,
  699. unComplete: 0,
  700. userType: "心理异常",
  701. //维度选择--字段
  702. dime: "焦虑",
  703. dimeList: [],
  704. //组织架构列表
  705. orgList: [],
  706. //组织编号name
  707. orgName: [],
  708. //子维度的列表
  709. subDimeList: [],
  710. //子维度默认绑定的值
  711. tabName: "1",
  712. tabNameCurrent: "性别",
  713. //子维度的子选项
  714. subValue: "",
  715. subOption: [],
  716. //子维度的人员显示数组
  717. subData: [],
  718. //子维度--第几页
  719. subPageNum: 1,
  720. //子维度--一页多少条
  721. subPageSize: 10,
  722. //子维度总共多少条
  723. subTotal: 0,
  724. dimensionName: "",
  725. //未完成的分页--每页多少条
  726. complatePageSize: 6,
  727. //未完成的分页--第几页
  728. complatePageNum: 1,
  729. //未完成的数据
  730. complateTableData: [],
  731. //未完成的总条数
  732. complateTotal: 0,
  733. abnormalNum: 0,
  734. grade: "",
  735. gradeList: [],
  736. subAll: 0,
  737. subSingle: 0,
  738. //可疑人员总共变量
  739. doubtfulData: [],
  740. //可疑人员第几页
  741. doubtfulPageNum: 1,
  742. //可疑人员每页条数
  743. doubtfulPageSize: 10,
  744. //每页多少条
  745. doubtfulTotal: 0,
  746. //----------满分人员----------
  747. //满分人员总变量
  748. fullmarkData: [],
  749. //满分人员第几页
  750. fullmarkPageNum: 1,
  751. //满分人员每页条数
  752. fullmarkPageSize: 10,
  753. //满分人员每页多少条
  754. fullmarkTotal: 0,
  755. planType: "",
  756. //存储传过来的值
  757. tmpCuObj:{}
  758. };
  759. },
  760. mounted() {
  761. this.echarts_zhu = this.$refs.echarts_zhu;
  762. this.option_zhu = {
  763. title: {
  764. text: "",
  765. },
  766. tooltip: {
  767. trigger: "axis",
  768. axisPointer: {
  769. type: "shadow",
  770. // shadowStyle:{
  771. // color:'rgba(0,0,0,0.5)',
  772. // shadowBlur: 10,
  773. // shadowOffsetX:0,
  774. // shadowOffsetY:'0'
  775. // }
  776. },
  777. formatter: function (params) {
  778. var relVal = "";
  779. let na = params[0].name;
  780. for (var i = 0, l = params.length; i < l; i++) {
  781. relVal += params[i].marker + na + " : " + params[i].value + "人次";
  782. }
  783. return relVal;
  784. },
  785. // formatter: "{b} : {c} % ",
  786. // formatter: function (params,trigger) {
  787. // return '{a} <br/>{b} : {c} <br/>百分比 : {d}%'
  788. // },
  789. },
  790. legend: {},
  791. grid: {
  792. left: "3%",
  793. right: "4%",
  794. bottom: "3%",
  795. containLabel: true,
  796. },
  797. xAxis: {
  798. type: "category",
  799. data: [],
  800. // axisLabel: {
  801. // width: 40, //设置内容宽度
  802. // // overflow:'break',
  803. // overflow: "truncate",
  804. // },
  805. // axisLabel: {
  806. // formatter: function (params) {
  807. // return "中等分值";
  808. // },
  809. // },
  810. },
  811. // dataZoom: {
  812. // type: "inside", //放大缩小x轴数值
  813. // },
  814. yAxis: {
  815. name: "人次",
  816. // max: 100,
  817. type: "value",
  818. boundaryGap: [0, 0.01],
  819. minInterval: 1,
  820. },
  821. series: [
  822. {
  823. type: "bar",
  824. data: [],
  825. barWidth: "15", //修改柱状图的宽度
  826. itemStyle: {
  827. color: new echarts.graphic.LinearGradient(
  828. //前四个参数用于配置渐变色的起止位置,这四个参数依次对应 右下左上 四个方位。也就是从右边开始顺时针方向。
  829. //通过修改前4个参数,可以实现不同的渐变方向
  830. /*第五个参数则是一个数组,用于配置颜色的渐变过程。
  831. 每项为一个对象,包含offset和color两个参数
  832. */
  833. 0,
  834. 0,
  835. 0,
  836. 1,
  837. [
  838. {
  839. //代表渐变色从正上方开始
  840. offset: 0, //offset范围是0~1,用于表示位置,0是指0%处的颜色
  841. color: "#644BFD",
  842. }, //柱图渐变色
  843. {
  844. offset: 1, //指100%处的颜色
  845. color: "#00F6E3",
  846. },
  847. ]
  848. ),
  849. borderWidth: 2,
  850. // borderColor: "#2EE053",
  851. barBorderRadius: [10, 10, 10, 10], //修改柱状图圆角
  852. },
  853. label: {
  854. show: true,
  855. position: "top",
  856. color: "#006FFF",
  857. formatter: function (params) {
  858. return parseInt(params.value) + "人次";
  859. },
  860. },
  861. },
  862. ],
  863. };
  864. // myChart.setOption(option_bing);
  865. //监听页面大小是否变化
  866. //如果变化则需要
  867. window.addEventListener("resize", this.echartsAllSize);
  868. },
  869. destroyed() {
  870. window.removeEventListener("resize", this.echartsAllSize);
  871. },
  872. methods: {
  873. queryQS(val) {
  874. this.tmpCuObj.userNo=val.userNo;
  875. let url = "/manage/tendency";
  876. this.bus.$emit("menuStatusUpdate", url);
  877. //跳转到趋势统计的页面
  878. //规定好跳转到哪个页面--然后跳转的类型
  879. // this.$router.push({path:'/manage/tendency',query:{orgNo:'1212',type:'1'}})
  880. sessionStorage.setItem("individualTendency", JSON.stringify(this.tmpCuObj));
  881. this.$router.push({
  882. path: "/manage/individualTendency",
  883. });
  884. },
  885. selectAllFun() {
  886. this.getOrgList1().then(() => {
  887. let params = {
  888. dimensionName: this.dime,
  889. orgList: this.orgName,
  890. planId: this.planId,
  891. quesType: this.tabName,
  892. quesValue: this.subValue,
  893. };
  894. this.queryBread(params);
  895. });
  896. },
  897. clearAllFun() {
  898. this.orgName = [];
  899. let params = {
  900. dimensionName: this.dime,
  901. orgList: this.orgName,
  902. planId: this.planId,
  903. quesType: this.tabName,
  904. quesValue: this.subValue,
  905. };
  906. this.queryBread(params);
  907. //清空的时候也是选择的全部
  908. },
  909. selectPlan(val) {
  910. this.addRegisterUser(val);
  911. },
  912. addRegisterUser(val) {
  913. let obj = val;
  914. obj.planId = this.planId;
  915. obj.planName = this.planName;
  916. // obj.planType
  917. obj.planType =this.planType;
  918. this.$refs.register.open(obj);
  919. },
  920. //导出心理异常的人员
  921. funExport() {
  922. // this.$http.getDown(
  923. // `/planUser/exportCompletedUserHighRisk?planId=${this.planId}`,
  924. // {},
  925. // (res) => {
  926. // // if (res && res.code == 200) {
  927. // var blob = new Blob([res.data], {
  928. // type: [
  929. // "application/vnd.ms-excel;charset=utf-8", // xls
  930. // "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8", // xlsx
  931. // ],
  932. // });
  933. // //var url = window.URL.createObjectURL(blob);
  934. // //新窗口打开
  935. // var link = document.createElement("a");
  936. // link.href = window.URL.createObjectURL(blob);
  937. // //这个顺属性加了浏览器回闪一下
  938. // // link.target = "_blank";
  939. // link.click();
  940. // }
  941. // );
  942. //下载
  943. let a = document.createElement("a");
  944. document.body.appendChild(a);
  945. a.setAttribute(
  946. "href",
  947. basePath + `/planUser/exportCompletedUserHighRisk?planId=${this.planId}`
  948. );
  949. a.click();
  950. },
  951. echartsAllSize() {
  952. let flag = false;
  953. setTimeout(() => {
  954. flag = true;
  955. if (this.dialogVisible && flag) {
  956. //设置变化的大小
  957. let myChart1 = echarts.init(this.echarts_zhu);
  958. myChart1.resize();
  959. }
  960. }, 1000);
  961. //大小自适应
  962. //查看当前页面是否显示
  963. },
  964. //change
  965. //年级改变参数
  966. gradeChange(val) {
  967. this.getOrgList(val);
  968. },
  969. //格式化页面数据
  970. forDimen(row) {
  971. if (row.dimensionName == "压力") {
  972. return "压力";
  973. } else {
  974. return row.dimensionName;
  975. }
  976. },
  977. //当子选项改变
  978. userSubFun(val) {
  979. //子选项改变以后----需要显示
  980. //渲染占比
  981. //改变以后需要调用--且显示饼状图
  982. //调用统计
  983. let params = {
  984. dimensionName: this.dime,
  985. orgList: this.orgName,
  986. planId: this.planId,
  987. quesType: this.tabName,
  988. quesValue: this.subValue,
  989. };
  990. this.queryBread(params);
  991. },
  992. //tab状态改变
  993. tabFun(a) {
  994. // this.tabNameCurrent=
  995. let linT = [];
  996. linT = this.subDimeList.filter((item) => {
  997. return item.paramValue == a;
  998. });
  999. //修改名字
  1000. this.tabNameCurrent = linT[0].paramName;
  1001. //设置选中的文字
  1002. // this.subValue = "";
  1003. // this.tabName = a.name;
  1004. // //根据已选的tab ---
  1005. // //根据已选的value--
  1006. // //开始查询下边的小项
  1007. this.getSubOption(a);
  1008. // this.getSubOption(a.paneName);
  1009. //根据点击的name---查询里边的选项
  1010. //查询出来 下边的选项
  1011. },
  1012. //组织架构--选择变化
  1013. userOrgName() {
  1014. let params = {
  1015. dimensionName: this.dime,
  1016. orgList: this.orgName,
  1017. planId: this.planId,
  1018. quesType: this.tabName,
  1019. quesValue: this.subValue,
  1020. };
  1021. this.queryBread(params);
  1022. },
  1023. //维度选择
  1024. userDimensionality() {
  1025. this.queryStudentData();
  1026. //查询饼状图的数据
  1027. let params = {
  1028. dimensionName: this.dime,
  1029. orgList: this.orgName,
  1030. planId: this.planId,
  1031. quesType: this.tabName,
  1032. quesValue: this.subValue,
  1033. };
  1034. this.queryBread(params);
  1035. },
  1036. open(val) {
  1037. //需要保存传过来的参数//然后再给存过来
  1038. this.tmpCuObj=val
  1039. this.planType = val.planType;
  1040. this.planId = val.id;
  1041. this.planName = val.planName;
  1042. this.userType = "心理异常";
  1043. this.pageNum = 1;
  1044. this.dialogVisible = true;
  1045. this.isFin();
  1046. this.isScore();
  1047. this.searchTarget();
  1048. //个维度异常初次调用
  1049. this.queryGrade();
  1050. //获取维度列表
  1051. this.getDimensionList();
  1052. //获取组织架构信息
  1053. //获取可疑人员列表
  1054. this.doubtfulSearchList();
  1055. //获取满分人员列表
  1056. this.fullmarkSearchList();
  1057. },
  1058. //查询计划下年级
  1059. queryGrade() {
  1060. this.$http.get(`/planOrg/findPlanGrade?planId=${this.planId}`, {}, (res) => {
  1061. if (res && res.code == 200) {
  1062. this.gradeList = res.data;
  1063. this.gradeList.unshift("全部");
  1064. this.grade = res.data[0];
  1065. this.getOrgList(this.grade);
  1066. // this.orgName = [res.data[0].orgNo];
  1067. // this.orgList = res.data;
  1068. } else {
  1069. this.$message.error(res.msg);
  1070. }
  1071. });
  1072. },
  1073. //管理端统计完成情况
  1074. isFin() {
  1075. //调用接口返回信息
  1076. let url = `/plan/countComplete?planId=${this.planId}`;
  1077. this.$http.get(url, {}, (res) => {
  1078. if (res.code == 200) {
  1079. this.unComplete = res.data[0];
  1080. this.completeNum = res.data[1];
  1081. // this.getPlanDimNun();
  1082. this.isAbnormal();
  1083. }
  1084. });
  1085. },
  1086. isScore() {
  1087. let url = `/plan/countTotalNumber?planId=${this.planId}`;
  1088. this.$http.get(url, {}, (res) => {
  1089. if (res.code == 200) {
  1090. let nameList = [];
  1091. let scoreList = [];
  1092. for (const item in res.data) {
  1093. //
  1094. nameList.push(item);
  1095. scoreList.push(res.data[item]);
  1096. }
  1097. this.option_zhu.xAxis.data = nameList;
  1098. this.option_zhu.series[0].data = scoreList;
  1099. }
  1100. });
  1101. },
  1102. // 查询不同维度的中重度数量
  1103. getPlanDimNun() {
  1104. this.$http.get(
  1105. `userRecordScore/countNumByPlanDim?planId=${this.planId}`,
  1106. {},
  1107. (res) => {
  1108. let dimensionList = res.data;
  1109. this.options1 = [
  1110. { value: this.completeNum, name: "已完成" },
  1111. { value: this.unComplete, name: "未完成" },
  1112. ];
  1113. // this.options2 = [
  1114. // { value: this.completeNum - dimensionList[0]["焦虑"], name: "焦虑" },
  1115. // { value: parseInt(dimensionList[0]["焦虑"]), name: "焦虑占比" },
  1116. // ];
  1117. // this.options3 = [
  1118. // { value: this.completeNum, name: "已完成人数" },
  1119. // { value: parseInt(dimensionList[1]["抑郁"]), name: "抑郁占比" },
  1120. // ];
  1121. // this.options4 = [
  1122. // { value: this.completeNum, name: "已完成人数" },
  1123. // { value: parseInt(dimensionList[2]["压力"]), name: "压力占比" },
  1124. // ];
  1125. // this.options5 = [
  1126. // { value: this.completeNum, name: "已完成人数" },
  1127. // { value: parseInt(dimensionList[3]["精神障碍"]), name: "精神障碍占比" },
  1128. // ];
  1129. this.options6 = [
  1130. {
  1131. value: this.completeNum - this.abnormalNum,
  1132. name: "心理健康",
  1133. },
  1134. { value: this.abnormalNum, name: "心理异常" },
  1135. ];
  1136. let nameList = [];
  1137. // nameList.push("心理健康");
  1138. nameList.push("抑郁");
  1139. nameList.push("压力");
  1140. nameList.push("焦虑");
  1141. nameList.push("视觉整合能力");
  1142. let scoreList = [];
  1143. // scoreList.push(
  1144. // parseInt(((this.completeNum - this.abnormalNum) / this.completeNum) * 100)
  1145. // );
  1146. scoreList.push(dimensionList[1]["抑郁"]);
  1147. scoreList.push(dimensionList[2]["压力"]);
  1148. scoreList.push(dimensionList[0]["焦虑"]);
  1149. scoreList.push(dimensionList[3]["视觉整合能力"]);
  1150. this.echarts_zhu = this.$refs.echarts_zhu;
  1151. this.option_zhu.xAxis.data = nameList;
  1152. this.option_zhu.series[0].data = scoreList;
  1153. let myChart1 = echarts.init(this.echarts_zhu);
  1154. myChart1.setOption(this.option_zhu);
  1155. }
  1156. );
  1157. },
  1158. userTypeChange(val) {
  1159. this.pageNum = 1;
  1160. if (val == "心理异常") {
  1161. this.getAbnormalList();
  1162. } else {
  1163. this.dimensionName = val;
  1164. if (val == "压力") {
  1165. this.getDimensionPeopleList("压力");
  1166. } else {
  1167. this.getDimensionPeopleList(val);
  1168. }
  1169. }
  1170. },
  1171. searchTarget() {
  1172. this.pageNum = 1;
  1173. this.getUnCompleteList();
  1174. // this.getDimensionPeopleList("焦虑");
  1175. //查询心理异常人员
  1176. // this.isAbnormal()
  1177. this.getAbnormalList();
  1178. },
  1179. //进来调用已选列表接口
  1180. searchList() {
  1181. let url = `/planUser/findUserProgressByPage?pageSize=${this.pageSize}&pageNum=${this.pageNum}&planId=${this.planId}`;
  1182. this.$http.get(url, {}, (res) => {
  1183. if (res && res.code == 200) {
  1184. this.tableData = res.data.content;
  1185. this.total = res.data.totalElements;
  1186. } else {
  1187. // this.$toast.fail(res.msg);
  1188. this.$message.error(res.msg);
  1189. }
  1190. });
  1191. },
  1192. //每页多少条
  1193. handleSizeChange(val) {
  1194. //将首页重置为1时---且总条数变化
  1195. //设置为当前总条数
  1196. },
  1197. complateHandleCurrentChange(val) {
  1198. this.complatePageNum = val;
  1199. this.getUnCompleteList();
  1200. },
  1201. handleCurrentChange(val) {
  1202. this.pageNum = val;
  1203. if (this.userType == "心理异常") {
  1204. this.getAbnormalList();
  1205. } else if (this.userType == "压力") {
  1206. //---
  1207. this.getDimensionPeopleList("压力");
  1208. } else {
  1209. this.getDimensionPeopleList(this.userType);
  1210. }
  1211. // this.searchList();
  1212. },
  1213. formaCom(val) {
  1214. if (val.isComplete == "0") {
  1215. return "未完成";
  1216. } else {
  1217. return "已完成";
  1218. }
  1219. },
  1220. // 查询未完成人员
  1221. getUnCompleteList() {
  1222. this.$http.get(
  1223. `planUser/findIncompleteUser?planId=${this.planId}&pageSize=${this.complatePageSize}&pageNum=${this.complatePageNum}`,
  1224. {},
  1225. (res) => {
  1226. if (res && res.code == 200) {
  1227. this.complateTableData = res.data.content;
  1228. this.complateTotal = res.data.totalElements;
  1229. } else {
  1230. // this.$toast.fail(res.msg);
  1231. this.$message.error(res.msg);
  1232. }
  1233. }
  1234. );
  1235. },
  1236. // 各维度异常人员
  1237. getDimensionPeopleList(val) {
  1238. this.$http.get(
  1239. `planUser/findCompletedUserByDim?planId=${this.planId}&dimensionName=${val}&pageSize=${this.pageSize}&pageNum=${this.pageNum}`,
  1240. {},
  1241. (res) => {
  1242. if (res && res.code == 200) {
  1243. this.tableData = res.data.content;
  1244. this.total = res.data.totalElements;
  1245. } else {
  1246. // this.$toast.fail(res.msg);
  1247. this.$message.error(res.msg);
  1248. }
  1249. }
  1250. );
  1251. },
  1252. //查询统计端的--心理健康异常的人员
  1253. isAbnormal() {
  1254. //调用接口返回信息
  1255. let url = `/planUser/countCompletedUserHighRisk?planId=${this.planId}`;
  1256. this.$http.get(url, {}, (res) => {
  1257. if (res.code == 200) {
  1258. // this.unComplete = res.data[0];
  1259. // this.completeNum = res.data[1];
  1260. this.abnormalNum = res.data;
  1261. this.getPlanDimNun();
  1262. }
  1263. });
  1264. },
  1265. // 查询精神健康异常人员
  1266. getAbnormalList() {
  1267. this.$http.get(
  1268. `planUser/findCompletedUserHighRisk?planId=${this.planId}&pageSize=${this.pageSize}&pageNum=${this.pageNum}`,
  1269. {},
  1270. (res) => {
  1271. if (res && res.code == 200) {
  1272. this.tableData = res.data.content;
  1273. this.total = res.data.totalElements;
  1274. } else {
  1275. this.$message.error(res.msg);
  1276. }
  1277. }
  1278. );
  1279. },
  1280. //查询维度选择框
  1281. getDimensionList() {
  1282. this.$http.get(`/param/findAllByType?type=dimension`, {}, (res) => {
  1283. if (res && res.code == 200) {
  1284. this.dimeList = res.data;
  1285. this.getSexList();
  1286. } else {
  1287. this.$message.error(res.msg);
  1288. }
  1289. });
  1290. },
  1291. //组织架构选择--
  1292. getOrgList1() {
  1293. //修改为promise模式以便 进行调用回调的操作
  1294. return new Promise((resolve, reject) => {
  1295. this.$http.get(`/planOrg/findAllByPlanId?planId=${this.planId}`, {}, (res) => {
  1296. if (res && res.code == 200) {
  1297. resolve();
  1298. if (res.data.length > 0) {
  1299. let list = [];
  1300. for (let i = 0; i < res.data.length; i++) {
  1301. list.push(res.data[i].orgNo);
  1302. }
  1303. this.orgName = list;
  1304. this.orgList = res.data;
  1305. }
  1306. } else {
  1307. reject();
  1308. this.$message.error(res.msg);
  1309. }
  1310. });
  1311. });
  1312. },
  1313. getOrgList(val) {
  1314. let url = "";
  1315. if (val == "全部") {
  1316. this.getOrgList1();
  1317. } else {
  1318. url = `/planOrg/findPlanGradeOrg?planId=${this.planId}&grade=${val}`;
  1319. this.$http.get(url, {}, (res) => {
  1320. if (res && res.code == 200) {
  1321. if (res.data.length > 0) {
  1322. let list = [];
  1323. for (let i = 0; i < res.data.length; i++) {
  1324. list.push(res.data[i].orgNo);
  1325. }
  1326. this.orgName = list;
  1327. }
  1328. this.orgList = res.data;
  1329. } else {
  1330. this.$message.error(res.msg);
  1331. }
  1332. });
  1333. }
  1334. },
  1335. //获取维度下变的子项维度
  1336. getSexList() {
  1337. let url;
  1338. if (this.planType == "0") {
  1339. url = `/param/findAllByType?type=ques`;
  1340. } else {
  1341. url = `/param/findAllByType?type=ques2`;
  1342. }
  1343. this.$http.get(url, {}, (res) => {
  1344. if (res && res.code == 200) {
  1345. this.subDimeList = res.data;
  1346. //调用性别的选项
  1347. this.tabName=res.data[0].paramValue
  1348. this.getSubOption(this.tabName);
  1349. } else {
  1350. this.$message.error(res.msg);
  1351. }
  1352. });
  1353. },
  1354. //获取子维度的下边的选项
  1355. getSubOption(val) {
  1356. this.$http.get(`/questionnaire/findListById?id=${val}`, {}, (res) => {
  1357. if (res && res.code == 200) {
  1358. this.subOption = res.data;
  1359. this.subValue = res.data[0];
  1360. //选中子维度
  1361. let params = {
  1362. dimensionName: this.dime,
  1363. orgList: this.orgName,
  1364. planId: this.planId,
  1365. quesType: this.tabName,
  1366. quesValue: this.subValue,
  1367. };
  1368. this.queryBread(params);
  1369. } else {
  1370. this.$message.error(res.msg);
  1371. }
  1372. });
  1373. },
  1374. //查询--最终的子维度的---饼图
  1375. queryBread(params) {
  1376. // dimensionName :this.dime,
  1377. // orgList:[],
  1378. // planId :this.planId,
  1379. // quesType:this.tabName,
  1380. // quesValue:this.subValue
  1381. this.$http.get(
  1382. `/userRecordScore/countByPlanIdAndOrgListAndQues?dimensionName=${params.dimensionName}&orgList=${params.orgList}&planId=${params.planId}&quesType=${params.quesType}&quesValue=${params.quesValue}`,
  1383. {},
  1384. (res) => {
  1385. if (res && res.code == 200) {
  1386. this.subAll = res.data.totalNum;
  1387. this.subSingle = res.data.highNum;
  1388. this.options7 = [
  1389. {
  1390. value: res.data.totalNum,
  1391. name: `已完成${this.subValue}`,
  1392. },
  1393. {
  1394. value: res.data.highNum,
  1395. name: `中重度${this.dime == "压力" ? "压力" : this.dime}`,
  1396. },
  1397. ];
  1398. // {{ subValue }}&nbsp;&nbsp;&nbsp;&nbsp;中重度{{ dime}}
  1399. this.queryStudentData();
  1400. //调用接口开始查询选择的列表
  1401. } else {
  1402. this.$message.error(res.msg);
  1403. }
  1404. }
  1405. );
  1406. },
  1407. queryStudentData() {
  1408. let params = {
  1409. dimensionName: this.dime,
  1410. orgList: this.orgName,
  1411. planId: this.planId,
  1412. quesType: this.tabName,
  1413. quesValue: this.subValue,
  1414. };
  1415. //修改文本
  1416. //获取需要传输的参数
  1417. this.$http.get(
  1418. `/userRecordScore/findByPlanIdAndOrgListAndQuesList?dimensionName=${params.dimensionName}&orgList=${params.orgList}&pageNum=${this.subPageNum}&pageSize=${this.subPageSize}&planId=${params.planId}&quesType=${params.quesType}&quesValue=${params.quesValue}`,
  1419. {},
  1420. (res) => {
  1421. if (res && res.code == 200) {
  1422. this.subData = res.data.content;
  1423. this.subTotal = res.data.totalElements;
  1424. //调用接口开始查询选择的列表
  1425. } else {
  1426. this.$message.error(res.msg);
  1427. }
  1428. }
  1429. );
  1430. },
  1431. //子项当前页改变
  1432. subHandleCurrentChange(val) {
  1433. this.subPageNum = val;
  1434. this.queryStudentData();
  1435. },
  1436. //可疑人员列表查询
  1437. doubtfulSearchList() {
  1438. this.$http.get(
  1439. `/planUser/findCompletedNotSeriousUserList?pageNum=${this.doubtfulPageNum}&pageSize=${this.doubtfulPageSize}&planId=${this.planId}`,
  1440. {},
  1441. (res) => {
  1442. if (res && res.code == 200) {
  1443. this.doubtfulData = res.data.content;
  1444. this.doubtfulTotal = res.data.totalElements;
  1445. //调用接口开始查询选择的列表
  1446. } else {
  1447. this.$message.error(res.msg);
  1448. }
  1449. }
  1450. );
  1451. },
  1452. //可疑人员分页变化
  1453. doubtfulHandleCurrentChange(val) {
  1454. this.doubtfulPageNum = val;
  1455. //查询可疑人员列表数据
  1456. this.doubtfulSearchList();
  1457. },
  1458. //满分人员列表查询
  1459. fullmarkSearchList() {
  1460. this.$http.get(
  1461. `/planUser/findCompletedFullMarksUserList?pageNum=${this.fullmarkPageNum}&pageSize=${this.fullmarkPageSize}&planId=${this.planId}`,
  1462. {},
  1463. (res) => {
  1464. if (res && res.code == 200) {
  1465. this.fullmarkData = res.data.content;
  1466. this.fullmarkTotal = res.data.totalElements;
  1467. //调用接口开始查询选择的列表
  1468. } else {
  1469. this.$message.error(res.msg);
  1470. }
  1471. }
  1472. );
  1473. },
  1474. //满分人员分页变化
  1475. fullmarkHandleCurrentChange(val) {
  1476. this.fullmarkPageNum = val;
  1477. //查询可疑人员列表数据
  1478. this.fullmarkSearchList();
  1479. },
  1480. },
  1481. };
  1482. </script>
  1483. <style scoped>
  1484. .report_top_right_out >>> .el-table__header-wrapper {
  1485. border-radius: 20px;
  1486. background-color: #f8f8f8;
  1487. }
  1488. .table-content >>> .el-table__header-wrapper {
  1489. border-radius: 20px;
  1490. background-color: #f8f8f8;
  1491. }
  1492. .finish_class >>> .el-table__header-wrapper {
  1493. border-radius: 20px;
  1494. background-color: #f8f8f8;
  1495. }
  1496. .radio_group_style >>> .el-radio-button__orig-radio:checked + .el-radio-button__inner {
  1497. color: #ffffff;
  1498. background-color: #00bf78;
  1499. }
  1500. .radio_group_style >>> .el-radio-button__inner {
  1501. background-color: #f5f7fa;
  1502. }
  1503. .org_class >>> .el-input__inner {
  1504. width: 300px !important;
  1505. }
  1506. .org_class >>> .el-input {
  1507. width: 300px;
  1508. }
  1509. .org_class >>> .el-scrollbar__bar.is-vertical {
  1510. padding-bottom: 40px !important;
  1511. }
  1512. .org_class >>> .el-select-dropdown__wrap {
  1513. padding-bottom: 40px !important;
  1514. }
  1515. </style>
  1516. <style>
  1517. .el-dialog {
  1518. border-radius: 20px !important;
  1519. }
  1520. .el-tabs__content {
  1521. display: contents !important;
  1522. }
  1523. /* .el-scrollbar {
  1524. padding-bottom: 40px !important;
  1525. } */
  1526. /* .el-scrollbar {
  1527. padding-bottom: 40px !important;
  1528. } */
  1529. </style>
  1530. <style lang="less" scoped>
  1531. .pag_class /deep/ .el-input__inner {
  1532. width: 100% !important;
  1533. }
  1534. .chart_wrap {
  1535. //flex: 1;
  1536. // height: 450px;
  1537. .report_top_bingBo {
  1538. display: flex;
  1539. justify-content: space-around;
  1540. .isComStyle {
  1541. font-size: 16px;
  1542. span {
  1543. background-color: #5470c6;
  1544. padding: 5px 20px;
  1545. font-size: 16px;
  1546. margin-left: 14px;
  1547. color: #ffffff;
  1548. }
  1549. }
  1550. .isUnComStyle {
  1551. font-size: 16px;
  1552. span {
  1553. background-color: #ffae00;
  1554. padding: 5px 20px;
  1555. font-size: 16px;
  1556. margin-left: 14px;
  1557. color: #ffffff;
  1558. }
  1559. }
  1560. }
  1561. }
  1562. .report_ge_title {
  1563. display: flex;
  1564. align-items: center;
  1565. .blue_t {
  1566. display: flex;
  1567. width: 14px;
  1568. background-color: #00bf78;
  1569. height: 30px;
  1570. border-radius: 20px;
  1571. margin-right: 5px;
  1572. }
  1573. .com {
  1574. font-size: 18px;
  1575. font-weight: 700;
  1576. }
  1577. }
  1578. .report_top_right_out {
  1579. flex: 6;
  1580. .report_top_right {
  1581. margin-bottom: 20px;
  1582. text-align: center;
  1583. }
  1584. }
  1585. .sex_class {
  1586. // text-align: justify;
  1587. text-align-last: justify;
  1588. margin: 2px;
  1589. line-height: 24px;
  1590. }
  1591. // .sex_class:after {
  1592. // display: inline-block;
  1593. // width: 100%;
  1594. // content: "";
  1595. // height: 0px;
  1596. // }
  1597. // .sex_class:before {
  1598. // display: inline-block;
  1599. // width: 100%;
  1600. // content: "";
  1601. // height: 0px;
  1602. // }
  1603. // .sex_class1:before {
  1604. // display: inline-block;
  1605. // width: 100%;
  1606. // content: "";
  1607. // height: 0px;
  1608. // }
  1609. .sex_class1 {
  1610. text-align: left;
  1611. margin: 2px;
  1612. line-height: 24px;
  1613. }
  1614. // .sex_class1:after {
  1615. // display: inline-block;
  1616. // width: 100%;
  1617. // content: "";
  1618. // height: 0px;
  1619. // }
  1620. .detail_button_out {
  1621. display: flex;
  1622. justify-content: space-around;
  1623. .detail_button {
  1624. display: flex;
  1625. align-items: center;
  1626. cursor: pointer;
  1627. letter-spacing: 2px;
  1628. img {
  1629. width: 15px;
  1630. margin-right: 5px;
  1631. }
  1632. span {
  1633. color: #00bf78;
  1634. // font-weight: 600;
  1635. }
  1636. }
  1637. }
  1638. .button_report {
  1639. background-color: #ffffff;
  1640. position: absolute;
  1641. padding-top: 10px;
  1642. display: flex;
  1643. flex-direction: row;
  1644. justify-content: center;
  1645. padding-bottom: 10px;
  1646. bottom: 0;
  1647. left: 0;
  1648. right: 0;
  1649. .all_select {
  1650. cursor: pointer;
  1651. }
  1652. .all_clear {
  1653. cursor: pointer;
  1654. }
  1655. }
  1656. </style>