Browse Source

改完工作台,可以提测

main
lihuilin 6 days ago
parent
commit
0e6871321e
  1. 10
      gold-system/src/views/workspace/index.vue

10
gold-system/src/views/workspace/index.vue

@ -1019,7 +1019,7 @@ onMounted(async function () {
tooltip: {
trigger: 'item',
position: ['15%', '-3%'],
show:true, //
show:false, //
formatter: function (params) {
return params.seriesName + '<br/>' + params.name
}
@ -1029,7 +1029,7 @@ onMounted(async function () {
left: 'center',
orient: 'vertical',
//
selectedMode: true,
selectedMode: false,
},
series: [
{
@ -1061,6 +1061,7 @@ onMounted(async function () {
var yearConsumePie = echarts.init(document.getElementById('yearConsume'))
const option4 = {
tooltip: {
show:false, //
trigger: 'item',
position: ['15%', '-3%'],
formatter: function (params) {
@ -1070,7 +1071,8 @@ onMounted(async function () {
legend: {
bottom: '-1%',
left: 'center',
orient: 'vertical'
orient: 'vertical',
selectedMode: false,
},
grid: {
top: '0%' // 10%使
@ -1105,6 +1107,7 @@ onMounted(async function () {
var nowGoldPie = echarts.init(document.getElementById('nowGold'))
const option5 = {
tooltip: {
show: false,
trigger: 'item',
position: ['15%', '-3%'],
formatter: function (params) {
@ -1122,6 +1125,7 @@ onMounted(async function () {
}
},
legend: {
selectedMode: false,
bottom: '-1%',
left: 'center',
orient: 'vertical'

Loading…
Cancel
Save