index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. <template>
  2. <BusinessMainCom title="企业一张图">
  3. <div class="enterprise">
  4. <div class="__gis-business-main_title">数量统计</div>
  5. <FocusContentCom class="one" v-loading="loading.statistic">
  6. <div class="one-top">
  7. <img src="@/assets/images/gis-business/enterprise_icon1.png" alt=""/>
  8. <StatisticTitleCom title="企业总数" :num="statistic.qy.total" unit="家"/>
  9. </div>
  10. <div class="one-bottom">
  11. <div class="one-bottom-item">
  12. <div class="chart">
  13. <PieSimpleChartCom :num="statistic.qy.lgszyjkscsb" :total="statistic.qy.total" color="#00FFFF"/>
  14. </div>
  15. <div class="text">零关税自用<br/>进口生产设备</div>
  16. </div>
  17. <div class="one-bottom-item">
  18. <div class="chart">
  19. <PieSimpleChartCom :num="statistic.qy.jgzzmgs" :total="statistic.qy.total" color="#FFCC8F"/>
  20. </div>
  21. <div class="text">加工增值免关税</div>
  22. </div>
  23. <div class="one-bottom-item">
  24. <div class="chart">
  25. <PieSimpleChartCom :num="statistic.qy.lgsjkyfl" :total="statistic.qy.total" color="#EB90FF"/>
  26. </div>
  27. <div class="text">零关税进口<br/>原辅料</div>
  28. </div>
  29. </div>
  30. </FocusContentCom>
  31. <FocusContentCom class="two" v-loading="loading.statistic">
  32. <div class="two-main">
  33. <img src="@/assets/images/gis-business/enterprise_icon2.png" alt=""/>
  34. <StatisticTitleCom title="预警总数" :num="statistic.warning" unit="条"/>
  35. </div>
  36. </FocusContentCom>
  37. <div class="__gis-business-main_title">企业列表</div>
  38. <div class="form">
  39. <CusFormColumn
  40. labelWidth="44"
  41. :span="24"
  42. link="select"
  43. label="类型:"
  44. v-model:param="enterprise.tempForm.type"
  45. multiple
  46. collapse-tags
  47. :options="[
  48. {dictLabel: '零关税自用进口生产设备', dictValue: 'lgszyjkscsb'},
  49. {dictLabel: '加工增值免关税', dictValue: 'jgzzmgs'},
  50. {dictLabel: '零关税进口原辅料', dictValue: 'lgsjkyfl'},
  51. ]"
  52. />
  53. <div class="form-two">
  54. <CusFormColumn
  55. labelWidth="44"
  56. :span="24"
  57. label="搜索:"
  58. v-model:param="enterprise.tempForm.name"
  59. />
  60. <div class="__cus-buttons-2">
  61. <div class="__cus-button-submit __hover" @click="onSearch">搜索</div>
  62. <div class="__cus-button-cancel __hover" @click="onReset">重置</div>
  63. </div>
  64. </div>
  65. </div>
  66. <div class="table" v-loading="enterprise.table.loading">
  67. <div class="table-card">
  68. <template v-for="(item, index) in enterprise.table.data">
  69. <div class="table-card-item __hover" :class="{active: item.id === $store.state.gis.activeQyId}" @click="handleClick(item)">
  70. <img src="@/assets/images/gis-business/enterprise_list-icon1.png" alt=""/>
  71. <div class="table-card-item-right">
  72. <div class="table-card-item-right-top">
  73. <CusEllipsis :value="`${(enterprise.table.pageNum - 1) * enterprise.table.pageSize + index + 1}.${item.qymc}`"/>
  74. </div>
  75. <div class="table-card-item-right-bottom">
  76. <img src="@/assets/images/gis-business/enterprise_list-icon2.png" alt=""/>
  77. {{item.qykx}}
  78. </div>
  79. </div>
  80. </div>
  81. </template>
  82. </div>
  83. <el-pagination
  84. class="__cus-pagination"
  85. :current-page="enterprise.table.pageNum"
  86. :page-size="enterprise.table.pageSize"
  87. :total="enterprise.table.total"
  88. layout="total,prev,pager,next,jumper"
  89. @current-change="handleCurrentChange"
  90. />
  91. </div>
  92. </div>
  93. </BusinessMainCom>
  94. </template>
  95. <script lang="ts">
  96. import {
  97. defineComponent,
  98. computed,
  99. onMounted,
  100. ref,
  101. reactive,
  102. watch,
  103. getCurrentInstance,
  104. ComponentInternalInstance,
  105. toRefs,
  106. nextTick
  107. } from 'vue'
  108. import {useStore} from 'vuex'
  109. import {useRouter, useRoute} from 'vue-router'
  110. import {ElMessage, ElMessageBox} from "element-plus";
  111. import BusinessMainCom from '../common/business-main.vue'
  112. import FocusContentCom from '../common/focus-content.vue'
  113. import PieSimpleChartCom from '../common/pie-simple-chart.vue'
  114. import StatisticTitleCom from '../common/statistic-title.vue'
  115. import {enterpriseQuery, staticsQuery} from "@/api/modules/enterprise";
  116. export default defineComponent({
  117. name: '',
  118. components: {
  119. BusinessMainCom,
  120. FocusContentCom,
  121. PieSimpleChartCom,
  122. StatisticTitleCom
  123. },
  124. props: {},
  125. setup(props, {emit}) {
  126. const store = useStore();
  127. const router = useRouter();
  128. const route = useRoute();
  129. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  130. const state = reactive({
  131. enterprise: {
  132. form: {},
  133. tempForm: {
  134. type: '',
  135. name: ''
  136. },
  137. table: {
  138. data: <any>[],
  139. pageNum: 1,
  140. pageSize: 10,
  141. total: 0,
  142. loading: false
  143. }
  144. },
  145. statistic: {
  146. qy: {
  147. total: 0,
  148. lgszyjkscsb: 0,
  149. jgzzmgs: 0,
  150. lgsjkyfl: 0
  151. },
  152. warning: 0
  153. },
  154. loading: {
  155. statistic: false
  156. }
  157. })
  158. const onSearch = () => {
  159. state.enterprise.table.pageNum = 1
  160. state.enterprise.form = JSON.parse(JSON.stringify(state.enterprise.tempForm))
  161. handleSearch()
  162. }
  163. const onReset = () => {
  164. state.enterprise.tempForm = {
  165. name: '',
  166. type: ''
  167. }
  168. onSearch()
  169. }
  170. const handleCurrentChange = (val: number) => {
  171. state.enterprise.table.pageNum = val
  172. handleSearch()
  173. }
  174. const handleSearch = () => {
  175. state.enterprise.table.data = []
  176. const params = {
  177. pageNumber: state.enterprise.table.pageNum,
  178. pageSize: state.enterprise.table.pageSize,
  179. }
  180. if (state.enterprise.form.name) {
  181. params.entName = state.enterprise.form.name
  182. }
  183. if (state.enterprise.form.type?.length > 0) {
  184. params.entType = state.enterprise.form.type.map(v => store.getters['dictionary/elementTypeMap'].get(v)).join(',')
  185. }
  186. state.enterprise.table.loading = true
  187. that.$api.enterpriseQuery(params).then((res: any) => {
  188. state.enterprise.table.data = res.datas || []
  189. state.enterprise.table.total = res.recordCount || 0
  190. state.enterprise.table.loading = false
  191. }).catch(() => {
  192. state.enterprise.table.loading = false
  193. })
  194. }
  195. const initStatistic = () => {
  196. state.loading.statistic = true
  197. that.$api.staticsQuery().then(res => {
  198. if (res.resp_code === 0) {
  199. state.statistic = {
  200. qy: {
  201. total: res.datas?.count || 0,
  202. lgszyjkscsb: res.datas?.deviceCount || 0,
  203. jgzzmgs: res.datas?.noTaxCount || 0,
  204. lgsjkyfl: res.datas?.materialCount || 0
  205. },
  206. warning: res.datas?.alertCount || 0
  207. }
  208. }
  209. state.loading.statistic = false
  210. }).catch(() => {
  211. state.loading.statistic = false
  212. })
  213. }
  214. const handleClick = (item) => {
  215. const qyLayer = store.state.gis.map.getLayers().getArray().filter(v => v.get('layerName') === 'qy')?.[0]
  216. if (qyLayer) {
  217. const f = qyLayer.getSource().getFeatureById(item.id)
  218. if (f) {
  219. if (item.id === store.state.gis.activeQyId) {
  220. f.get('reset')()
  221. } else {
  222. f.get('mockClick')()
  223. store.state.gis.map.getView().animate({
  224. center: f.getGeometry().getCoordinates(),
  225. zoom: store.state.gis.map.getView().getMaxZoom(),
  226. });
  227. }
  228. } else {
  229. ElMessage.warning('未找到该企业位置!')
  230. }
  231. }
  232. }
  233. onMounted(() => {
  234. state.enterprise.form = JSON.parse(JSON.stringify(state.enterprise.tempForm))
  235. handleSearch()
  236. initStatistic()
  237. })
  238. return {
  239. ...toRefs(state),
  240. onSearch,
  241. onReset,
  242. handleCurrentChange,
  243. handleClick
  244. }
  245. },
  246. })
  247. </script>
  248. <style scoped lang="scss">
  249. @import "../main";
  250. .enterprise {
  251. flex: 1;
  252. padding: 0 12px 10px 12px;
  253. display: flex;
  254. flex-direction: column;
  255. overflow: hidden;
  256. .one {
  257. height: 238px;
  258. display: flex;
  259. flex-direction: column;
  260. .one-top {
  261. display: flex;
  262. align-items: center;
  263. padding: 12px 22px 20px 23px;
  264. >img {
  265. margin-right: 16px;
  266. }
  267. }
  268. .one-bottom {
  269. display: flex;
  270. justify-content: space-between;
  271. padding: 0 12px;
  272. .one-bottom-item {
  273. display: flex;
  274. flex-direction: column;
  275. align-items: center;
  276. .chart {
  277. width: 100px;
  278. height: 100px;
  279. }
  280. .text {
  281. margin-top: 8px;
  282. flex: 1;
  283. text-align: center;
  284. font-size: 12px;
  285. font-family: Microsoft YaHei;
  286. font-weight: 400;
  287. color: #434343;
  288. line-height: 14px;
  289. display: flex;
  290. align-items: center;
  291. justify-content: center;
  292. }
  293. }
  294. }
  295. }
  296. .two {
  297. margin-top: 10px;
  298. height: 100px;
  299. .two-main {
  300. width: 100%;
  301. height: 100%;
  302. display: flex;
  303. align-items: center;
  304. padding: 12px 22px 20px 23px;
  305. >img {
  306. margin-right: 16px;
  307. }
  308. }
  309. }
  310. .form {
  311. :deep(.el-form-item) {
  312. margin-bottom: 7px;
  313. }
  314. .form-two {
  315. display: flex;
  316. align-items: flex-start;
  317. .cus-form-column {
  318. flex: 1;
  319. margin-right: 8px;
  320. }
  321. }
  322. }
  323. .table {
  324. flex: 1;
  325. display: flex;
  326. flex-direction: column;
  327. overflow: hidden;
  328. .table-card {
  329. flex: 1;
  330. overflow-y: auto;
  331. display: grid;
  332. row-gap: 10px;
  333. .table-card-item {
  334. overflow: hidden;
  335. width: 100%;
  336. height: 62px;
  337. border: 1px solid #D6D6D6;
  338. border-radius: 2px;
  339. display: flex;
  340. align-items: center;
  341. padding: 11px 8px;
  342. &.active {
  343. background: rgba(16,140,243,0.1);
  344. border: 1px solid #1270DA;
  345. }
  346. .table-card-item-right {
  347. overflow: hidden;
  348. flex: 1;
  349. margin-left: 6px;
  350. display: flex;
  351. flex-direction: column;
  352. justify-content: space-between;
  353. .table-card-item-right-top {
  354. font-size: 16px;
  355. font-family: Microsoft YaHei;
  356. font-weight: bold;
  357. color: #434343;
  358. }
  359. .table-card-item-right-bottom {
  360. margin-top: 7px;
  361. font-size: 14px;
  362. font-family: Microsoft YaHei;
  363. font-weight: 400;
  364. color: #FF8217;
  365. display: flex;
  366. align-items: center;
  367. >img {
  368. margin-right: 6px;
  369. }
  370. }
  371. }
  372. }
  373. }
  374. .__cus-pagination {
  375. height: 20px;
  376. }
  377. }
  378. }
  379. </style>