b4a694ed by zhangmeng

看板

1 parent 3e7f24fb
......@@ -183,7 +183,6 @@ function handelSelect1() {
}
function handelSelect2() {
console.log(type2.value)
let arr = type2.value.map(val => list.value.find(item => item.BASE === val))
for (const v1 of arr) {
for (const v2 of v1.list) {
......@@ -204,7 +203,6 @@ function handelSelect2() {
}
function handelSelect3() {
console.log(type3.value)
h1.value = []
h2.value = []
h3.value = []
......@@ -412,7 +410,7 @@ const setB = (arr1, arr2, arr3, arr4) => {
const option = {
tooltip: {
trigger: 'axis',
valueFormatter: (value) => (value / 10000).toFixed() + '万',
valueFormatter: (value) => (value * 1).toFixed() + '万',
backgroundColor: 'rgba(5, 28, 51, 1)', // 背景色
borderColor: 'rgba(46, 151, 198, 1)', // 边框颜色
borderWidth: 1, // 边框宽度
......@@ -578,7 +576,7 @@ const setC = (h1, h2, h3) => {
axisPointer: {
type: 'shadow'
},
valueFormatter: (value) => (value / 10000).toFixed() + '万',
valueFormatter: (value) => (value * 1).toFixed() + '万',
backgroundColor: 'rgba(5, 28, 51, 1)', // 背景色
borderColor: 'rgba(46, 151, 198, 1)', // 边框颜色
borderWidth: 1, // 边框宽度
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!