|
|
@@ -0,0 +1,176 @@
|
|
|
+const _Http = getApp().globalData.http;
|
|
|
+
|
|
|
+import * as echarts from '../../ec-canvas/echarts';
|
|
|
+Component({
|
|
|
+ properties: {
|
|
|
+ idname: {
|
|
|
+ type: [String || Number]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ options: {
|
|
|
+ addGlobalClass: true
|
|
|
+ },
|
|
|
+ lifetimes: {
|
|
|
+ attached: function () {
|
|
|
+ getApp().globalData.Language.getLanguagePackage(this)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ dateTypes: ["全部", "本年"],
|
|
|
+ "content": {
|
|
|
+ pageNumber: 1,
|
|
|
+ pageTotal: 1,
|
|
|
+ dataid: wx.getStorageSync('userMsg').userid,
|
|
|
+ username: wx.getStorageSync('userMsg').name,
|
|
|
+ dateType: "本年",
|
|
|
+ type: 0,
|
|
|
+ where: {
|
|
|
+ begdate: "",
|
|
|
+ enddate: "",
|
|
|
+ isleave: "1",
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async getList(init = false) {
|
|
|
+ if (init.detail != undefined) init = init.detail;
|
|
|
+ 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;
|
|
|
+ if (init) {
|
|
|
+ content.pageNumber = 1;
|
|
|
+ content.pageTotal = 1;
|
|
|
+ }
|
|
|
+ if (content.pageNumber > content.pageTotal) return;
|
|
|
+ _Http.basic({
|
|
|
+ "id": 20231018164504,
|
|
|
+ content
|
|
|
+ }).then(res => {
|
|
|
+ this.selectComponent('#ListBox').RefreshToComplete();
|
|
|
+ console.log('客户列表', res)
|
|
|
+ if (res.code != '1') return wx.showToast({
|
|
|
+ title: res.data,
|
|
|
+ icon: "none"
|
|
|
+ })
|
|
|
+ this.setData({
|
|
|
+ list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
|
|
|
+ "content.pageNumber": res.pageNumber + 1,
|
|
|
+ "content.pageSize": res.pageSize,
|
|
|
+ })
|
|
|
+ this.selectComponent("#TimeRange").onCancel()
|
|
|
+
|
|
|
+ _Http.basic({
|
|
|
+ id: this.data.idname,
|
|
|
+ content
|
|
|
+ }).then(res1 => {
|
|
|
+ console.log("图标", res1)
|
|
|
+ this.initChart(res1.data, res.total);
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ initChart(data, total) {
|
|
|
+ const getMapText = getApp().globalData.Language.getMapText;
|
|
|
+ let option = {
|
|
|
+ tooltip: {
|
|
|
+ trigger: 'item'
|
|
|
+ },
|
|
|
+ legend: {
|
|
|
+ bottom: '5%', // Moved legend to the bottom
|
|
|
+ left: 'center'
|
|
|
+ },
|
|
|
+ series: [{
|
|
|
+ type: 'pie',
|
|
|
+ radius: ['40%', '70%'],
|
|
|
+ center: ['50%', '42%'], // Adjusted to align with the new legend position
|
|
|
+ endAngle: 360,
|
|
|
+ data: data.map(v => {
|
|
|
+ return {
|
|
|
+ name: getMapText(v.key),
|
|
|
+ value: (v.ratio).toFixed(2),
|
|
|
+ }
|
|
|
+ }),
|
|
|
+ label: {
|
|
|
+ normal: {
|
|
|
+ show: true,
|
|
|
+ position: 'outside',
|
|
|
+ formatter: '{b}: {c} ({d}%)',
|
|
|
+ textStyle: {
|
|
|
+ fontSize: 12,
|
|
|
+ color: '#333'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ emphasis: {
|
|
|
+ show: true,
|
|
|
+ textStyle: {
|
|
|
+ fontSize: 14,
|
|
|
+ fontWeight: 'bold'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ rich: {
|
|
|
+ total: {
|
|
|
+ fontSize: 20,
|
|
|
+ fontWeight: 'bold',
|
|
|
+ color: '#333'
|
|
|
+ },
|
|
|
+ desc: {
|
|
|
+ fontSize: 12,
|
|
|
+ color: '#999'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ labelLine: {
|
|
|
+ normal: {
|
|
|
+ show: true,
|
|
|
+ length: 10,
|
|
|
+ length2: 10
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }]
|
|
|
+ };
|
|
|
+ option.graphic = {
|
|
|
+ type: 'text',
|
|
|
+ left: 'center',
|
|
|
+ top: '35%', // Adjusted to align with the new series position
|
|
|
+ style: {
|
|
|
+ text: `${getMapText('客户总数')}\n\n${total}`,
|
|
|
+ textAlign: 'center',
|
|
|
+ fill: '#333',
|
|
|
+ fontSize: 16,
|
|
|
+ fontWeight: 'bold'
|
|
|
+ }
|
|
|
+ };
|
|
|
+ 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;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ toDetail(e) {
|
|
|
+ console.log(e)
|
|
|
+ },
|
|
|
+ changeDate({
|
|
|
+ detail
|
|
|
+ }) {
|
|
|
+ this.setData({
|
|
|
+ "content.dateType": detail.dateType,
|
|
|
+ "content.where.begdate": detail.begdate || "",
|
|
|
+ "content.where.enddate": detail.enddate || ""
|
|
|
+ })
|
|
|
+ this.getList(true)
|
|
|
+ }
|
|
|
+ }
|
|
|
+})
|