index.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <template>
  2. <!-- v-show="this.randomVal !=100" -->
  3. <div class="loadding" v-show="show">
  4. <div id="fourth"></div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. props:['loaddingShow'],
  10. data() {
  11. return {
  12. option:null,
  13. timer:null,
  14. myChart:null,
  15. randomVal:20,
  16. show:true,
  17. };
  18. },
  19. watch:{
  20. loaddingShow(newVal){
  21. this.randomVal =newVal
  22. this.option.series[0].data[0].value = this.randomVal;//定时更新圆环1数值
  23. this.option.series[0].data[1].value = 100 - this.randomVal;//圆环1无颜色填充区域占比
  24. this.option.series[1].data[0].value = this.randomVal;//定时更新圆环2数值
  25. this.option.series[1].data[1].value = 100 - this.randomVal;//圆环2无颜色填充区域占比
  26. this.myChart.setOption(this.option, true);
  27. setTimeout(() => {
  28. this.show =false
  29. }, 200);
  30. },
  31. randomVal(newVal){
  32. if(newVal ==100){
  33. setTimeout(() => {
  34. this.show =false
  35. }, 200);
  36. }
  37. }
  38. },
  39. mounted() {
  40. this.drawCharts();
  41. },
  42. methods: {
  43. drawCharts() {
  44. this.myChart = this.$echarts.init(document.getElementById("fourth"));
  45. this.option =this.getOption();
  46. this.myChart.setOption(this.option);
  47. this.settInterval();
  48. },
  49. getRandomVal(){
  50. var maxVal = 100;//圆环极大值
  51. var randomVal = (Math.random() * 100).toFixed(2) - 0;
  52. return ((randomVal / maxVal) * 100).toFixed(2);
  53. },
  54. /**
  55. * @author wg
  56. * @protected 设置时间
  57. * @param
  58. */
  59. settInterval(){
  60. let _this= this;
  61. this.timer = setInterval(function () {//定时调用刷新
  62. if(_this.randomVal >=90){
  63. clearInterval(_this.timer)
  64. _this.timer =null;
  65. }
  66. let math = Math.random()
  67. _this.randomVal += math.toFixed(1)*15
  68. _this.option.series[0].data[0].value = _this.randomVal;//定时更新圆环1数值
  69. _this.option.series[0].data[1].value = 100 - _this.randomVal;//圆环1无颜色填充区域占比
  70. _this.option.series[1].data[0].value = _this.randomVal;//定时更新圆环2数值
  71. _this.option.series[1].data[1].value = 100 - _this.randomVal;//圆环2无颜色填充区域占比
  72. _this.myChart.setOption(_this.option, true);
  73. },1000);
  74. },
  75. /**
  76. * @author wg
  77. * @protected 得到echart参数
  78. * @param
  79. */
  80. getOption(){
  81. let _this = this;
  82. var maxVal = 100;//圆环极大值
  83. var textStyle={
  84. "fontSize": 16,
  85. "fontWeight": "bold",
  86. "fontFamily":'华文细黑'
  87. }
  88. var itemStyle={
  89. "normal": {
  90. "label": {
  91. "show": false
  92. },
  93. "labelLine": {
  94. "show": false
  95. },
  96. "color": 'rgba(0,0,0,0)',
  97. "borderColor": 'rgba(0,0,0,0)',
  98. "borderWidth": 0
  99. },
  100. "emphasis": {
  101. "color": 'rgba(0,0,0,0)',
  102. "borderColor": 'rgba(0,0,0,0)',
  103. "borderWidth": 0
  104. }
  105. };
  106. return {
  107. "title": {
  108. "text": '数据加载中,请稍等。。。',
  109. x: 'center',
  110. y: '75%',
  111. "textStyle": {
  112. "fontSize": 16,
  113. "color": 'rgba(255,255,255,1)'
  114. }
  115. },
  116. "tooltip": {
  117. "trigger": 'item',
  118. "formatter": "{a} : {d}%"
  119. },
  120. "series": [
  121. {
  122. "name": '负载',
  123. "center": ["50%","50%"],
  124. "radius": ["28%","30%"],
  125. "clockWise": false,
  126. "hoverAnimation": false,
  127. "type": "pie",
  128. "data": [{
  129. "value": _this.randomVal,
  130. "label": {
  131. "normal": {
  132. "show": true,
  133. "formatter": '{d}%',
  134. "textStyle":textStyle,
  135. "position": "center",
  136. "color": 'rgba(255,255,255,1)'
  137. }
  138. },
  139. "labelLine": {
  140. "show": false
  141. },
  142. "itemStyle": {
  143. "normal": {
  144. "color": "#5886f0",
  145. "borderColor": new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  146. offset: 0,
  147. color: '#00a2ff'
  148. }, {
  149. offset: 1,
  150. color: '#70ffac'
  151. }]),
  152. "borderWidth": 15
  153. },
  154. "emphasis": {
  155. "color": "#5886f0",
  156. "borderColor": new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  157. offset: 0,
  158. color: '#85b6b2'
  159. }, {
  160. offset: 1,
  161. color: '#6d4f8d'
  162. }]),
  163. "borderWidth": 15
  164. }
  165. }
  166. }, {
  167. "value": maxVal - _this.randomVal,
  168. "itemStyle": itemStyle
  169. }]
  170. }, {
  171. "name": '负载',
  172. "center": [ "50%","50%"],
  173. "radius": ["40%","43%"],
  174. "clockWise": false,
  175. "hoverAnimation": false,
  176. "type": "pie",
  177. "data": [{
  178. "value": _this.randomVal,
  179. "label": {
  180. "normal": {
  181. "show": false,
  182. "formatter": '',
  183. "textStyle": textStyle,
  184. "position": "center"
  185. }
  186. },
  187. "labelLine": {
  188. "show": false
  189. },
  190. "itemStyle": {
  191. "normal": {
  192. "color": "#5886f0",
  193. "borderColor": new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  194. offset: 0,
  195. color: '#00a2ff'
  196. }, {
  197. offset: 1,
  198. color: '#70ffac'
  199. }]),
  200. "borderWidth": 2
  201. },
  202. "emphasis": {
  203. "color": "#5886f0",
  204. "borderColor": new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  205. offset: 0,
  206. color: '#85b6b2'
  207. }, {
  208. offset: 1,
  209. color: '#6d4f8d'
  210. }]),
  211. "borderWidth": 2
  212. }
  213. }
  214. }, {
  215. "value": maxVal - _this.randomVal,
  216. "itemStyle": itemStyle
  217. }]
  218. }]
  219. };
  220. },
  221. },
  222. };
  223. </script>
  224. <style>
  225. #fourth{
  226. position: relative;
  227. z-index: 3000;
  228. width: 50vw;
  229. height: 50vh;
  230. /* background: wheat; */
  231. top: 25vh;
  232. left: 25vw;
  233. }
  234. .loadding{
  235. position: fixed;
  236. width: 100vw;
  237. height: 100vh;
  238. text-align: center;
  239. z-index: 3000;
  240. top: 0;
  241. left: 0;
  242. background: #000000d4;
  243. }
  244. </style>