| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- const _Http = getApp().globalData.http;
- import * as echarts from '../../ec-canvas/echarts';
- Component({
- options: {
- addGlobalClass: true
- },
- lifetimes: {
- attached: function () {
- getApp().globalData.Language.getLanguagePackage(this)
- }
- },
- data: {
- year: new Date().getFullYear().toString(),
- "content": {
- dataid: wx.getStorageSync('userMsg').userid,
- username: wx.getStorageSync('userMsg').name,
- enddate: new Date().toISOString().split('T')[0],
- where: {}
- }
- },
- methods: {
- async getList(init = false) {
- let content = this.data.content
- const {
- dataid,
- type,
- username,
- isleave
- } = getCurrentPages()[getCurrentPages().length - 1].data;
- if (content.dataid != dataid || content.type != type || isleave != isleave) init = true
- content.dataid = dataid;
- content.type = type;
- content.username = username;
- content.where.isleave = isleave;
- _Http.basic({
- "id": 20231017152704,
- content
- }).then(res => {
- if (res.code != '1') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- this.initChart(res.data)
- })
- },
- initChart(data) {
- console.log("data", data)
- const colors = ['#6CD2A1', '#5F9DFC', '#ECB937', '#F69240'],
- getMapText = getApp().globalData.Language.getMapText;
- let legend = [getMapText('去年同期跟进'), getMapText('本期跟进'), `${getMapText('同比增长率')}`],
- series = [{
- name: getMapText('去年同期跟进'),
- type: 'bar',
- data: data.followup.filter(v => v.key == '去年同期跟进').map(v => v.value),
- smooth: true
- },
- {
- name: getMapText('本期跟进'),
- type: 'bar',
- yAxisIndex: 1,
- data: data.followup.filter(v => v.key == '本期跟进').map(v => v.value),
- smooth: true
- },
- {
- name: getMapText('同比增长率'),
- type: 'line',
- yAxisIndex: 2,
- data: data.tbzzl.map(v => v.value),
- smooth: true
- }
- ]
- const option = {
- color: colors,
- tooltip: {
- trigger: 'axis',
- confine: true, // Ensure tooltip stays within the chart area
- formatter: function (params) {
- let tooltipText = '';
- params.forEach((item, index) => {
- tooltipText += `${index==0?item.axisValue+'\n':''}${item.marker}${item.seriesName}: ${item.value}${item.seriesName == getMapText('同比增长率')||item.seriesName == getMapText('准交率') ? '%' : ''}\n`;
- });
- return tooltipText;
- },
- textStyle: {
- fontSize: 10, // Reduced font size
- lineHeight: 14 // Adjusted line height for smaller tooltip height
- }
- },
- legend: {
- data: legend
- },
- xAxis: [{
- type: 'category',
- axisTick: {
- alignWithLabel: true
- },
- data: data.tbzzl.map(v => v.date),
- axisLabel: {
- interval: 0,
- rotate: 45
- }
- }],
- yAxis: [{
- type: 'value',
- name: '',
- position: 'right',
- offset: 80,
- alignTicks: true,
- axisLine: {
- show: true,
- },
- axisLabel: {
- formatter: '{value}'
- }
- },
- {
- type: 'value',
- name: '',
- position: 'left',
- alignTicks: true,
- axisLine: {
- show: false,
- },
- axisLabel: {
- formatter: '{value}',
- rotate: 45
- }
- },
- {
- type: 'value',
- name: '',
- position: 'right',
- alignTicks: true,
- offset: 80,
- axisLine: {
- show: false,
- lineStyle: {
- color: colors[1]
- }
- },
- axisLabel: {
- formatter: '{value}'
- }
- },
- ],
- series
- };
- this.chartComponent = this.selectComponent('#mychart');
- this.chartComponent.init((canvas, width, height, dpr) => {
- const chart = echarts.init(canvas, null, {
- width,
- height,
- devicePixelRatio: dpr
- });
- chart.setOption(option);
- return chart;
- });
- },
- changeDate({
- detail
- }) {
- this.setData({
- "content.enddate": detail
- })
- this.getList(true)
- },
- }
- })
|