12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <div class="decision-page-2">
- 场内对标
- <normal-radar-chart :height="'500px'" />
- </div>
- </template>
- <script>
- import NormalRadarChart from "../../components/chart/radar/normal-radar-chart.vue";
- export default {
- components: {
- NormalRadarChart
- },
- data() {
- return {}
- },
- created() {
-
- },
- methods: {
-
- }
- };
- </script>
- <style lang="less">
- .decision-page-2 {
- .project-table {
- overflow: auto;
- tbody {
- height: 189px;
- }
- th,
- td {
- color: #b2bdc0;
- &:nth-child(1) {
- width: 50px;
- }
- &:nth-child(2) {
- width: 50px;
- }
- }
- }
- }
- </style>
|