Merge branch 'main' of git.zdool.com:xs/ggfwjsc
This commit is contained in:
commit
8e7a980146
|
@ -12,6 +12,10 @@
|
|||
font-family: TCloudNumber;
|
||||
src: url('../css/TCloudNumber-Regular.ttf')
|
||||
}
|
||||
@font-face {
|
||||
font-family: titleNore;
|
||||
src: url('../css/优设标题黑.ttf')
|
||||
}
|
||||
|
||||
span,
|
||||
p,
|
||||
|
|
Binary file not shown.
|
@ -409,7 +409,7 @@ onMounted(() => {
|
|||
startAutoSwitching();
|
||||
});
|
||||
|
||||
onBeforeMount(() => {
|
||||
onBeforeMount(async () => {
|
||||
getData();
|
||||
});
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ import {
|
|||
defineProps,
|
||||
ref,
|
||||
nextTick,
|
||||
watch,
|
||||
} from "vue";
|
||||
// 局部引入echarts核心模块
|
||||
import * as echarts from "echarts";
|
||||
|
@ -168,9 +169,17 @@ const setChart1 = () => {
|
|||
data.list2.push(item.rs); //数量
|
||||
});
|
||||
};
|
||||
// 监听
|
||||
watch(
|
||||
() => props.list,
|
||||
(newVal, oldVal) => {
|
||||
console.log(2222,newVal, oldVal)
|
||||
}
|
||||
);
|
||||
onBeforeMount(() => {
|
||||
setTimeout(() => {
|
||||
data.list = props.list;
|
||||
console.log(1111,data.list)
|
||||
setChart1();
|
||||
getOption();
|
||||
setChart();
|
||||
|
|
|
@ -687,11 +687,6 @@ onBeforeMount(async () => {
|
|||
});
|
||||
onMounted(() => {
|
||||
startAutoScroll();
|
||||
console.log(
|
||||
mainRef.value.scrollTop,
|
||||
mainRef.value.scrollHeight,
|
||||
mainRef.value.clientHeight
|
||||
);
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
@ -465,6 +465,7 @@ body {
|
|||
margin-top: 150px;
|
||||
border-bottom: 1px solid #71ddff;
|
||||
position: relative;
|
||||
font-family: titleNore;
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
|
@ -556,7 +557,7 @@ body {
|
|||
line-height: 31px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
font-size: 24px;
|
||||
letter-spacing: 2px;
|
||||
text-shadow: 0px 0px 4px #58b9ff;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue