看板
Showing
1 changed file
with
2 additions
and
4 deletions
| ... | @@ -183,7 +183,6 @@ function handelSelect1() { | ... | @@ -183,7 +183,6 @@ function handelSelect1() { |
| 183 | } | 183 | } |
| 184 | 184 | ||
| 185 | function handelSelect2() { | 185 | function handelSelect2() { |
| 186 | console.log(type2.value) | ||
| 187 | let arr = type2.value.map(val => list.value.find(item => item.BASE === val)) | 186 | let arr = type2.value.map(val => list.value.find(item => item.BASE === val)) |
| 188 | for (const v1 of arr) { | 187 | for (const v1 of arr) { |
| 189 | for (const v2 of v1.list) { | 188 | for (const v2 of v1.list) { |
| ... | @@ -204,7 +203,6 @@ function handelSelect2() { | ... | @@ -204,7 +203,6 @@ function handelSelect2() { |
| 204 | } | 203 | } |
| 205 | 204 | ||
| 206 | function handelSelect3() { | 205 | function handelSelect3() { |
| 207 | console.log(type3.value) | ||
| 208 | h1.value = [] | 206 | h1.value = [] |
| 209 | h2.value = [] | 207 | h2.value = [] |
| 210 | h3.value = [] | 208 | h3.value = [] |
| ... | @@ -412,7 +410,7 @@ const setB = (arr1, arr2, arr3, arr4) => { | ... | @@ -412,7 +410,7 @@ const setB = (arr1, arr2, arr3, arr4) => { |
| 412 | const option = { | 410 | const option = { |
| 413 | tooltip: { | 411 | tooltip: { |
| 414 | trigger: 'axis', | 412 | trigger: 'axis', |
| 415 | valueFormatter: (value) => (value / 10000).toFixed() + '万', | 413 | valueFormatter: (value) => (value * 1).toFixed() + '万', |
| 416 | backgroundColor: 'rgba(5, 28, 51, 1)', // 背景色 | 414 | backgroundColor: 'rgba(5, 28, 51, 1)', // 背景色 |
| 417 | borderColor: 'rgba(46, 151, 198, 1)', // 边框颜色 | 415 | borderColor: 'rgba(46, 151, 198, 1)', // 边框颜色 |
| 418 | borderWidth: 1, // 边框宽度 | 416 | borderWidth: 1, // 边框宽度 |
| ... | @@ -578,7 +576,7 @@ const setC = (h1, h2, h3) => { | ... | @@ -578,7 +576,7 @@ const setC = (h1, h2, h3) => { |
| 578 | axisPointer: { | 576 | axisPointer: { |
| 579 | type: 'shadow' | 577 | type: 'shadow' |
| 580 | }, | 578 | }, |
| 581 | valueFormatter: (value) => (value / 10000).toFixed() + '万', | 579 | valueFormatter: (value) => (value * 1).toFixed() + '万', |
| 582 | backgroundColor: 'rgba(5, 28, 51, 1)', // 背景色 | 580 | backgroundColor: 'rgba(5, 28, 51, 1)', // 背景色 |
| 583 | borderColor: 'rgba(46, 151, 198, 1)', // 边框颜色 | 581 | borderColor: 'rgba(46, 151, 198, 1)', // 边框颜色 |
| 584 | borderWidth: 1, // 边框宽度 | 582 | borderWidth: 1, // 边框宽度 | ... | ... |
-
Please register or sign in to post a comment