analysis.vue 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-11-25 10:40:42
  4. * @LastEditTime: 2022-03-14 11:07:59
  5. * @LastEditors: your name
  6. * @Description: 数据分析
  7. * @FilePath: \Foshan4A2.0\src\views\dashboard\components\analysis.vue
  8. -->
  9. <template>
  10. <div class="dashboard-analysis">
  11. <div class="dashboard-list">
  12. <!--账号信息分布-->
  13. <div class="tu-account box-public-shadow">
  14. <div class="tu-account-content h100 flex">
  15. <div class="tu-account-content-left relative">
  16. <commonChartsPie :option="accountOption" id="tu-account-content" />
  17. </div>
  18. <div class="tu-account-content-right relative">
  19. <dateType @getTypeData="checkAccountType" :arrs="tuArrs" />
  20. <commonChartsNum :arrs="accountTeamsOne" />
  21. </div>
  22. </div>
  23. </div>
  24. <!--角色概览-->
  25. <div v-if="OpenRole" class="tu-user box-public-shadow l22">
  26. <div class="tu-user-content h100 flex">
  27. <div class="tu-user-content-left relative">
  28. <commonChartsPie :option="userOption" id="tu-user-content" />
  29. </div>
  30. <div class="tu-user-content-right">
  31. <commonChartsNum :arrs="userTeams" />
  32. </div>
  33. </div>
  34. </div>
  35. <!--权限概览-->
  36. <div class="tu-power box-public-shadow flex1 l22">
  37. <div class="tu-power-content-left relative">
  38. <commonChartsBar :option="towerOption" id="tu-tower-content" />
  39. </div>
  40. </div>
  41. </div>
  42. <div class="dashboard-list">
  43. <!--数据概况-->
  44. <div class="tu-unusual box-public-shadow flex1">
  45. <div class="tu-unusual-content h100 flex">
  46. <div class="tu-unusual-content-left w160 relative">
  47. <commonChartsPie @getChartData="getChartData" :option="unusualOption" id="tu-unusual-content" />
  48. </div>
  49. <div class="tu-unusual-content-right">
  50. <commonChartsNum @handleLog="handleLog" style="margin-top: 0" :arrs="unusualTeams" />
  51. </div>
  52. </div>
  53. </div>
  54. <!--登录情况-->
  55. <div class="tu-login box-public-shadow flex1 l22">
  56. <div class="tu-login-content h100 flex">
  57. <div class="tu-login-content-left w160 relative">
  58. <commonChartsPie @getChartData="getChartData" :option="loginOption" id="tu-login-content" />
  59. </div>
  60. <div class="tu-login-content-right">
  61. <commonChartsNum @handleLog="handleLog" :arrs="loginTeams" />
  62. </div>
  63. </div>
  64. </div>
  65. <!--授权情况-->
  66. <div class="tu-authorize box-public-shadow flex1 l22">
  67. <div class="tu-authorize-content h100 flex">
  68. <div class="tu-authorize-content-left w160 relative">
  69. <commonChartsPie @getChartData="getChartData" :option="authorizeOption" id="tu-authorize-content" />
  70. </div>
  71. <div class="tu-authorize-content-right">
  72. <div v-for="(item, index) in authorizeArr" @click="handleLog(item)" :key="index" class="behavior-list">
  73. <span :style="{ background: item.color }" class="icon"></span>
  74. <span class="name">{{ item.name }}:</span>
  75. <span class="num">{{ item.num }}</span>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. <!--行为情况-->
  81. <div class="tu-behavior box-public-shadow flex1 l22">
  82. <div class="tu-behavior-content h100 flex">
  83. <div class="tu-behavior-content-left w160 relative">
  84. <commonChartsPie @getChartData="getChartData" :option="behaviorOption" id="tu-behavior-content" />
  85. </div>
  86. <div class="tu-behavior-content-right">
  87. <div v-for="(item, index) in behaviorArr" @click="handleLog(item)" :key="index" class="behavior-list">
  88. <span :style="{ background: item.color }" class="icon"></span>
  89. <span class="name">{{ item.name }}:</span>
  90. <span class="num">{{ item.num }}</span>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. <div v-if="false" class="dashboard-list">
  97. <!--API调用情况-->
  98. <div class="tu-api box-public-shadow flex1">
  99. <div class="tu-api-content h100 flex">
  100. <div class="tu-api-content-left flex1 relative">
  101. <dateType @getTypeData="checkApiType" />
  102. <commonChartsLine :option="apiOption" id="tu-api-content" />
  103. </div>
  104. <div class="tu-api-content-right">
  105. <commonChartsNum :arrs="apiTeams" />
  106. </div>
  107. </div>
  108. </div>
  109. <!--系统运行异常情况-->
  110. <div class="tu-system box-public-shadow l22 flex1">
  111. <div class="tu-system-content h100 flex">
  112. <div class="tu-system-content-left flex1 relative">
  113. <dateType @getTypeData="checkSysType" />
  114. <commonChartsLine :option="systemOption" id="tu-system-content" />
  115. </div>
  116. <div class="tu-system-content-right">
  117. <commonChartsNum :arrs="systemTeams" />
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. </div>
  123. </template>
  124. <script>
  125. import commonChartsPie from "@/layout/components/Echarts/commonChartsPie.vue";
  126. import commonChartsBar from "@/layout/components/Echarts/commonChartsBar.vue";
  127. import commonChartsLine from "@/layout/components/Echarts/commonChartsLine.vue";
  128. import commonProgress from "@/layout/components/Echarts/commonProgress.vue";
  129. import commonChartsNum from "@/layout/components/EchartsNum/index.vue";
  130. import dateType from "@/layout/components/dateType/index.vue";
  131. import {
  132. GetUserAna,
  133. GetOfficerAna,
  134. GetRoleAna,
  135. GetAuthAna,
  136. GetStatus,
  137. } from "@/api/apiHome";
  138. import { mapGetters } from "vuex";
  139. export default {
  140. name: "Analysis",
  141. components: {
  142. commonChartsPie,
  143. commonChartsBar,
  144. commonChartsNum,
  145. commonChartsLine,
  146. commonProgress,
  147. dateType,
  148. },
  149. data () {
  150. return {
  151. OpenRole: 1,
  152. // 账号信息分析饼图数据
  153. accountOption: {
  154. color: ["#94C6E0", "#F4C23A", "#8969BE", "#E752A3"],
  155. legend: {
  156. show: false,
  157. },
  158. title: {
  159. text: "账号信息分析",
  160. },
  161. series: [
  162. {
  163. top: 43,
  164. name: "账号",
  165. type: "pie",
  166. radius: ["30%", "50%"],
  167. label: {
  168. position: "inner",
  169. fontSize: 14,
  170. show: false,
  171. },
  172. hoverAnimation: false,
  173. data: [
  174. { value: 0, name: "账号数" },
  175. { value: 0, name: `${this.accountGroupType}数` },
  176. ],
  177. },
  178. {
  179. top: 43,
  180. name: "账号",
  181. type: "pie",
  182. radius: ["60%", "100%"],
  183. label: {
  184. position: "inner",
  185. fontSize: 14,
  186. show: false,
  187. },
  188. hoverAnimation: false,
  189. data: [
  190. { value: 0, name: "日活跃度" },
  191. { value: 0, name: "月活跃度" },
  192. ],
  193. },
  194. ],
  195. },
  196. //账号信息分析切换
  197. tuArrs: [
  198. {
  199. name: "账号",
  200. value: 1,
  201. },
  202. {
  203. name: "职员",
  204. value: 2,
  205. },
  206. ],
  207. // 账号信息分析数字
  208. accountTeamsOne: [
  209. {
  210. number: 0,
  211. name: "账号数",
  212. color: "#94C6E0",
  213. key: "userCount",
  214. ana: "officeCount",
  215. },
  216. {
  217. number: 0,
  218. name: "账号分组",
  219. color: "#F4C23A",
  220. key: "groupCount",
  221. ana: "groupCount",
  222. },
  223. {
  224. number: 0,
  225. name: "日活跃度",
  226. color: "#8969BE",
  227. key: "dayAct",
  228. ana: "dayAct",
  229. },
  230. {
  231. number: 0,
  232. name: "月活跃度",
  233. color: "#E752A3",
  234. key: "monthAct",
  235. ana: "monthAct",
  236. },
  237. ],
  238. // 权限类型分析柱状图数据
  239. towerOption: {
  240. title: {
  241. text: "权限概览",
  242. },
  243. tooltip: {
  244. trigger: "axis",
  245. axisPointer: {
  246. // Use axis to trigger tooltip
  247. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  248. },
  249. },
  250. legend: {
  251. data: ["前端权限", "API权限", "数据权限"],
  252. itemWidth: 12,
  253. itemHeight: 12,
  254. itemGap: 24,
  255. right: 0,
  256. textStyle: {
  257. color: "#303133",
  258. fontSize: 14,
  259. fontWeight: "bold",
  260. },
  261. },
  262. xAxis: {
  263. data: [],
  264. axisLabel: {
  265. formatter: function (val) {
  266. const str = val.split("");
  267. if (str.length <= 3) {
  268. return str.join("");
  269. } else {
  270. for (let i = 0; i < str.length; i++) {
  271. if (i % 3 === 0 && i !== 0) {
  272. str.splice(i, 0, "\n");
  273. }
  274. }
  275. return str.join("");
  276. }
  277. },
  278. },
  279. },
  280. color: ["#7569BE", "#F4C23A", "#E752A3"],
  281. series: [
  282. {
  283. name: "前端权限",
  284. type: "bar",
  285. stack: "total",
  286. label: {
  287. show: false,
  288. },
  289. data: [],
  290. },
  291. {
  292. name: "API权限",
  293. type: "bar",
  294. stack: "total",
  295. label: {
  296. show: false,
  297. },
  298. data: [],
  299. },
  300. {
  301. name: "数据权限",
  302. type: "bar",
  303. stack: "total",
  304. label: {
  305. show: false,
  306. },
  307. data: [],
  308. },
  309. ],
  310. },
  311. // 系统运行异常情况折线图数据
  312. systemOption: {
  313. title: {
  314. text: "系统运行异常情况",
  315. },
  316. color: ["#EC3535", "#FA9F63", "#C462A7"],
  317. xAxis: {
  318. data: ["1月", "2月", "3月", "4月", "5月", "6月"],
  319. },
  320. series: [
  321. {
  322. name: "Email",
  323. type: "line",
  324. stack: "Total",
  325. showSymbol: false,
  326. data: [120, 132, 101, 134, 90, 230, 210],
  327. },
  328. {
  329. name: "Union",
  330. type: "line",
  331. stack: "Total",
  332. showSymbol: false,
  333. data: [20, 32, 1, 34, 9, 23, 21],
  334. },
  335. {
  336. name: "Video",
  337. type: "line",
  338. stack: "Total",
  339. showSymbol: false,
  340. data: [120, 132, 101, 134, 90, 230, 210],
  341. },
  342. ],
  343. },
  344. // 系统运行异常情况数字
  345. systemTeams: [
  346. {
  347. number: null,
  348. txt: "高危异常",
  349. color: "#EC3535",
  350. },
  351. {
  352. number: null,
  353. txt: "中危异常",
  354. color: "#C462A7",
  355. },
  356. {
  357. number: null,
  358. txt: "低危异常",
  359. color: "#FA9F63",
  360. },
  361. ],
  362. // API调用情况折线图数据
  363. apiOption: {
  364. title: {
  365. text: "API调用情况",
  366. },
  367. color: [
  368. "#30A3D8",
  369. "#F25555",
  370. "#F4C23A",
  371. "#E752A3",
  372. "#8969BE",
  373. "#85EAC8",
  374. ],
  375. xAxis: {
  376. data: ["1月", "2月", "3月", "4月", "5月", "6月"],
  377. },
  378. series: [
  379. {
  380. name: "企业微信",
  381. type: "line",
  382. stack: "Total",
  383. showSymbol: false,
  384. data: [120, 132, 101, 134, 90, 230, 210],
  385. },
  386. {
  387. name: "OA系统",
  388. type: "line",
  389. stack: "Total",
  390. showSymbol: false,
  391. data: [20, 32, 1, 34, 9, 23, 21],
  392. },
  393. {
  394. name: "项目建设",
  395. type: "line",
  396. stack: "Total",
  397. showSymbol: false,
  398. data: [120, 132, 101, 134, 90, 230, 210],
  399. },
  400. {
  401. name: "勘察设计",
  402. type: "line",
  403. stack: "Total",
  404. showSymbol: false,
  405. data: [120, 132, 101, 134, 90, 230, 210],
  406. },
  407. {
  408. name: "4A平台",
  409. type: "line",
  410. stack: "Total",
  411. showSymbol: false,
  412. data: [20, 32, 1, 34, 9, 23, 21],
  413. },
  414. {
  415. name: "智慧工地",
  416. type: "line",
  417. stack: "Total",
  418. showSymbol: false,
  419. data: [120, 132, 101, 134, 90, 230, 210],
  420. },
  421. ],
  422. },
  423. // API调用情况数字
  424. apiTeams: [
  425. {
  426. number: null,
  427. txt: "企业微信",
  428. color: "#30A3D8",
  429. },
  430. {
  431. number: null,
  432. txt: "OA系统",
  433. color: "#F25555",
  434. },
  435. {
  436. number: null,
  437. txt: "项目建设",
  438. color: "#F4C23A",
  439. },
  440. {
  441. number: null,
  442. txt: "勘察建设",
  443. color: "#E752A3",
  444. },
  445. {
  446. number: null,
  447. txt: "4A平台",
  448. color: "#8969BE",
  449. },
  450. {
  451. number: null,
  452. txt: "智慧工地",
  453. color: "#85EAC8",
  454. },
  455. ],
  456. // 登录情况数据
  457. loginOption: {
  458. title: {
  459. text: "登录情况",
  460. },
  461. color: ["#8969BE", "#F4C23A", "#E752A3"],
  462. series: [
  463. {
  464. name: "登录情况",
  465. radius: ["40%", "100%"],
  466. data: [
  467. { value: 2780, name: "正常登录", key: "normalLogin" },
  468. { value: 735, name: "异常登录", key: "abnormalLogin" },
  469. { value: 165, name: "登录失败", key: "nosystemLogin" },
  470. ],
  471. },
  472. ],
  473. },
  474. //角色概览
  475. userOption: {
  476. title: {
  477. text: "角色概览",
  478. },
  479. color: ["#8969BE", "#F4C23A", "#E752A3"],
  480. series: [
  481. {
  482. name: "角色概览",
  483. top: 43,
  484. radius: ["40%", "100%"],
  485. data: [
  486. { value: 1048, key: "roleCount", name: "角色总数" },
  487. { value: 735, key: "defRoleCunt", name: "互斥角色数" },
  488. { value: 735, key: "unuseRole", name: "未使用角色数" },
  489. ],
  490. },
  491. ],
  492. },
  493. // 登录情况数字
  494. userTeams: [
  495. {
  496. number: 2780,
  497. name: "角色总数",
  498. color: "#8969BE",
  499. key: "roleCount",
  500. },
  501. {
  502. number: 2136,
  503. name: "互斥角色数",
  504. color: "#F4C23A",
  505. key: "defRoleCunt",
  506. },
  507. {
  508. number: 1355,
  509. name: "未使用角色数",
  510. color: "#E752A3",
  511. key: "unuseRole",
  512. },
  513. ],
  514. // 登录情况数字
  515. loginTeams: [
  516. {
  517. number: 2780,
  518. name: "正常登录",
  519. color: "#8969BE",
  520. key: "normalLogin",
  521. },
  522. {
  523. number: 735,
  524. name: "异常登录",
  525. color: "#F4C23A",
  526. key: "abnormalLogin",
  527. },
  528. {
  529. number: 165,
  530. name: "非系统异常",
  531. color: "#E752A3",
  532. key: "nosystemLogin",
  533. },
  534. ],
  535. // 授权情况数据
  536. authorizeOption: {
  537. title: {
  538. text: "授权情况",
  539. },
  540. // color: ["#8969BE", "#94C6E0", "#85EAC8", "#F4C23A", "#E752A3"],
  541. color: ["#94C6E0", "#85EAC8", "#E752A3"],
  542. series: [
  543. {
  544. name: "授权情况",
  545. radius: ["40%", "100%"],
  546. data: [
  547. // { value: 1276, name: "账号授权", key: "accountAuthorization" },
  548. { value: 126, name: "分组授权", key: "groupAuthorization" },
  549. { value: 1236, name: "职员授权", key: "officerAuthorization" },
  550. // { value: 12736, name: "组织授权", key: "organAuthorization" },
  551. { value: 127, name: "角色授权", key: "roleAuthorization" },
  552. ],
  553. },
  554. ],
  555. },
  556. // 授权情况数字
  557. authorizeArr: [
  558. // {
  559. // color: "#8969BE",
  560. // name: "账号授权",
  561. // num: "1276",
  562. // key: "accountAuthorization",
  563. // },
  564. {
  565. color: "#94C6E0",
  566. name: "分组授权",
  567. num: "126",
  568. key: "groupAuthorization",
  569. },
  570. {
  571. color: "#85EAC8",
  572. name: "职员授权",
  573. num: "1236",
  574. key: "officerAuthorization",
  575. },
  576. // {
  577. // color: "#F4C23A",
  578. // name: "组织授权",
  579. // num: "12736",
  580. // key: "organAuthorization",
  581. // },
  582. {
  583. color: "#E752A3",
  584. name: "角色授权",
  585. num: "127",
  586. key: "roleAuthorization",
  587. },
  588. ],
  589. // 行为情况数据
  590. behaviorOption: {
  591. title: {
  592. text: "行为情况",
  593. },
  594. color: [
  595. "#8969BE",
  596. "#F25555",
  597. "#F4C23A",
  598. "#E752A3",
  599. "#94C6E0",
  600. "#85EAC8",
  601. ],
  602. series: [
  603. {
  604. name: "行为情况",
  605. radius: ["40%", "100%"],
  606. data: [
  607. { value: 1275, name: "4A平台", key: "sys4a" },
  608. { value: 2210, name: "企业微信", key: "sysWechat" },
  609. { value: 2210, name: "OA系统", key: "sysOA" },
  610. {
  611. value: 2220,
  612. name: "项目管理",
  613. key: "sysProjectManagementPlatform",
  614. },
  615. {
  616. value: 2230,
  617. name: "勘察平台",
  618. key: "sysSurveyAndDesignManagementPlatform",
  619. },
  620. {
  621. value: 2250,
  622. name: "智慧工程",
  623. key: "sysSmartConstructionSite",
  624. },
  625. ],
  626. },
  627. ],
  628. },
  629. // 授权情况数字
  630. behaviorArr: [
  631. {
  632. color: "#8969BE",
  633. name: "4A平台",
  634. num: "1275",
  635. key: "sys4a",
  636. },
  637. {
  638. color: "#94C6E0",
  639. name: "企业微信",
  640. num: "2210",
  641. key: "sysWechat",
  642. },
  643. {
  644. color: "#F25555",
  645. name: "OA系统",
  646. num: "2210",
  647. key: "sysOA",
  648. },
  649. {
  650. color: "#F4C23A",
  651. name: "项目管理",
  652. num: "2220",
  653. key: "sysProjectManagementPlatform",
  654. },
  655. {
  656. color: "#85EAC8",
  657. name: "智慧工地",
  658. num: "2250",
  659. key: "sysSmartConstructionSite",
  660. },
  661. {
  662. color: "#46A3FF",
  663. name: "电子签章",
  664. num: "0",
  665. key: "sysElectronicSignature",
  666. },
  667. {
  668. color: "#E752A3",
  669. name: "勘察平台",
  670. num: "2230",
  671. key: "sysSurveyAndDesignManagementPlatform",
  672. },
  673. {
  674. color: "#CA8EFF",
  675. name: "BIM平台",
  676. num: "0",
  677. key: "sysBimPlatform",
  678. },
  679. ],
  680. // 数据概况
  681. unusualOption: {
  682. title: {
  683. text: "数据概况",
  684. },
  685. color: ["#F56C6C", "#F4C23A", "#E752A3", "#8969BE"],
  686. series: [
  687. {
  688. name: "数据",
  689. type: "pie",
  690. radius: ["30%", "50%"],
  691. label: {
  692. position: "inner",
  693. fontSize: 14,
  694. show: false,
  695. },
  696. hoverAnimation: false,
  697. data: [
  698. { value: 1275, name: "下发有效" },
  699. { value: 220, name: "接收有效" },
  700. ],
  701. },
  702. {
  703. name: "数据",
  704. type: "pie",
  705. radius: ["60%", "100%"],
  706. label: {
  707. position: "inner",
  708. fontSize: 14,
  709. show: false,
  710. },
  711. hoverAnimation: false,
  712. data: [
  713. { value: 220, name: "下发无效" },
  714. { value: 220, name: "接收无效" },
  715. ],
  716. },
  717. ],
  718. },
  719. // 数据概况数字
  720. unusualTeams: [
  721. {
  722. number: 1275,
  723. name: "下发有效",
  724. color: "#8969BE",
  725. key: "pushSuccess",
  726. },
  727. {
  728. number: 220,
  729. name: "下发无效",
  730. color: "#E752A3",
  731. key: "pushFailed",
  732. },
  733. {
  734. number: 220,
  735. name: "接收有效",
  736. color: "#F4C23A",
  737. key: "receiveSuccess",
  738. },
  739. {
  740. number: 220,
  741. name: "接收无效",
  742. color: "#F56C6C",
  743. key: "receiveFailed",
  744. },
  745. ],
  746. // 权限概览切换
  747. barArrs: [
  748. {
  749. name: "应用分析",
  750. value: 1,
  751. },
  752. {
  753. name: "权限分析",
  754. value: 2,
  755. },
  756. ],
  757. };
  758. },
  759. computed: {
  760. ...mapGetters(["systemSet"]),
  761. },
  762. created () {
  763. const { OpenRole } =
  764. typeof this.systemSet === "string"
  765. ? JSON.parse(this.systemSet)
  766. : this.systemSet; //1是请求角色 0是请求用户
  767. this.OpenRole = OpenRole;
  768. this.pageInit();
  769. },
  770. methods: {
  771. //查询日志
  772. handleLog (item) {
  773. this.$emit('sendLog', item);
  774. },
  775. //账号信息切换
  776. checkAccountType (params) {
  777. if (params.value === 1 && params.name === "账号") {
  778. this.accountOption.title.text = "账号信息分析";
  779. this.accountTeamsOne[0].txt = "账号数";
  780. this.accountTeamsOne[1].txt = "账号分组";
  781. this.getUserAna();
  782. } else {
  783. this.accountOption.title.text = "职员信息分析";
  784. this.accountTeamsOne[0].txt = "职员数";
  785. this.accountTeamsOne[1].txt = `组织及${this.accountGroupType}数`;
  786. this.getOfficerAna();
  787. }
  788. },
  789. // 系统运行异常情况-日期选择
  790. checkSysType (params) {
  791. //console.log(`系统运行异常情况---->name:${params.name},value:${params.value}`)
  792. },
  793. // API调用情况-日期选择
  794. checkApiType (params) {
  795. //console.log(`API调用情况---->name:${params.name},value:${params.value}`)
  796. },
  797. getChartData (params) {
  798. this.$emit('sendLog', params.data);
  799. },
  800. //---------------获取数据方法------------------
  801. //获取账号信息分析
  802. async getUserAna () {
  803. try {
  804. const result = await GetUserAna();
  805. if (result.code === 0) {
  806. const res = result.returnData;
  807. const keys = Object.entries(res);
  808. this.accountOption.series[0].name = "账号";
  809. this.accountOption.series[1].name = "账号";
  810. this.accountTeamsOne.forEach((item) => {
  811. keys.filter((p) => {
  812. if (item.key === p[0]) {
  813. item.number = p[1];
  814. }
  815. });
  816. });
  817. this.accountOption.series[0].data[0].value = res.userCount;
  818. this.accountOption.series[0].data[1].value = res.groupCount;
  819. this.accountOption.series[1].data[0].value = res.dayAct;
  820. this.accountOption.series[1].data[1].value = res.monthAct;
  821. } else {
  822. this.$message.error(result.message);
  823. }
  824. } catch (error) {
  825. console.log("网络错误:", error);
  826. }
  827. },
  828. //获取职员信息分析
  829. async getOfficerAna () {
  830. try {
  831. const result = await GetOfficerAna();
  832. if (result.code === 0) {
  833. const res = result.returnData;
  834. const keys = Object.entries(res);
  835. this.accountOption.series[0].name = "职员";
  836. this.accountOption.series[1].name = "职员";
  837. this.accountTeamsOne.forEach((item) => {
  838. keys.filter((p) => {
  839. if (item.ana === p[0]) {
  840. item.number = p[1];
  841. }
  842. });
  843. });
  844. this.accountOption.series[0].data[0].value = res.officeCount;
  845. this.accountOption.series[0].data[1].value = res.groupCount;
  846. this.accountOption.series[1].data[0].value = res.dayAct;
  847. this.accountOption.series[1].data[1].value = res.monthAct;
  848. } else {
  849. this.$message.error(result.message);
  850. }
  851. } catch (error) {
  852. console.log("网络错误:", error);
  853. }
  854. },
  855. //获取角色信息分析
  856. async getRoleAna () {
  857. try {
  858. const result = await GetRoleAna();
  859. if (result.code === 0) {
  860. const res = result.returnData;
  861. const keys = Object.entries(res);
  862. this.userTeams.forEach((item) => {
  863. keys.filter((p) => {
  864. if (item.key === p[0]) {
  865. item.number = p[1];
  866. }
  867. });
  868. });
  869. this.userOption.series[0].data.forEach((item) => {
  870. keys.filter((p) => {
  871. if (item.key === p[0]) {
  872. item.value = p[1];
  873. }
  874. });
  875. });
  876. } else {
  877. this.$message.error(result.message);
  878. }
  879. } catch (error) {
  880. console.log("网络错误:", error);
  881. }
  882. },
  883. //获取权限信息分析
  884. async getAuthAna () {
  885. try {
  886. const result = await GetAuthAna();
  887. if (result.code === 0) {
  888. const res = result.returnData;
  889. const [appName, frontAuth, apiAuth, dataAuth] = [[], [], [], []];
  890. for (const p of res) {
  891. appName.push(p.appName);
  892. frontAuth.push(p.frontAuth);
  893. apiAuth.push(p.apiAuth);
  894. dataAuth.push(p.dataAuth);
  895. }
  896. this.towerOption.xAxis.data = appName;
  897. this.towerOption.series[0].data = frontAuth;
  898. this.towerOption.series[1].data = apiAuth;
  899. this.towerOption.series[2].data = dataAuth;
  900. } else {
  901. this.$message.error(result.message);
  902. }
  903. } catch (error) {
  904. console.log("网络错误:", error);
  905. }
  906. },
  907. async getStatus () {
  908. try {
  909. const result = await GetStatus();
  910. if (result.code === 0) {
  911. const res = result.returnData;
  912. const keys = Object.entries(res);
  913. const { pushSuccess, pushFailed, receiveSuccess, receiveFailed } =
  914. res;
  915. // 数据概况
  916. this.unusualOption.series[0].data[0].value = pushSuccess;
  917. this.unusualOption.series[0].data[1].value = pushFailed;
  918. this.unusualOption.series[1].data[0].value = receiveSuccess;
  919. this.unusualOption.series[1].data[1].value = receiveFailed;
  920. this.unusualTeams.forEach((item) => {
  921. keys.filter((p) => {
  922. if (item.key === p[0]) {
  923. item.number = p[1];
  924. }
  925. });
  926. });
  927. //登录情况
  928. this.loginTeams.forEach((item) => {
  929. keys.filter((p) => {
  930. if (item.key === p[0]) {
  931. item.number = p[1];
  932. }
  933. });
  934. });
  935. this.loginOption.series[0].data.forEach((item) => {
  936. keys.filter((p) => {
  937. if (item.key === p[0]) {
  938. item.value = p[1];
  939. }
  940. });
  941. });
  942. //授权情况
  943. this.authorizeArr.forEach((item) => {
  944. keys.filter((p) => {
  945. if (item.key === p[0]) {
  946. item.num = p[1];
  947. }
  948. });
  949. });
  950. this.authorizeOption.series[0].data.forEach((item) => {
  951. keys.filter((p) => {
  952. if (item.key === p[0]) {
  953. item.value = p[1];
  954. }
  955. });
  956. });
  957. //行为情况
  958. this.behaviorArr.forEach((item) => {
  959. keys.filter((p) => {
  960. if (item.key === p[0]) {
  961. item.num = p[1];
  962. }
  963. });
  964. });
  965. this.behaviorOption.series[0].data.forEach((item) => {
  966. keys.filter((p) => {
  967. if (item.key === p[0]) {
  968. item.value = p[1];
  969. }
  970. });
  971. });
  972. } else {
  973. this.$message.error(result.message);
  974. }
  975. } catch (error) {
  976. console.log("网络错误:", error);
  977. }
  978. },
  979. pageInit () {
  980. this.getUserAna();
  981. this.getRoleAna();
  982. this.getAuthAna();
  983. this.getStatus();
  984. },
  985. },
  986. };
  987. </script>
  988. <style lang="scss" scoped>
  989. .dashboard-analysis {
  990. // height: calc(100vh - 395px);
  991. // overflow-x: hidden;
  992. // overflow-y: scroll;
  993. .w160 {
  994. width: 160px;
  995. }
  996. .titleMsg {
  997. position: absolute;
  998. left: 0;
  999. top: 0;
  1000. font-size: 24px;
  1001. font-weight: bold;
  1002. }
  1003. .progressScale {
  1004. top: 25px;
  1005. transform: scale(1.2);
  1006. }
  1007. .dashboard-list {
  1008. display: flex;
  1009. margin-bottom: 24px;
  1010. .tu-account {
  1011. .tu-account-content-left {
  1012. width: 212px;
  1013. }
  1014. .tu-account-content-right {
  1015. flex: 1;
  1016. margin-left: 50px;
  1017. width: 150px;
  1018. .account-team {
  1019. margin-top: 36px;
  1020. .account-team-list {
  1021. font-size: 14px;
  1022. font-family: Microsoft YaHei;
  1023. font-weight: 400;
  1024. color: #909399;
  1025. margin-top: 18px;
  1026. }
  1027. }
  1028. }
  1029. }
  1030. .tu-user {
  1031. .tu-user-content-left {
  1032. width: 212px;
  1033. margin-right: 50px;
  1034. }
  1035. }
  1036. .tu-sync {
  1037. height: 280px;
  1038. }
  1039. .tu-system {
  1040. height: 392px;
  1041. }
  1042. .behavior-list {
  1043. margin-top: 16px;
  1044. cursor: pointer;
  1045. .icon {
  1046. display: inline-block;
  1047. width: 3px;
  1048. height: 12px;
  1049. background: #8969be;
  1050. margin-right: 9px;
  1051. }
  1052. .name {
  1053. font-size: 14px;
  1054. font-family: Microsoft YaHei;
  1055. font-weight: bold;
  1056. color: #303133;
  1057. }
  1058. .num {
  1059. font-size: 16px;
  1060. font-family: DIN;
  1061. font-weight: 500;
  1062. color: #909399;
  1063. }
  1064. &:first-child {
  1065. margin-top: 59px;
  1066. }
  1067. }
  1068. .tu-behavior {
  1069. .behavior-list {
  1070. &:first-child {
  1071. margin-top: 0px;
  1072. }
  1073. }
  1074. }
  1075. }
  1076. }
  1077. </style>