index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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">
  30. <div class="one-main">
  31. <div class="one-main-left">
  32. <div class="one-main-left-title">
  33. <div>总数</div>
  34. <div>{{ sjsl.total }}<span>起</span></div>
  35. </div>
  36. <img src="@/assets/images/gis-business/clue_sh-bg.png" alt=""/>
  37. </div>
  38. <div class="one-main-right">
  39. <div class="one-main-right-total">国籍分布</div>
  40. <div class="one-main-right-info">
  41. <SjslChartCom title="国内" color="#00BD7E" :num="sjsl.in" :total="sjsl.total"/>
  42. <SjslChartCom title="国外" color="#FFA254" :num="sjsl.out" :total="sjsl.total"/>
  43. <SjslChartCom title="未知" color="#783FD4" :num="sjsl.none" :total="sjsl.total"/>
  44. </div>
  45. </div>
  46. </div>
  47. </FocusContentCom>
  48. <div class="__gis-business-main_title">热点类型</div>
  49. <FocusContentCom class="two">2</FocusContentCom>
  50. <div class="__gis-business-main_title">类型占比</div>
  51. <FocusContentCom class="three">
  52. <LxzbChartCom :data="lxzbData"/>
  53. </FocusContentCom>
  54. <div class="__gis-business-main_title">反走私事件列表</div>
  55. <div class="form-two">
  56. <CusFormColumn
  57. labelWidth="44"
  58. :span="24"
  59. label="搜索:"
  60. v-model:param="fzssj.tempForm.text"
  61. />
  62. <div class="__cus-buttons-2">
  63. <div class="__cus-button-submit __hover" @click="onSearchFzssj">搜索</div>
  64. <div class="__cus-button-cancel __hover" @click="onResetFzssj">重置</div>
  65. </div>
  66. </div>
  67. <div class="table" :style="`height: calc(66px + ${fzssj.table.data.length} * 40px);`">
  68. <CusTable
  69. ref="ref_cusTable"
  70. :tableData="fzssj.table.data"
  71. :tableHead="fzssj.table.head"
  72. :total="fzssj.table.total"
  73. :page="fzssj.table.pageNum"
  74. :pageSize="fzssj.table.pageSize"
  75. @handlePage="handlePage"
  76. >
  77. </CusTable>
  78. </div>
  79. </div>
  80. </div>
  81. </BusinessMainCom>
  82. </template>
  83. <script lang="ts">
  84. import {
  85. defineComponent,
  86. computed,
  87. onMounted,
  88. ref,
  89. reactive,
  90. watch,
  91. getCurrentInstance,
  92. ComponentInternalInstance,
  93. toRefs,
  94. nextTick
  95. } from 'vue'
  96. import {useStore} from 'vuex'
  97. import {useRouter, useRoute} from 'vue-router'
  98. import {ElMessage, ElMessageBox} from "element-plus";
  99. import BusinessMainCom from '../common/business-main.vue'
  100. import FocusContentCom from '../common/focus-content.vue'
  101. import SjslChartCom from './sjsl-chart.vue'
  102. import LxzbChartCom from './lxzb-chart.vue'
  103. export default defineComponent({
  104. name: '',
  105. components: {
  106. BusinessMainCom,
  107. FocusContentCom,
  108. SjslChartCom,
  109. LxzbChartCom,
  110. },
  111. props: {},
  112. setup(props, {emit}) {
  113. const store = useStore();
  114. const router = useRouter();
  115. const route = useRoute();
  116. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  117. const state = reactive({
  118. situation: {
  119. form: {},
  120. tempForm: {
  121. datetime: <Array<string>>[]
  122. },
  123. },
  124. datetimeType: '',
  125. datetimeMapper: [
  126. {label: '近一月', value: '1'},
  127. {label: '近三月', value: '2'},
  128. {label: '近六月', value: '3'},
  129. {label: '近一年', value: '4'},
  130. {label: '自定义', value: '0'},
  131. ],
  132. sjsl: {
  133. total: 2285,
  134. in: 380,
  135. out: 1226,
  136. none: 679
  137. },
  138. fzssj: {
  139. form: {},
  140. tempForm: {
  141. text: ''
  142. },
  143. table: {
  144. head: [
  145. {value: "location", label: "查获地点", show: true,},
  146. {value: "type", label: "物品归类", show: true},
  147. {value: "date", label: "立案审批日期", show: true, width: 100},
  148. ],
  149. data: <any>[],
  150. pageNum: 1,
  151. pageSize: 10,
  152. total: 0
  153. }
  154. },
  155. lxzbData: [
  156. {value: '171', name: '反走私'},
  157. {value: '101', name: '酒类'},
  158. {value: '70', name: '苹果手机'},
  159. {value: '230', name: '其他'},
  160. {value: '171', name: '手表'},
  161. ]
  162. })
  163. const onSearch = () => {
  164. state.situation.form = JSON.parse(JSON.stringify(state.situation.tempForm))
  165. }
  166. const onReset = () => {
  167. state.datetimeType = '1'
  168. const end = new Date().getTime()
  169. const start = end - that.$util.oneDayTime * 30
  170. state.situation.tempForm = {
  171. datetime: [
  172. that.$util.YMDHms(start),
  173. that.$util.YMDHms(end),
  174. ],
  175. }
  176. onSearch()
  177. }
  178. watch(() => state.datetimeType, (n) => {
  179. const end = new Date().getTime()
  180. if (n === '1') {
  181. const start = end - that.$util.oneDayTime * 30
  182. state.situation.tempForm.datetime = [
  183. that.$util.YMDHms(start),
  184. that.$util.YMDHms(end),
  185. ]
  186. } else if (n === '2') {
  187. const start = end - that.$util.oneDayTime * 90
  188. state.situation.tempForm.datetime = [
  189. that.$util.YMDHms(start),
  190. that.$util.YMDHms(end),
  191. ]
  192. } else if (n === '3') {
  193. const start = end - that.$util.oneDayTime * 180
  194. state.situation.tempForm.datetime = [
  195. that.$util.YMDHms(start),
  196. that.$util.YMDHms(end),
  197. ]
  198. } else if (n === '4') {
  199. const start = end - that.$util.oneDayTime * 360
  200. state.situation.tempForm.datetime = [
  201. that.$util.YMDHms(start),
  202. that.$util.YMDHms(end),
  203. ]
  204. }
  205. })
  206. const handlePage = ({page, pageSize}: any) => {
  207. state.fzssj.table.pageNum = page
  208. state.fzssj.table.pageSize = pageSize
  209. initFzssj()
  210. }
  211. const initFzssj = () => {
  212. state.fzssj.table.data = []
  213. state.fzssj.table.total = 0
  214. for (let i = 0; i < 10; i++) {
  215. state.fzssj.table.data.push({
  216. location: '每南省三童市天涯区南边海路136号',
  217. type: '物品归类',
  218. date: '2023-11-05',
  219. })
  220. }
  221. }
  222. const onSearchFzssj = () => {
  223. state.fzssj.table.pageNum = 1
  224. state.fzssj.form = JSON.parse(JSON.stringify(state.fzssj.tempForm))
  225. initFzssj()
  226. }
  227. const onResetFzssj = () => {
  228. state.fzssj.tempForm.text = ''
  229. onSearchFzssj()
  230. }
  231. onMounted(() => {
  232. state.datetimeType = '1'
  233. state.situation.form = JSON.parse(JSON.stringify(state.situation.tempForm))
  234. state.fzssj.form = JSON.parse(JSON.stringify(state.fzssj.tempForm))
  235. })
  236. return {
  237. ...toRefs(state),
  238. onSearch,
  239. onReset,
  240. handlePage,
  241. initFzssj,
  242. onSearchFzssj,
  243. onResetFzssj,
  244. }
  245. },
  246. })
  247. </script>
  248. <style scoped lang="scss">
  249. @import "../main";
  250. .situation {
  251. flex: 1;
  252. padding: 0 12px 10px 12px;
  253. display: flex;
  254. flex-direction: column;
  255. overflow: hidden;
  256. .statistic-form {
  257. :deep(.el-form-item) {
  258. margin-bottom: 7px;
  259. .el-range-editor {
  260. .el-range-separator {
  261. padding: 0;
  262. }
  263. .el-range-input {
  264. width: calc((100% - 40px) / 2);
  265. font-size: 12px;
  266. }
  267. }
  268. }
  269. .datetime-buttons {
  270. padding-left: 72px;
  271. margin-bottom: 7px;
  272. width: 100%;
  273. height: 24px;
  274. display: flex;
  275. justify-content: space-between;
  276. .datetime-buttons-item {
  277. width: 58px;
  278. height: 100%;
  279. border-radius: 2px;
  280. border: 1px solid #0093FF;
  281. font-size: 12px;
  282. font-family: PingFang SC, PingFang SC;
  283. font-weight: 400;
  284. color: #108DF3;
  285. display: flex;
  286. align-items: center;
  287. justify-content: center;
  288. &.active {
  289. background-color: #79C6FF;
  290. color: #FFFFFF;
  291. border-color: #79C6FF;
  292. }
  293. }
  294. }
  295. .__cus-buttons-2 {
  296. height: 28px;
  297. >div {
  298. font-size: 12px;
  299. }
  300. }
  301. }
  302. .statistic-content {
  303. flex: 1;
  304. overflow-y: auto;
  305. .one {
  306. height: 150px;
  307. .one-main {
  308. width: 100%;
  309. height: 100%;
  310. padding: 20px 16px;
  311. display: flex;
  312. align-items: center;
  313. .one-main-left {
  314. height: 100%;
  315. width: 113px;
  316. position: relative;
  317. display: flex;
  318. align-items: center;
  319. justify-content: center;
  320. .one-main-left-title {
  321. position: absolute;
  322. bottom: 55px;
  323. display: flex;
  324. flex-direction: column;
  325. align-items: center;
  326. justify-content: center;
  327. >div:nth-child(1) {
  328. font-size: 14px;
  329. font-family: PingFang SC;
  330. font-weight: 600;
  331. color: #434343;
  332. }
  333. >div:nth-child(2) {
  334. font-size: 26px;
  335. font-family: YouSheBiaoTiHei;
  336. font-weight: 400;
  337. line-height: 22px;
  338. background: linear-gradient(180deg, #50EAFF 0%, #007EFF 100%);
  339. -webkit-background-clip: text;
  340. -webkit-text-fill-color: transparent;
  341. >span {
  342. font-size: 16px;
  343. }
  344. }
  345. }
  346. >img {
  347. z-index: -1;
  348. position: absolute;
  349. bottom: 7px;
  350. }
  351. }
  352. .one-main-right {
  353. flex: 1;
  354. margin-left: 10px;
  355. display: flex;
  356. flex-direction: column;
  357. justify-content: center;
  358. align-items: center;
  359. .one-main-right-total {
  360. display: flex;
  361. align-items: center;
  362. padding-left: 10px;
  363. background: linear-gradient(270deg, rgba(18,128,241,0.05) 0%, rgba(18,128,241,0.1) 60%, rgba(18,128,241,0.2) 100%);
  364. width: 100%;
  365. height: 24px;
  366. font-size: 12px;
  367. font-family: PingFang SC;
  368. font-weight: 600;
  369. color: #434343;
  370. position: relative;
  371. &:before {
  372. content: '';
  373. position: absolute;
  374. width: 2px;
  375. height: 100%;
  376. left: 0;
  377. background-color: #1DA5FF;
  378. }
  379. }
  380. .one-main-right-info {
  381. width: 100%;
  382. height: 68px;
  383. padding: 10px 0 0 10px;
  384. display: flex;
  385. >div {
  386. width: 67px;
  387. height: 67px;
  388. }
  389. }
  390. }
  391. }
  392. }
  393. .two {
  394. height: 220px;
  395. }
  396. .three {
  397. height: 190px;
  398. }
  399. .form-two {
  400. display: flex;
  401. align-items: flex-start;
  402. :deep(.el-form-item) {
  403. margin-bottom: 7px;
  404. }
  405. .cus-form-column {
  406. flex: 1;
  407. margin-right: 8px;
  408. }
  409. }
  410. .table {
  411. }
  412. }
  413. }
  414. </style>