|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<div class="chart" v-if="show" :style="{height: height }">
|
|
<div class="chart" v-if="show" :style="{height: height }">
|
|
- <div v-for="item in chartData.filter(item=>{return item.typeValue!=6})" :key="item.reportType" :id="item.reportType" class="items" :style="{ width }" ></div>
|
|
|
|
|
|
+ <div v-for="item in domList.filter(item=>{return item.typeValue!=6})" :key="item.reportType" :id="item.reportType" class="items" :style="{ width }" ></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
@@ -11,6 +11,26 @@ export default {
|
|
return {
|
|
return {
|
|
show: false,
|
|
show: false,
|
|
chartData: [],
|
|
chartData: [],
|
|
|
|
+ domList:[
|
|
|
|
+ {
|
|
|
|
+ reportType:'FTO调查',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ reportType:'无效分析',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ reportType:'侵权分析',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ reportType:'第三方意见',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ reportType:'稳定性分析',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ reportType:'回避设计',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
fullWidth: document.documentElement.clientWidth,
|
|
fullWidth: document.documentElement.clientWidth,
|
|
height:document.documentElement.clientHeight,
|
|
height:document.documentElement.clientHeight,
|
|
width: 0,
|
|
width: 0,
|