From 0c555ea93f2fe4891c340056b7384928dd60fa80 Mon Sep 17 00:00:00 2001 From: zhangjun1 Date: Wed, 12 Aug 2020 11:45:29 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E7=8E=AF=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/workbench/workPlace.vue | 46 +++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/src/pages/workbench/workPlace.vue b/src/pages/workbench/workPlace.vue index 7542f38..6e8c272 100644 --- a/src/pages/workbench/workPlace.vue +++ b/src/pages/workbench/workPlace.vue @@ -1678,8 +1678,9 @@ export default { name: "", type: "pie", clockWise: false, - radius: [51, 55], + radius: [52, 54], center: ["51%", "45%"], + z:5, hoverAnimation: false, itemStyle: { normal: { @@ -1705,7 +1706,48 @@ export default { } }, data: data - } + }, + { + type:'pie', + z:4, + center:['51%','45%'], + radius:['43%','63%'], + hoverAnimation:false, + avoidLabelOverlap: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + labelLine: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + tooltip: { + show: false + }, + itemStyle: { + normal: { + color:'#f6f7fc' + } + }, + emphasis:{ + show:false, + itemStyle:{ + color:'#f6f7fc' + } + }, + data: [{ + value: 1, + }], + } ]; var options = { -- 2.26.0