index.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <template>
  2. <BusinessMainCom title="态势一张图">
  3. <div class="situation">
  4. <div class="statistic-form">
  5. <CusFormColumn
  6. labelWidth="72"
  7. :span="24"
  8. label="时间范围:"
  9. link="datetime"
  10. type="datetimerange"
  11. v-model:param="situation.tempForm.datetime"
  12. :disabled="datetimeType !== '0'"
  13. :disabled-date="(v) => v > new Date()"
  14. />
  15. <div class="datetime-buttons">
  16. <template v-for="item in datetimeMapper">
  17. <div class="datetime-buttons-item __hover" :class="{active: datetimeType === item.value}" @click="datetimeType = item.value">
  18. {{item.label}}
  19. </div>
  20. </template>
  21. </div>
  22. <div class="__cus-buttons-2">
  23. <div class="__cus-button-submit __hover" @click="onSearch">搜索</div>
  24. <div class="__cus-button-cancel __hover" @click="onReset">重置</div>
  25. </div>
  26. </div>
  27. <div class="statistic-content">
  28. <div class="__gis-business-main_title">事件数量</div>
  29. <FocusContentCom class="one">1</FocusContentCom>
  30. <div class="__gis-business-main_title">热点类型</div>
  31. <FocusContentCom class="two">2</FocusContentCom>
  32. <div class="__gis-business-main_title">类型占比</div>
  33. <FocusContentCom class="three">3</FocusContentCom>
  34. <div class="__gis-business-main_title">反走私事件列表</div>
  35. <div class="form-two">
  36. <CusFormColumn
  37. labelWidth="44"
  38. :span="24"
  39. label="搜索:"
  40. v-model:param="fzssj.tempForm.text"
  41. />
  42. <div class="__cus-buttons-2">
  43. <div class="__cus-button-submit __hover" @click="onSearchFzssj">搜索</div>
  44. <div class="__cus-button-cancel __hover" @click="onResetFzssj">重置</div>
  45. </div>
  46. </div>
  47. <div class="table" :style="`height: calc(66px + ${fzssj.table.data.length} * 40px);`">
  48. <CusTable
  49. ref="ref_cusTable"
  50. :tableData="fzssj.table.data"
  51. :tableHead="fzssj.table.head"
  52. :total="fzssj.table.total"
  53. :page="fzssj.table.pageNum"
  54. :pageSize="fzssj.table.pageSize"
  55. @handlePage="handlePage"
  56. >
  57. </CusTable>
  58. </div>
  59. </div>
  60. </div>
  61. </BusinessMainCom>
  62. </template>
  63. <script lang="ts">
  64. import {
  65. defineComponent,
  66. computed,
  67. onMounted,
  68. ref,
  69. reactive,
  70. watch,
  71. getCurrentInstance,
  72. ComponentInternalInstance,
  73. toRefs,
  74. nextTick
  75. } from 'vue'
  76. import {useStore} from 'vuex'
  77. import {useRouter, useRoute} from 'vue-router'
  78. import {ElMessage, ElMessageBox} from "element-plus";
  79. import BusinessMainCom from '../common/business-main.vue'
  80. import FocusContentCom from '../common/focus-content.vue'
  81. export default defineComponent({
  82. name: '',
  83. components: {
  84. BusinessMainCom,
  85. FocusContentCom,
  86. },
  87. props: {},
  88. setup(props, {emit}) {
  89. const store = useStore();
  90. const router = useRouter();
  91. const route = useRoute();
  92. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  93. const state = reactive({
  94. situation: {
  95. form: {},
  96. tempForm: {
  97. datetime: <Array<string>>[]
  98. },
  99. },
  100. datetimeType: '',
  101. datetimeMapper: [
  102. {label: '近一月', value: '1'},
  103. {label: '近三月', value: '2'},
  104. {label: '近六月', value: '3'},
  105. {label: '近一年', value: '4'},
  106. {label: '自定义', value: '0'},
  107. ],
  108. fzssj: {
  109. form: {},
  110. tempForm: {
  111. text: ''
  112. },
  113. table: {
  114. head: [
  115. {value: "location", label: "查获地点", show: true,},
  116. {value: "type", label: "物品归类", show: true},
  117. {value: "date", label: "立案审批日期", show: true, width: 100},
  118. ],
  119. data: <any>[],
  120. pageNum: 1,
  121. pageSize: 10,
  122. total: 0
  123. }
  124. },
  125. })
  126. const onSearch = () => {
  127. state.situation.form = JSON.parse(JSON.stringify(state.situation.tempForm))
  128. }
  129. const onReset = () => {
  130. state.datetimeType = '1'
  131. const end = new Date().getTime()
  132. const start = end - that.$util.oneDayTime * 30
  133. state.situation.tempForm = {
  134. datetime: [
  135. that.$util.YMDHms(start),
  136. that.$util.YMDHms(end),
  137. ],
  138. }
  139. onSearch()
  140. }
  141. watch(() => state.datetimeType, (n) => {
  142. const end = new Date().getTime()
  143. if (n === '1') {
  144. const start = end - that.$util.oneDayTime * 30
  145. state.situation.tempForm.datetime = [
  146. that.$util.YMDHms(start),
  147. that.$util.YMDHms(end),
  148. ]
  149. } else if (n === '2') {
  150. const start = end - that.$util.oneDayTime * 90
  151. state.situation.tempForm.datetime = [
  152. that.$util.YMDHms(start),
  153. that.$util.YMDHms(end),
  154. ]
  155. } else if (n === '3') {
  156. const start = end - that.$util.oneDayTime * 180
  157. state.situation.tempForm.datetime = [
  158. that.$util.YMDHms(start),
  159. that.$util.YMDHms(end),
  160. ]
  161. } else if (n === '4') {
  162. const start = end - that.$util.oneDayTime * 360
  163. state.situation.tempForm.datetime = [
  164. that.$util.YMDHms(start),
  165. that.$util.YMDHms(end),
  166. ]
  167. }
  168. })
  169. const handlePage = ({page, pageSize}: any) => {
  170. state.fzssj.table.pageNum = page
  171. state.fzssj.table.pageSize = pageSize
  172. initFzssj()
  173. }
  174. const initFzssj = () => {
  175. state.fzssj.table.data = []
  176. state.fzssj.table.total = 0
  177. for (let i = 0; i < 10; i++) {
  178. state.fzssj.table.data.push({
  179. location: '每南省三童市天涯区南边海路136号',
  180. type: '物品归类',
  181. date: '2023-11-05',
  182. })
  183. }
  184. }
  185. const onSearchFzssj = () => {
  186. state.fzssj.table.pageNum = 1
  187. state.fzssj.form = JSON.parse(JSON.stringify(state.fzssj.tempForm))
  188. initFzssj()
  189. }
  190. const onResetFzssj = () => {
  191. state.fzssj.tempForm.text = ''
  192. onSearchFzssj()
  193. }
  194. onMounted(() => {
  195. state.datetimeType = '1'
  196. state.situation.form = JSON.parse(JSON.stringify(state.situation.tempForm))
  197. state.fzssj.form = JSON.parse(JSON.stringify(state.fzssj.tempForm))
  198. })
  199. return {
  200. ...toRefs(state),
  201. onSearch,
  202. onReset,
  203. handlePage,
  204. initFzssj,
  205. onSearchFzssj,
  206. onResetFzssj,
  207. }
  208. },
  209. })
  210. </script>
  211. <style scoped lang="scss">
  212. @import "../main";
  213. .situation {
  214. flex: 1;
  215. padding: 0 12px 10px 12px;
  216. display: flex;
  217. flex-direction: column;
  218. overflow: hidden;
  219. .statistic-form {
  220. :deep(.el-form-item) {
  221. margin-bottom: 7px;
  222. .el-range-editor {
  223. .el-range-separator {
  224. padding: 0;
  225. }
  226. .el-range-input {
  227. width: calc((100% - 40px) / 2);
  228. font-size: 12px;
  229. }
  230. }
  231. }
  232. .datetime-buttons {
  233. padding-left: 72px;
  234. margin-bottom: 7px;
  235. width: 100%;
  236. height: 24px;
  237. display: flex;
  238. justify-content: space-between;
  239. .datetime-buttons-item {
  240. width: 58px;
  241. height: 100%;
  242. border-radius: 2px;
  243. border: 1px solid #0093FF;
  244. font-size: 14px;
  245. font-family: PingFang SC, PingFang SC;
  246. font-weight: 400;
  247. color: #108DF3;
  248. display: flex;
  249. align-items: center;
  250. justify-content: center;
  251. &.active {
  252. background-color: #79C6FF;
  253. color: #FFFFFF;
  254. border-color: #79C6FF;
  255. }
  256. }
  257. }
  258. .__cus-buttons-2 {
  259. height: 28px;
  260. }
  261. }
  262. .statistic-content {
  263. flex: 1;
  264. overflow-y: auto;
  265. .one {
  266. height: 150px;
  267. }
  268. .two {
  269. height: 220px;
  270. }
  271. .three {
  272. height: 190px;
  273. }
  274. .form-two {
  275. display: flex;
  276. align-items: flex-start;
  277. :deep(.el-form-item) {
  278. margin-bottom: 7px;
  279. }
  280. .cus-form-column {
  281. flex: 1;
  282. margin-right: 8px;
  283. }
  284. }
  285. .table {
  286. }
  287. }
  288. }
  289. </style>