This commit is contained in:
parent
eaca2116f7
commit
056d43dd88
|
@ -409,7 +409,7 @@ onMounted(() => {
|
||||||
startAutoSwitching();
|
startAutoSwitching();
|
||||||
});
|
});
|
||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(async () => {
|
||||||
getData();
|
getData();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ import {
|
||||||
defineProps,
|
defineProps,
|
||||||
ref,
|
ref,
|
||||||
nextTick,
|
nextTick,
|
||||||
|
watch,
|
||||||
} from "vue";
|
} from "vue";
|
||||||
// 局部引入echarts核心模块
|
// 局部引入echarts核心模块
|
||||||
import * as echarts from "echarts";
|
import * as echarts from "echarts";
|
||||||
|
@ -168,9 +169,17 @@ const setChart1 = () => {
|
||||||
data.list2.push(item.rs); //数量
|
data.list2.push(item.rs); //数量
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
// 监听
|
||||||
|
watch(
|
||||||
|
() => props.list,
|
||||||
|
(newVal, oldVal) => {
|
||||||
|
console.log(2222,newVal, oldVal)
|
||||||
|
}
|
||||||
|
);
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
data.list = props.list;
|
data.list = props.list;
|
||||||
|
console.log(1111,data.list)
|
||||||
setChart1();
|
setChart1();
|
||||||
getOption();
|
getOption();
|
||||||
setChart();
|
setChart();
|
||||||
|
|
|
@ -687,11 +687,6 @@ onBeforeMount(async () => {
|
||||||
});
|
});
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
startAutoScroll();
|
startAutoScroll();
|
||||||
console.log(
|
|
||||||
mainRef.value.scrollTop,
|
|
||||||
mainRef.value.scrollHeight,
|
|
||||||
mainRef.value.clientHeight
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue