DailyPerOutput.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. <!--
  2. 描述: 酷屏首页模板
  3. 作者: anni
  4. 日期: 2024-10-30
  5. -->
  6. <template>
  7. <div class="home-container">
  8. <div class="wrap" ref="editor">
  9. <div class="wrap-container sn-container">
  10. <div class="sn-content">
  11. <div class="sn-title">{{ time }} <span style="color:#ff9829">{{ name }}</span> 日人均产出</div>
  12. <div class="sn-body">
  13. <div class="wrap-container">
  14. <div class="chartsdom" id="chart_work"></div>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. <div class="wrap-container sn-container sn-container-bottom">
  20. <div class="sn-content">
  21. <div class="sn-title">{{ time }} <span style="color:#ff9829">{{ name }}</span> 每日工作人数</div>
  22. <div class="sn-body">
  23. <div class="wrap-container">
  24. <div class="chartsdom" id="chart_ptrend"></div>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. </template>
  32. <script>
  33. import { screenSize } from '@/assets/js/utils';
  34. import { getWorkerQty } from "@/api/index";
  35. import { timeFormateMonth } from "@/utils/timeFormate";
  36. export default {
  37. name: "pyramidTrend",
  38. data() {
  39. return {
  40. name: '',
  41. option: null,
  42. dataMap: [],
  43. data: [],
  44. time: '',
  45. timelineData: [],
  46. allData: {}
  47. }
  48. },
  49. watch: {
  50. name(newVal) {
  51. this.loadData(newVal);
  52. }
  53. },
  54. async mounted() {
  55. await this.getData();
  56. screenSize(this.$refs.editor);
  57. this.time = timeFormateMonth(new Date());
  58. this.loadData(this.name);
  59. },
  60. //s
  61. methods: {
  62. /** 获取列表数据 */
  63. async getData() {
  64. this.timelineData = [];
  65. await getWorkerQty().then(res => {
  66. if (res.data) {
  67. Object.keys(res.data).forEach((key) => {
  68. this.allData = res.data;
  69. this.timelineData.push(key)
  70. })
  71. // this.name = this.timelineData[0];
  72. this.name = '智能线';
  73. }
  74. }).catch();
  75. },
  76. /** 数据加载处理 */
  77. loadData(val) {
  78. let arr = [];
  79. this.workData = [];
  80. this.data = [];
  81. this.dataMap = []
  82. Object.keys(this.allData[val]).forEach((key) => {
  83. arr.push({
  84. time: key.split('-')[2],
  85. num: parseInt(this.allData[val][key]['人均产出']),
  86. people: this.allData[val][key]['每日工作人数']
  87. });
  88. })
  89. arr.sort((a, b) => {
  90. return a.time - b.time
  91. })
  92. arr.forEach((item) => {
  93. this.workData.push(item.num);
  94. this.data.push(item.people);
  95. this.dataMap.push(item.time)
  96. })
  97. this.getWorkEchart();
  98. this.getEchart();
  99. },
  100. getWorkEchart() {
  101. let myWorkChart = echarts.init(document.getElementById('chart_work'));
  102. let itemStyle = {
  103. barBorderRadius: [15, 0],
  104. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  105. offset: 0,
  106. color: '#7bff80'
  107. },{
  108. offset: 1,
  109. color: '#7bff80a6'
  110. }])
  111. }
  112. this.option = {
  113. baseOption: {
  114. timeline: {
  115. axisType: 'category',
  116. autoPlay: false,
  117. loop: true,
  118. playInterval: 60000,
  119. data: this.timelineData,
  120. left: 180,
  121. right: 180,
  122. bottom: -100,
  123. lineStyle: {
  124. show: true,
  125. color: '#179bf1'
  126. },
  127. label: {
  128. show: true,
  129. color: '#fff',
  130. fontSize: 16
  131. },
  132. checkpointStyle: {
  133. show: true,
  134. color: '#ff9232',
  135. symbolSize: 0,
  136. borderColor: '#ff923282',
  137. borderWidth: 5,
  138. },
  139. controlStyle: {
  140. show: false,
  141. }
  142. },
  143. calculable: true,
  144. grid: {
  145. top: '20%',
  146. bottom: '10%'
  147. },
  148. xAxis: [{
  149. type: 'category',
  150. name: '日',
  151. nameTextStyle: {
  152. fontSize: 24
  153. },
  154. axisLabel: {
  155. margin: 10,
  156. interval: 0,
  157. fontSize: 16,
  158. color: '#E2E5FF'
  159. },
  160. data: this.dataMap,
  161. splitLine: {
  162. show: false
  163. },
  164. axisTick: {
  165. show: true
  166. },
  167. axisLine: {
  168. show: true,
  169. lineStyle: {
  170. color: '#E2E5FF',
  171. }
  172. },
  173. }],
  174. yAxis: [{
  175. type: 'value',
  176. name: '双',
  177. nameTextStyle: {
  178. fontSize: 30
  179. },
  180. axisLabel: {
  181. margin: 20,
  182. interval: 0,
  183. fontSize: 24,
  184. color: '#E2E5FF'
  185. },
  186. splitLine: {
  187. show: false
  188. },
  189. axisTick: {
  190. show: true
  191. },
  192. axisLine: {
  193. show: true,
  194. lineStyle: {
  195. color: '#E2E5FF'
  196. }
  197. }
  198. }],
  199. series: [{
  200. type: 'bar',
  201. barWidth: 20,
  202. legendHoverLink: true,
  203. label: {
  204. show: true,
  205. position: 'top',
  206. color: '#fff',
  207. fontSize: 16
  208. },
  209. }]
  210. },
  211. options: [{
  212. series: [{
  213. data: this.workData,
  214. itemStyle: itemStyle
  215. }]
  216. }]
  217. }
  218. // let _this = this;
  219. // myWorkChart.on('timelinechanged', function (params) {
  220. // _this.name = _this.timelineData[params.currentIndex];
  221. // })
  222. myWorkChart.setOption(this.option, true);
  223. window.addEventListener('resize', () => {
  224. myWorkChart.resize();
  225. });
  226. this.timer = setInterval(() => {
  227. this.getData();
  228. }, 1800000)
  229. },
  230. getEchart() {
  231. let myChart = echarts.init(document.getElementById('chart_ptrend'));
  232. let itemStyle = {
  233. barBorderRadius: [15, 0],
  234. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  235. offset: 0,
  236. color: '#ff4343',
  237. // color: '#7bff80',
  238. // color: '#ff95e7'
  239. },{
  240. offset: 1,
  241. color: '#ff7b7bad'
  242. // color: '#7bff80a6',
  243. // color: '#ff95e7bd'
  244. }])
  245. }
  246. this.option = {
  247. baseOption: {
  248. timeline: {
  249. axisType: 'category',
  250. autoPlay: false,
  251. playInterval: 60000,
  252. // data: ['第一周', '第二周', '第三周', '第四周'],
  253. left: 80,
  254. right: 80,
  255. bottom: 10,
  256. lineStyle: {
  257. show:false,
  258. color: '#179bf1'
  259. },
  260. label: {
  261. show: true,
  262. color: '#fff',
  263. fontSize: '24'
  264. },
  265. checkpointStyle: {
  266. color: '#ff9232',
  267. symbolSize: 10,
  268. borderColor: '#ff923282',
  269. borderWidth: 5,
  270. },
  271. controlStyle: {
  272. show: false,
  273. },
  274. itemStyle: {
  275. borderColor: '#004b85',
  276. borderWidth: 2,
  277. shadowColor: 'rgba(1, 216, 225, 0.5)',
  278. shadowBlur: 20
  279. }
  280. },
  281. calculable: true,
  282. grid: {
  283. top: '20%',
  284. bottom: '10%'
  285. },
  286. xAxis: [{
  287. type: 'category',
  288. name: '日',
  289. nameTextStyle: {
  290. fontSize: 24
  291. },
  292. axisLabel: {
  293. margin: 18,
  294. interval: 0,
  295. fontSize: 16,
  296. color: '#E2E5FF'
  297. },
  298. data: this.dataMap,
  299. splitLine: {
  300. show: false
  301. },
  302. axisTick: {
  303. show: true
  304. },
  305. axisLine: {
  306. show: true,
  307. lineStyle: {
  308. color: '#E2E5FF',
  309. }
  310. },
  311. }],
  312. yAxis: [{
  313. type: 'value',
  314. name: '人',
  315. minInterval: 1,
  316. nameTextStyle: {
  317. fontSize: 30
  318. },
  319. axisLabel: {
  320. margin: 20,
  321. interval: 0,
  322. fontSize: 24,
  323. color: '#E2E5FF'
  324. },
  325. splitLine: {
  326. show: false
  327. },
  328. axisTick: {
  329. show: true
  330. },
  331. axisLine: {
  332. show: true,
  333. lineStyle: {
  334. color: '#E2E5FF'
  335. }
  336. }
  337. }],
  338. series: [{
  339. type: 'bar',
  340. barWidth: 20,
  341. legendHoverLink: true,
  342. label: {
  343. show: true,
  344. position: 'top',
  345. color: '#fff',
  346. fontSize: 20
  347. },
  348. }]
  349. },
  350. options: [{
  351. series: [{
  352. data: this.data,
  353. itemStyle: itemStyle
  354. }]
  355. }]
  356. }
  357. myChart.setOption(this.option, true);
  358. window.addEventListener('resize', () => {
  359. myChart.resize();
  360. });
  361. }
  362. },
  363. beforeDestroy() {
  364. clearInterval(this.timer);
  365. }
  366. };
  367. </script>
  368. <style lang="scss" scoped>
  369. .sn-container {
  370. left: 3%;
  371. top: 4%;
  372. width: 94%;
  373. height: 44%;
  374. .chartsdom {
  375. width: 100%;
  376. height: 90%;
  377. position: absolute;
  378. bottom: 4%;
  379. }
  380. .sn-title {
  381. position: absolute;
  382. height: 50px;
  383. font-size: 40px;
  384. color: #7becff;
  385. line-height: 50px;
  386. padding: 0 0 0 30px;
  387. left: 26px;
  388. right: 10px;
  389. top: 16px;
  390. }
  391. }
  392. .sn-container-bottom {
  393. left: 3%;
  394. top: 52%;
  395. width: 94%;
  396. height: 44%;
  397. .chartsdom {
  398. width: 100%;
  399. height: 90%;
  400. }
  401. }
  402. .home-container {
  403. position: absolute;
  404. left: 0;
  405. top: 0;
  406. width: 100%;
  407. height: 100%;
  408. overflow: hidden;
  409. .wrap {
  410. transform-origin: 0px 0px 0px;
  411. background: url(../assets/img/bj.jpg) no-repeat;
  412. // background: url(../assets/img/brand/bg.jpg) no-repeat;
  413. background-size: contain;
  414. background-position: 50% 0;
  415. background-color: rgb(0, 0, 0);
  416. min-width: auto;
  417. width: 1920px;
  418. min-height: auto;
  419. height: 1080px;
  420. overflow: hidden;
  421. .top {
  422. position: absolute;
  423. left: 0;
  424. top: 0;
  425. width: 100%;
  426. height: 80px;
  427. background-color: transparent;
  428. background: url(../assets/img/top_nav.png) no-repeat;
  429. background-position: 65% 0;
  430. border: none;
  431. overflow: hidden;
  432. h1 {
  433. font-size: 36px;
  434. color: rgb(216, 255, 255);
  435. text-align: center;
  436. line-height: 70px;
  437. -webkit-text-stroke: 2px #193d8f;
  438. }
  439. }
  440. header {
  441. position: relative;
  442. height: 80px;
  443. background: url(../assets/img/brand/head_bg2.png) no-repeat top center;
  444. // background: url(../assets/img/top_nav.png) no-repeat top center;
  445. background-size: 100% 100%;
  446. h2 {
  447. color: #ffffff;
  448. font-size: 34px;
  449. text-align: center;
  450. line-height: 80px;
  451. letter-spacing: 4px;
  452. -webkit-text-stroke: 2px #193d8f;
  453. }
  454. .weather {
  455. position: absolute;
  456. left: 10px;
  457. top: 10px;
  458. font-size: 14px;
  459. color: rgba(126, 240, 255, .7);
  460. img {
  461. width: 20px;
  462. }
  463. span {
  464. display: inline-block;
  465. }
  466. .tem {
  467. margin: 0 10px 0 .2rem;
  468. }
  469. }
  470. .showTime {
  471. position: absolute;
  472. right: 50px;
  473. top: 40px;
  474. color: rgba(145, 233, 255, 0.801);
  475. display: flex;
  476. .time {
  477. font-size: 26px;
  478. margin-right: 30px;
  479. }
  480. .date {
  481. span {
  482. &:nth-child(1) {
  483. font-size: 18px;
  484. margin-right: 14px;
  485. }
  486. &:nth-child(2) {
  487. font-size: 20px;
  488. }
  489. }
  490. }
  491. }
  492. }
  493. .divider {
  494. position: absolute;
  495. left: 50px;
  496. top: 3253px;
  497. width: 90%;
  498. height: 50px;
  499. width: 300px;
  500. border: none;
  501. background: transparent;
  502. }
  503. }
  504. }
  505. </style>