add 产品质量分析-图形弹窗

This commit is contained in:
lb
2023-09-04 13:54:37 +08:00
parent 55f90a7102
commit 6f71b6a7c0
2 changed files with 301 additions and 13 deletions

View File

@@ -0,0 +1,34 @@
<!--
filename: lineChart.vue
author: liubin
date: 2023-09-04 13:45:00
description:
-->
<template>
<div class="line-chart">line LineChart</div>
</template>
<script>
export default {
name: 'LineChart',
components: {},
props: ['config'],
data() {
return {
chart: null,
};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss">
.line-chart {
margin: 24px;
padding: 12px;
background: #e1e1e1;
min-height: 200px;
}
</style>