decision2Xmdb.vue 625 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div class="decision-page-2">
  3. 场内对标
  4. <normal-radar-chart :height="'500px'" />
  5. </div>
  6. </template>
  7. <script>
  8. import NormalRadarChart from "../../components/chart/radar/normal-radar-chart.vue";
  9. export default {
  10. components: {
  11. NormalRadarChart
  12. },
  13. data() {
  14. return {}
  15. },
  16. created() {
  17. },
  18. methods: {
  19. }
  20. };
  21. </script>
  22. <style lang="less">
  23. .decision-page-2 {
  24. .project-table {
  25. overflow: auto;
  26. tbody {
  27. height: 189px;
  28. }
  29. th,
  30. td {
  31. color: #b2bdc0;
  32. &:nth-child(1) {
  33. width: 50px;
  34. }
  35. &:nth-child(2) {
  36. width: 50px;
  37. }
  38. }
  39. }
  40. }
  41. </style>