PassRate.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  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_arc"></div>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. import { screenSize } from '@/assets/js/utils';
  24. import { getPassRate } from "@/api/index";
  25. import { timeFormateWeek } from "@/utils/timeFormate";
  26. export default {
  27. name: "scrollArc",
  28. data() {
  29. return {
  30. name: '',
  31. option: null,
  32. number: 0, // 播放所在下标
  33. timer: null,
  34. xData: ['星期一','星期二','星期三','星期四','星期五','星期六','星期日'],
  35. data: [1,1,1,1,1,1],
  36. allData: [],
  37. time: '',
  38. timelineData: []
  39. }
  40. },
  41. watch: {
  42. name(newVal, oldVal){
  43. if (newVal && newVal !== oldVal) {
  44. this.loadData(newVal);
  45. this.$nextTick(() => {
  46. this.getEchart();
  47. })
  48. }
  49. }
  50. },
  51. async mounted() {
  52. await this.getData();
  53. screenSize(this.$refs.editor);
  54. this.time = timeFormateWeek(new Date());
  55. },
  56. methods: {
  57. /** 获取列表数据 */
  58. async getData() {
  59. this.timelineData = [];
  60. await getPassRate().then(res => {
  61. if (res.data) {
  62. Object.keys(res.data).forEach((key) => {
  63. this.allData = res.data;
  64. // this.timelineData.push(key)
  65. })
  66. // this.name = this.timelineData[0];
  67. this.name = '智能线';
  68. }
  69. }).catch();
  70. },
  71. /** 数据加载处理 */
  72. loadData(val) {
  73. console.log(this.allData)
  74. let list = [];
  75. this.xData.forEach((item) => {
  76. Object.keys(this.allData).forEach((key) => {
  77. if (item === key) {
  78. console.log(key)
  79. list.push(this.allData[key]['产量'] !== 0 ? Number(this.allData[key]['合格率']?.split('%')[0]) : null)
  80. }
  81. })
  82. })
  83. this.data = list;
  84. },
  85. getEchart() {
  86. let myChart = echarts.init(document.getElementById('chart_arc'));
  87. this.option = {
  88. // color: ['#5d83ff'],
  89. timeline: {
  90. axisType: 'category',
  91. autoPlay: false,
  92. playInterval: 60000,
  93. data: this.timelineData,
  94. left: 180,
  95. right: 180,
  96. bottom: -100,
  97. lineStyle: {
  98. show: true,
  99. color: '#179bf1'
  100. },
  101. label: {
  102. show: true,
  103. color: '#fff',
  104. fontSize: 16
  105. },
  106. checkpointStyle: {
  107. show: true,
  108. color: '#ff9232',
  109. symbolSize: 0,
  110. borderColor: '#ff923282',
  111. borderWidth: 5,
  112. },
  113. controlStyle: {
  114. show: false,
  115. }
  116. },
  117. color: ['#ffeb7b'],
  118. grid: {
  119. top: 160,
  120. left: 100,
  121. right: 100,
  122. bottom: 40,
  123. containLabel: true //轴上的数值
  124. },
  125. xAxis: {
  126. type: 'category',
  127. data: this.xData,
  128. boundaryGap: true,
  129. axisTick: {
  130. show: false
  131. },
  132. axisLabel: {
  133. margin: 40,
  134. fontSize: 36,
  135. formatter: '{value}'
  136. },
  137. axisLine: {
  138. show: false,
  139. lineStyle: {
  140. color: '#E2E5FF',
  141. }
  142. },
  143. },
  144. yAxis: {
  145. type: 'value',
  146. max: 100,
  147. min: 60,
  148. axisLabel: {
  149. margin: 40,
  150. fontSize: 36,
  151. formatter: '{value} %'
  152. },
  153. axisTick: {
  154. show: true
  155. },
  156. axisLine: {
  157. show: false,
  158. lineStyle: {
  159. color: '#E2E5FF'
  160. }
  161. },
  162. },
  163. series: [{
  164. name: '合格率',
  165. type: 'line',
  166. data: this.data,
  167. symbolSize: 16,
  168. lineStyle: {
  169. width: 8
  170. },
  171. itemStyle: {
  172. normal: {
  173. label: {
  174. show: true,
  175. color: '#fff',
  176. fontSize: 30,
  177. position: 'top',
  178. formatter: function (params) {
  179. return params.value + '%'
  180. }
  181. }
  182. }
  183. },
  184. emphasis: {
  185. itemStyle: {
  186. color: '#5d83ff',
  187. borderColor: '#fff',
  188. borderWidth: 2,
  189. opacity: 1
  190. },
  191. },
  192. smooth: true,
  193. }]
  194. };
  195. // let _this = this;
  196. // myChart.on('timelinechanged', function (params) {
  197. // _this.name = _this.timelineData[params.currentIndex];
  198. // })
  199. myChart.setOption(this.option, true);
  200. window.addEventListener('resize', () => {
  201. myChart.resize();
  202. });
  203. this.timer = setInterval(() => {
  204. this.getData();
  205. }, 1800000)
  206. }
  207. },
  208. beforeDestroy() {
  209. clearInterval(this.timer);
  210. }
  211. };
  212. </script>
  213. <style lang="scss" scoped>
  214. .sn-container {
  215. left: 3%;
  216. top: 4%;
  217. width: 94%;
  218. height: 91%;
  219. .chartsdom {
  220. width: 100%;
  221. height: 95%;
  222. }
  223. .sn-title {
  224. position: absolute;
  225. height: 50px;
  226. font-size: 50px;
  227. color: #7becff;
  228. line-height: 50px;
  229. padding: 0 0 0 30px;
  230. left: 26px;
  231. right: 10px;
  232. top: 16px;
  233. }
  234. .sn-body {
  235. top: 70px;
  236. }
  237. }
  238. .home-container {
  239. position: absolute;
  240. left: 0;
  241. top: 0;
  242. width: 100%;
  243. height: 100%;
  244. overflow: hidden;
  245. .wrap {
  246. transform-origin: 0px 0px 0px;
  247. background: url(../assets/img/bj.jpg) no-repeat;
  248. // background: url(../assets/img/brand/bg.jpg) no-repeat;
  249. background-size: contain;
  250. background-position: 50% 0;
  251. background-color: rgb(0, 0, 0);
  252. min-width: auto;
  253. width: 1920px;
  254. min-height: auto;
  255. height: 1080px;
  256. overflow: hidden;
  257. .top {
  258. position: absolute;
  259. left: 0;
  260. top: 0;
  261. width: 100%;
  262. height: 80px;
  263. background-color: transparent;
  264. background: url(../assets/img/top_nav.png) no-repeat;
  265. background-position: 65% 0;
  266. border: none;
  267. overflow: hidden;
  268. h1 {
  269. font-size: 36px;
  270. color: rgb(216, 255, 255);
  271. text-align: center;
  272. line-height: 70px;
  273. -webkit-text-stroke: 2px #193d8f;
  274. }
  275. }
  276. header {
  277. position: relative;
  278. height: 80px;
  279. background: url(../assets/img/brand/head_bg2.png) no-repeat top center;
  280. // background: url(../assets/img/top_nav.png) no-repeat top center;
  281. background-size: 100% 100%;
  282. h2 {
  283. color: #ffffff;
  284. font-size: 34px;
  285. text-align: center;
  286. line-height: 80px;
  287. letter-spacing: 4px;
  288. -webkit-text-stroke: 2px #193d8f;
  289. }
  290. .weather {
  291. position: absolute;
  292. left: 10px;
  293. top: 10px;
  294. font-size: 14px;
  295. color: rgba(126, 240, 255, .7);
  296. img {
  297. width: 20px;
  298. }
  299. span {
  300. display: inline-block;
  301. }
  302. .tem {
  303. margin: 0 10px 0 .2rem;
  304. }
  305. }
  306. .showTime {
  307. position: absolute;
  308. right: 50px;
  309. top: 40px;
  310. color: rgba(145, 233, 255, 0.801);
  311. display: flex;
  312. .time {
  313. font-size: 26px;
  314. margin-right: 30px;
  315. }
  316. .date {
  317. span {
  318. &:nth-child(1) {
  319. font-size: 18px;
  320. margin-right: 14px;
  321. }
  322. &:nth-child(2) {
  323. font-size: 20px;
  324. }
  325. }
  326. }
  327. }
  328. }
  329. .divider {
  330. position: absolute;
  331. left: 50px;
  332. top: 3253px;
  333. width: 90%;
  334. height: 50px;
  335. width: 300px;
  336. border: none;
  337. background: transparent;
  338. }
  339. }
  340. }
  341. </style>