| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import * as echarts from '../ec-canvas/echarts.min';
- import Theme from './chalk.theme';
- import { healthIndexReportMethod } from './request';
- echarts.registerTheme(...Theme);
- // module/health/pages/record-index/record-index.ts
- Component({
- lifetimes: {
- attached() {
- this._initRect();
- this._getData();
- }
- },
- properties: {
- },
- data: {
- gap: 0,
- scale: 1,
- rect: { width: 0, height: 0 },
- charts: [] as string[],
- },
- methods: {
- _initRect() {
- const { windowWidth, pixelRatio } = wx.getWindowInfo()
- const { right } = wx.getMenuButtonBoundingClientRect();
- const gap = windowWidth - right;
- const width = windowWidth - gap * 2;
- const height = Math.floor(width * 3 / 4);
- this.setData({
- rect: { width, height, },
- scale: pixelRatio, gap
- })
- },
- async _getData() {
- const charts = await healthIndexReportMethod();
- this.setData({
- charts: charts.map((option: any) => {
- return {
- id: option.id,
- onInit(canvas: any, width: number, height: number, dpr: number) {
- const ec = echarts.init(canvas, Theme[0], {
- width: width,
- height: height,
- devicePixelRatio: dpr
- });
- canvas.setChart(ec);
- ec.setOption(option);
- console.log(option, '1-->');
-
- return ec;
- }
- }
- })
- });
- },
- }
- })
|