select.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. <template>
  2. <div class="select-com">
  3. <div class="draw __box-shadow">
  4. <div class="tools">
  5. <div class="label">空间选择:</div>
  6. <div class="right">
  7. <div class="item __hover" :class="{active: selectParams.type === 'circle'}" @click="mapDraw('circle')">
  8. <img src="@/assets/images/gis-layout/gis-layout-tools_select-circle.png" alt=""/>圆形
  9. </div>
  10. <div class="line"/>
  11. <div class="item __hover" :class="{active: selectParams.type === 'rectangle'}" @click="mapDraw('rectangle')">
  12. <img src="@/assets/images/gis-layout/gis-layout-tools_select-rectangle.png" alt=""/>矩形
  13. </div>
  14. <div class="line"/>
  15. <div class="item __hover" :class="{active: selectParams.type === 'polygon'}" @click="mapDraw('polygon')">
  16. <img src="@/assets/images/gis-layout/gis-layout-tools_select-polygon.png" alt=""/>多边形
  17. </div>
  18. <div class="line"/>
  19. <div class="item __hover" @click="mapClear">
  20. <img src="@/assets/images/gis-layout/gis-layout-tools_select-clear.png" alt=""/>清除
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="result __box-shadow" v-if="selectParams.wkt">
  26. <div class="head">查询结果</div>
  27. <div class="chart">
  28. <SelectChartCom :data="hasTypeCpt"/>
  29. </div>
  30. <div class="data">
  31. <div class="form">
  32. <CusFormColumn
  33. labelWidth="50"
  34. :span="24"
  35. link="select"
  36. label="类型:"
  37. v-model:param="result.tempForm.type"
  38. :options="hasTypeCpt"
  39. />
  40. <div class="two">
  41. <CusFormColumn
  42. labelWidth="50"
  43. :span="24"
  44. label="搜索:"
  45. v-model:param="result.tempForm.name"
  46. />
  47. <div class="__cus-buttons-2">
  48. <div class="__cus-button-submit __hover" @click="onSearch">搜索</div>
  49. <div class="__cus-button-cancel __hover" @click="onReset">重置</div>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="table">
  54. <CusTable
  55. ref="ref_cusTable"
  56. :tableData="resultTableDataCpt"
  57. :tableHead="result.table.head"
  58. :total="resultTableFilterCpt.length"
  59. :page="result.table.pageNum"
  60. :pageSize="result.table.pageSize"
  61. @handlePage="handlePage"
  62. >
  63. <template #type-column-value="{ scope }">
  64. {{$store.getters['dictionary/elementTypeMap'].get(scope.row.type) ?? scope.row.type}}
  65. </template>
  66. </CusTable>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. </template>
  72. <script lang="ts">
  73. import {
  74. defineComponent,
  75. computed,
  76. onMounted,
  77. ref,
  78. reactive,
  79. watch,
  80. getCurrentInstance,
  81. ComponentInternalInstance,
  82. toRefs,
  83. nextTick
  84. } from 'vue'
  85. import {useStore} from 'vuex'
  86. import {useRouter, useRoute} from 'vue-router'
  87. import {ElMessage, ElMessageBox} from "element-plus";
  88. import SelectChartCom from './select-chart.vue'
  89. export default defineComponent({
  90. name: '',
  91. components: {
  92. SelectChartCom
  93. },
  94. props: {
  95. map: {
  96. required: true
  97. },
  98. mapFunc: <any>{
  99. required: true
  100. }
  101. },
  102. setup(props, {emit}) {
  103. const store = useStore();
  104. const router = useRouter();
  105. const route = useRoute();
  106. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  107. const state = reactive({
  108. selectParams: {
  109. type: '',
  110. wkt: '22'
  111. },
  112. result: {
  113. form: {},
  114. tempForm: {
  115. type: '',
  116. name: ''
  117. },
  118. table: {
  119. head: [
  120. {value: "type", label: "类型", show: true, align: 'left', width: 100},
  121. {value: "name", label: "名称", show: true, align: 'left'},
  122. ],
  123. data: <any>[],
  124. pageNum: 1,
  125. pageSize: 10,
  126. }
  127. }
  128. })
  129. const mapClear = () => {
  130. props.mapFunc.drawClear()
  131. state.selectParams = {
  132. type: '',
  133. wkt: ''
  134. }
  135. state.result.table.data = []
  136. state.result.table.pageNum = 1
  137. state.result.form = {
  138. type: '',
  139. name: ''
  140. }
  141. }
  142. const mapDraw = (type) => {
  143. props.mapFunc.draw(type).then(({feature, wkt}) => {
  144. state.selectParams.type === type
  145. state.selectParams.wkt = wkt
  146. initData()
  147. }).catch(() => {})
  148. }
  149. const initData = () => {
  150. state.result.table.data = []
  151. state.result.table.pageNum = 1
  152. for (let i = 0; i <= 10000; i++) {
  153. const dict = store.state.dictionary.elementTypeList
  154. const p = dict[that.$util.randomNum(0, dict.length - 1)]
  155. const obj = {
  156. name: p.dictLabel + '_' + i,
  157. type: p.dictValue,
  158. }
  159. state.result.table.data.push(obj)
  160. }
  161. }
  162. const resultTableFilterCpt = computed(() => {
  163. return state.result.table.data.filter(v => (!state.result.form.type || v.type === state.result.form.type) && v.name.includes(state.result.form.name))
  164. })
  165. const resultTableDataCpt = computed(() => {
  166. return resultTableFilterCpt.value.slice((state.result.table.pageNum - 1) * state.result.table.pageSize, state.result.table.pageNum * state.result.table.pageSize)
  167. })
  168. const handlePage = ({page, pageSize}: any) => {
  169. state.result.table.pageNum = page
  170. state.result.table.pageSize = pageSize
  171. }
  172. const hasTypeCpt = computed(() => {
  173. const m = new Map()
  174. state.result.table.data.forEach(v => {
  175. if (m.has(v.type)) {
  176. m.set(v.type, m.get(v.type) + 1)
  177. } else {
  178. m.set(v.type, 1)
  179. }
  180. })
  181. const arr: any = []
  182. m.forEach((v, k) => {
  183. arr.push({
  184. dictValue: k,
  185. dictLabel: store.getters['dictionary/elementTypeMap'].get(k),
  186. num: v
  187. })
  188. })
  189. return arr
  190. })
  191. const onSearch = () => {
  192. state.result.table.pageNum = 1
  193. state.result.form = JSON.parse(JSON.stringify(state.result.tempForm))
  194. }
  195. const onReset = () => {
  196. state.result.tempForm = {
  197. name: '',
  198. type: ''
  199. }
  200. onSearch()
  201. }
  202. onMounted(() => {
  203. initData()
  204. state.result.form = JSON.parse(JSON.stringify(state.result.tempForm))
  205. })
  206. return {
  207. ...toRefs(state),
  208. mapDraw,
  209. mapClear,
  210. resultTableFilterCpt,
  211. resultTableDataCpt,
  212. handlePage,
  213. hasTypeCpt,
  214. onSearch,
  215. onReset
  216. }
  217. },
  218. })
  219. </script>
  220. <style scoped lang="scss">
  221. .select-com {
  222. position: fixed;
  223. width: 404px;
  224. height: calc(100% - 100px);
  225. display: flex;
  226. flex-direction: column;
  227. .draw {
  228. width: 100%;
  229. background-color: #FFFFFF;
  230. padding: 12px 14px;
  231. .tools {
  232. display: flex;
  233. align-items: center;
  234. .label {
  235. width: 72px;
  236. font-size: 14px;
  237. font-family: Microsoft YaHei;
  238. font-weight: 400;
  239. color: #4C4C4C;
  240. display: flex;
  241. align-items: center;
  242. }
  243. .right {
  244. flex: 1;
  245. height: 36px;
  246. background-color: rgba(170, 198, 238, 0.2);
  247. border-radius: 4px;
  248. display: flex;
  249. align-items: center;
  250. justify-content: space-between;
  251. padding: 0 10px;
  252. .item {
  253. display: flex;
  254. align-items: center;
  255. font-size: 14px;
  256. font-family: Microsoft YaHei;
  257. font-weight: 400;
  258. color: #4C4C4C;
  259. >img {
  260. margin-right: 8px;
  261. }
  262. &:hover {
  263. color: #1174DB;
  264. }
  265. }
  266. .line {
  267. width: 1px;
  268. height: 16px;
  269. background: linear-gradient(0deg, rgba(17,116,219,0) 0%, rgba(17,116,219,0.99) 50%, rgba(17,116,219,0) 100%);
  270. }
  271. }
  272. }
  273. }
  274. .result {
  275. background-color: #FFFFFF;
  276. margin-top: 2px;
  277. flex: 1;
  278. display: flex;
  279. flex-direction: column;
  280. .head {
  281. height: 40px;
  282. font-size: 16px;
  283. font-family: Microsoft YaHei;
  284. font-weight: bold;
  285. color: #0096FF;
  286. display: flex;
  287. align-items: center;
  288. padding-left: 14px;
  289. border-bottom: 1px solid #EEEEEE;
  290. }
  291. .chart {
  292. height: 212px;
  293. width: 100%;
  294. }
  295. .data {
  296. flex: 1;
  297. padding: 0 12px 12px 12px;
  298. display: flex;
  299. flex-direction: column;
  300. .form {
  301. :deep(.el-form-item) {
  302. margin-bottom: 7px;
  303. }
  304. .two {
  305. display: flex;
  306. align-items: flex-start;
  307. .cus-form-column {
  308. flex: 1;
  309. margin-right: 8px;
  310. }
  311. }
  312. }
  313. .table {
  314. flex: 1;
  315. }
  316. }
  317. }
  318. }
  319. </style>