StructureTypeStatistics.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <div class="right_two">
  3. <CommonTitle title="各年代建筑结构类型统计" :icon=true @changeType="changeType" />
  4. <div class="content" id="chartFive" v-loading="isLoading"
  5. element-loading-background="rgba(0, 22, 52, 0.75)">
  6. </div>
  7. </div>
  8. </template>
  9. <script setup>
  10. import {
  11. ref,
  12. onMounted,
  13. nextTick
  14. } from 'vue'
  15. import {
  16. setEchartsSBar
  17. } from '../echarts/option.js'
  18. import CommonTitle from "@/views/c-cpns/CommonTitle.vue";
  19. import {getSelectJzncJzjgCount} from "@/service/http.js";
  20. const isLoading = ref(false);
  21. let currentType = "城镇";
  22. function changeType() {
  23. if(currentType == "城镇"){
  24. currentType = "乡村";
  25. }else{
  26. currentType = "城镇";
  27. }
  28. getCurrentTypeData();
  29. }
  30. function getCurrentTypeData(){
  31. isLoading.value = true;
  32. getSelectJzncJzjgCount().then(res => {
  33. isLoading.value = false;
  34. let data = res.data.data.Rows[0];
  35. setEchartsSBar(document.getElementById("chartFive"),data,currentType)
  36. })
  37. }
  38. onMounted(() => {
  39. getCurrentTypeData()
  40. })
  41. </script>
  42. <style scoped lang="scss">
  43. .center {
  44. display: flex;
  45. justify-content: flex-start;
  46. align-items: center;
  47. }
  48. .center_center{
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. }
  53. .right_two{
  54. height: 30%;
  55. padding-top: 10px;
  56. box-sizing: border-box;
  57. .content {
  58. height: 90%;
  59. margin: 0 20px;
  60. box-sizing: border-box;
  61. display: flex;
  62. justify-content: space-between;
  63. align-items: center;
  64. }
  65. }
  66. </style>