store.page.ts 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. import { Component, OnInit } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { FormsModule } from '@angular/forms';
  4. import { IonContent, IonHeader, IonTitle, IonToolbar, IonButton, IonLabel, IonItem, IonList, IonBackButton, IonButtons, IonIcon, IonItemDivider, IonAvatar, IonThumbnail, IonItemOptions, IonItemOption, IonItemSliding, IonInput, IonCheckbox, IonRadio, IonToggle, IonRadioGroup, IonSearchbar,IonSegment,IonSegmentButton,IonDatetime,IonFooter,IonCardContent,IonCardTitle,IonCardHeader,IonCard,IonCol,IonRow,IonGrid,IonChip,IonImg,IonProgressBar } from '@ionic/angular/standalone';
  5. import * as echarts from 'echarts';
  6. import { podiumOutline} from 'ionicons/icons';
  7. import { addIcons } from 'ionicons';
  8. addIcons({podiumOutline})
  9. // <ion-icon name="podium-outline"></ion-icon>
  10. // <ion-icon name="bar-chart-outline"></ion-icon>
  11. // <ion-icon name="cellular-outline"></ion-icon>
  12. @Component({
  13. selector: 'app-store',
  14. templateUrl: './store.page.html',
  15. styleUrls: ['./store.page.scss'],
  16. standalone: true,
  17. imports: [IonContent, IonHeader, IonTitle, IonToolbar, CommonModule, FormsModule, IonButton, IonLabel, IonLabel, IonList, IonItem, IonBackButton, IonButtons, IonIcon, IonItemDivider, IonAvatar, IonThumbnail, IonItemOptions, IonItemSliding, IonItemOption, IonItemOptions,IonInput,IonCheckbox,IonRadio,IonToggle,IonRadioGroup,IonSearchbar,IonSegment,IonSegmentButton,IonDatetime,IonFooter,IonCardContent,IonCardTitle,IonCardHeader,IonCard,IonCol,IonRow,IonGrid,IonChip,IonImg,IonProgressBar ]
  18. })
  19. export class StorePage implements OnInit {
  20. constructor() { }
  21. ngOnInit() {
  22. }
  23. //进度条
  24. public buffer = 0.06;
  25. public progress = 0;
  26. public visable1:boolean=true
  27. shengcheng1(){
  28. setInterval(() => {
  29. this.buffer += 0.4;
  30. this.progress += 0.4;
  31. // Reset the progress bar when it reaches 100%
  32. // to continuously show the demo
  33. if (this.progress > 1) {
  34. setTimeout(() => {
  35. this.buffer = 0.06;
  36. this.progress = 0;
  37. this.visable1=false
  38. this.initEchart();
  39. }, 1000);
  40. }
  41. }, 1000);
  42. }
  43. public chart: any;
  44. initEchart() {
  45. let ec = echarts as any;
  46. let container = document.getElementById('chart');
  47. this.chart = ec.init(container);
  48. let option = {
  49. color: ['#80FFA5', '#00DDFF', '#37A2FF', '#FF0087', '#FFBF00'],
  50. title: {
  51. text: ''
  52. },
  53. tooltip: {
  54. trigger: 'axis',
  55. axisPointer: {
  56. type: 'cross',
  57. label: {
  58. backgroundColor: '#6a7985'
  59. }
  60. }
  61. },
  62. legend: {
  63. data: ['风衣', '羽绒服', 'T恤', '牛仔裤', '连衣裙']
  64. },
  65. toolbox: {
  66. feature: {
  67. saveAsImage: {}
  68. }
  69. },
  70. grid: {
  71. left: '3%',
  72. right: '4%',
  73. bottom: '3%',
  74. containLabel: true
  75. },
  76. xAxis: [
  77. {
  78. type: 'category',
  79. boundaryGap: false,
  80. data: ['2017', '2018', '2019', '2020', '2021', '2022', '2023']
  81. }
  82. ],
  83. yAxis: [
  84. {
  85. type: 'value'
  86. }
  87. ],
  88. series: [
  89. {
  90. name: '风衣',
  91. type: 'line',
  92. stack: 'Total',
  93. smooth: true,
  94. lineStyle: {
  95. width: 0
  96. },
  97. showSymbol: false,
  98. areaStyle: {
  99. opacity: 0.8,
  100. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  101. {
  102. offset: 0,
  103. color: 'rgb(128, 255, 165)'
  104. },
  105. {
  106. offset: 1,
  107. color: 'rgb(1, 191, 236)'
  108. }
  109. ])
  110. },
  111. emphasis: {
  112. focus: 'series'
  113. },
  114. data: [140, 232, 101, 264, 90, 340, 250]
  115. },
  116. {
  117. name: '羽绒服',
  118. type: 'line',
  119. stack: 'Total',
  120. smooth: true,
  121. lineStyle: {
  122. width: 0
  123. },
  124. showSymbol: false,
  125. areaStyle: {
  126. opacity: 0.8,
  127. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  128. {
  129. offset: 0,
  130. color: 'rgb(0, 221, 255)'
  131. },
  132. {
  133. offset: 1,
  134. color: 'rgb(77, 119, 255)'
  135. }
  136. ])
  137. },
  138. emphasis: {
  139. focus: 'series'
  140. },
  141. data: [120, 282, 111, 234, 220, 340, 310]
  142. },
  143. {
  144. name: 'T恤',
  145. type: 'line',
  146. stack: 'Total',
  147. smooth: true,
  148. lineStyle: {
  149. width: 0
  150. },
  151. showSymbol: false,
  152. areaStyle: {
  153. opacity: 0.8,
  154. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  155. {
  156. offset: 0,
  157. color: 'rgb(55, 162, 255)'
  158. },
  159. {
  160. offset: 1,
  161. color: 'rgb(116, 21, 219)'
  162. }
  163. ])
  164. },
  165. emphasis: {
  166. focus: 'series'
  167. },
  168. data: [320, 132, 201, 334, 190, 130, 220]
  169. },
  170. {
  171. name: '牛仔裤',
  172. type: 'line',
  173. stack: 'Total',
  174. smooth: true,
  175. lineStyle: {
  176. width: 0
  177. },
  178. showSymbol: false,
  179. areaStyle: {
  180. opacity: 0.8,
  181. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  182. {
  183. offset: 0,
  184. color: 'rgb(255, 0, 135)'
  185. },
  186. {
  187. offset: 1,
  188. color: 'rgb(135, 0, 157)'
  189. }
  190. ])
  191. },
  192. emphasis: {
  193. focus: 'series'
  194. },
  195. data: [220, 402, 231, 134, 190, 230, 120]
  196. },
  197. {
  198. name: '连衣裙',
  199. type: 'line',
  200. stack: 'Total',
  201. smooth: true,
  202. lineStyle: {
  203. width: 0
  204. },
  205. showSymbol: false,
  206. label: {
  207. show: true,
  208. position: 'top'
  209. },
  210. areaStyle: {
  211. opacity: 0.8,
  212. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  213. {
  214. offset: 0,
  215. color: 'rgb(255, 191, 0)'
  216. },
  217. {
  218. offset: 1,
  219. color: 'rgb(224, 62, 76)'
  220. }
  221. ])
  222. },
  223. emphasis: {
  224. focus: 'series'
  225. },
  226. data: [220, 302, 181, 234, 210, 290, 150]
  227. }
  228. ]
  229. };
  230. this.chart.setOption(option);
  231. }
  232. }