index.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <BusinessMainCom title="资源一张图">
  3. <div class="resources">
  4. <div class="__gis-business-main_title">
  5. 类型分布
  6. <div class="area">
  7. <CusFormColumn
  8. labelWidth="44"
  9. :span="24"
  10. link="select"
  11. label="区域:"
  12. static
  13. v-model:param="area"
  14. :options="[]"
  15. />
  16. </div>
  17. </div>
  18. <FocusContentCom class="one">
  19. <div class="one-top">
  20. <img src="@/assets/images/gis-business/resource_icon1.png" alt=""/>
  21. <StatisticTitleCom title="总数" :num="lxfb.total" unit="台"/>
  22. </div>
  23. <div class="one-bottom">
  24. <div class="one-bottom-item">
  25. <div class="chart">
  26. <PieSimpleChartCom :num="lxfb.gal" :total="lxfb.total" color="#00FFFF"/>
  27. </div>
  28. <div class="text">公安类</div>
  29. </div>
  30. <div class="one-bottom-item">
  31. <div class="chart">
  32. <PieSimpleChartCom :num="lxfb.shl" :total="lxfb.total" color="#FFCC8F"/>
  33. </div>
  34. <div class="text">社会类</div>
  35. </div>
  36. <div class="one-bottom-item">
  37. <div class="chart">
  38. <PieSimpleChartCom :num="lxfb.myl" :total="lxfb.total" color="#EB90FF"/>
  39. </div>
  40. <div class="text">民用类</div>
  41. </div>
  42. </div>
  43. <div class="one-foot">
  44. <LxfbZxlChartCom :online="lxfb.online" :offline="lxfb.offline"/>
  45. <LxfbCxChartCom :value="lxfb.cx"/>
  46. </div>
  47. </FocusContentCom>
  48. <div class="__gis-business-main_title">全省TOP10</div>
  49. <FocusContentCom class="two">2</FocusContentCom>
  50. </div>
  51. </BusinessMainCom>
  52. </template>
  53. <script lang="ts">
  54. import {
  55. defineComponent,
  56. computed,
  57. onMounted,
  58. ref,
  59. reactive,
  60. watch,
  61. getCurrentInstance,
  62. ComponentInternalInstance,
  63. toRefs,
  64. nextTick
  65. } from 'vue'
  66. import {useStore} from 'vuex'
  67. import {useRouter, useRoute} from 'vue-router'
  68. import {ElMessage, ElMessageBox} from "element-plus";
  69. import BusinessMainCom from '../common/business-main.vue'
  70. import FocusContentCom from '../common/focus-content.vue'
  71. import StatisticTitleCom from "../common/statistic-title.vue";
  72. import PieSimpleChartCom from "../common/pie-simple-chart.vue";
  73. import LxfbZxlChartCom from "./lxfb-zxl-chart.vue";
  74. import LxfbCxChartCom from "./lxfb-cx-chart.vue";
  75. export default defineComponent({
  76. name: '',
  77. components: {
  78. PieSimpleChartCom,
  79. StatisticTitleCom,
  80. BusinessMainCom,
  81. FocusContentCom,
  82. LxfbZxlChartCom,
  83. LxfbCxChartCom,
  84. },
  85. props: {},
  86. setup(props, {emit}) {
  87. const store = useStore();
  88. const router = useRouter();
  89. const route = useRoute();
  90. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  91. const state = reactive({
  92. area: '',
  93. lxfb: {
  94. total: 35600,
  95. gal: 25988,
  96. shl: 9612,
  97. myl: 9612,
  98. online: 27768,
  99. offline: 7832,
  100. cx: 50
  101. }
  102. })
  103. onMounted(() => {
  104. })
  105. return {
  106. ...toRefs(state),
  107. }
  108. },
  109. })
  110. </script>
  111. <style scoped lang="scss">
  112. @import "../main";
  113. .resources {
  114. flex: 1;
  115. padding: 0 12px 10px 12px;
  116. display: flex;
  117. flex-direction: column;
  118. overflow: hidden;
  119. .area {
  120. margin-left: auto;
  121. height: 36px;
  122. width: 200px;
  123. }
  124. .one {
  125. height: 410px;
  126. .one-top {
  127. display: flex;
  128. align-items: center;
  129. padding: 22px 22px 20px 23px;
  130. >img {
  131. margin-right: 16px;
  132. }
  133. }
  134. .one-bottom {
  135. display: flex;
  136. justify-content: space-between;
  137. padding: 6px 12px 0 12px;
  138. .one-bottom-item {
  139. display: flex;
  140. flex-direction: column;
  141. align-items: center;
  142. .chart {
  143. width: 100px;
  144. height: 100px;
  145. }
  146. .text {
  147. margin-top: 8px;
  148. flex: 1;
  149. text-align: center;
  150. font-size: 12px;
  151. font-family: Microsoft YaHei;
  152. font-weight: 400;
  153. color: #434343;
  154. line-height: 14px;
  155. display: flex;
  156. align-items: center;
  157. justify-content: center;
  158. }
  159. }
  160. }
  161. .one-foot {
  162. display: flex;
  163. justify-content: space-between;
  164. padding: 22px 14px 0 26px;
  165. >div {
  166. width: 150px;
  167. height: 150px;
  168. }
  169. }
  170. }
  171. .two {
  172. flex: 1;
  173. }
  174. }
  175. </style>