index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <template>
  2. <DragWindow
  3. v-if="show"
  4. @onClose="$emit('update:show', false)"
  5. title="预警配置"
  6. v-model:layout="state.layout"
  7. close
  8. expend
  9. >
  10. <div class="config" v-if="show" v-loading="state.loading">
  11. <div class="tabs">
  12. <div class="tabs-item __hover" :class="{active: state.tab == 1}" @click="state.tab = 1">预警规则</div>
  13. <div class="tabs-item __hover" :class="{active: state.tab == 2}" @click="state.tab = 2">预警区域</div>
  14. </div>
  15. <CusForm
  16. labelWidth="60px"
  17. class="__cus-form_map"
  18. @handleEnter="onSearch()"
  19. >
  20. <CusFormColumn
  21. :span="20"
  22. labelWidth="0px"
  23. v-model:param="state.text"
  24. />
  25. <el-col :span="4" style="display: flex;">
  26. <div class="search-btn" @click="onSearch()" style="margin-left: auto">
  27. <el-icon color="#FFFFFF">
  28. <Search />
  29. </el-icon>
  30. </div>
  31. <div class="search-btn" @click="state.text = '', onSearch()">
  32. <el-icon color="#FFFFFF">
  33. <Refresh />
  34. </el-icon>
  35. </div>
  36. </el-col>
  37. </CusForm>
  38. <template v-if="state.tab == 1">
  39. <div class="__cus-title_2">
  40. 全部规则(0)
  41. <div class="expend-tree __hover" @click="expendRules">{{rulesExpandAllCpt ? '收起' : '展开'}}全部</div>
  42. </div>
  43. <el-tree
  44. class="tree"
  45. ref="ref_rulesTree"
  46. :data="state.rulesList"
  47. :props="ruleProps"
  48. node-key="id"
  49. >
  50. <template #default="{ node, data }">
  51. <span class="custom-tree-node">
  52. <span>{{ node.label }}</span>
  53. <span v-if="node.level > 1">
  54. <SvgIcon name="edit" size="12" class="__hover" @click.stop="onAddRule(data)"/>
  55. <SvgIcon name="detail_1" size="12" class="__hover" @click.stop="onAddRule(data)"/>
  56. <el-switch v-model="data.active" size="small"/>
  57. </span>
  58. <span v-else>
  59. <SvgIcon name="add" size="12" class="__hover" @click.stop="onAddRule(data)"/>
  60. </span>
  61. </span>
  62. </template>
  63. </el-tree>
  64. </template>
  65. <template v-else-if="state.tab == 2">
  66. <div class="__cus-title_2">
  67. 全部区域(0)
  68. <div class="expend-tree __hover" @click="onAddArea">新增区域</div>
  69. </div>
  70. <el-tree
  71. class="tree"
  72. :data="state.areaList"
  73. :props="areaProps"
  74. node-key="id"
  75. >
  76. <template #default="{ node, data }">
  77. <span class="custom-tree-node">
  78. <span>{{ data.name }}</span>
  79. <span>
  80. <SvgIcon name="edit" size="12" class="__hover" @click.stop="onEditArea(data)"/>
  81. </span>
  82. </span>
  83. </template>
  84. </el-tree>
  85. </template>
  86. <ruleDetail v-model:show="state.ruleDetail.show" :transfer="state.ruleDetail.transfer"/>
  87. </div>
  88. </DragWindow>
  89. </template>
  90. <script setup lang="ts">
  91. import {computed, getCurrentInstance, markRaw, onMounted, reactive, ref, watch} from "vue";
  92. import ruleDetail from "./rule-detail.vue";
  93. import areaForm from "./area-form.vue";
  94. import DragWindow from '../components/drag-window.vue'
  95. import { Search, Refresh } from "@element-plus/icons-vue";
  96. const {proxy} = getCurrentInstance()
  97. const props = defineProps({
  98. show: {},
  99. mapFunc: {}
  100. })
  101. const state: any = reactive({
  102. layout: {
  103. width: 400,
  104. left: 70,
  105. top: 10
  106. },
  107. tab: 1,
  108. loading: false,
  109. text: '',
  110. rulesList: [],
  111. ruleDetail: {
  112. transfer: {},
  113. show: false
  114. },
  115. areaList: [
  116. {
  117. id: 'area-1',
  118. name: '区域-1',
  119. }
  120. ]
  121. })
  122. const ruleProps = {
  123. children: 'children'
  124. }
  125. const areaProps = {
  126. children: 'children'
  127. }
  128. const ref_rulesTree = ref()
  129. watch(() => props.show, (n) => {
  130. if (n) {
  131. initData()
  132. }
  133. })
  134. const initData = () => {
  135. state.loading = true
  136. setTimeout(() => {
  137. const arr = []
  138. for (let i = 0; i <= 5; i++) {
  139. const obj = {
  140. id: i + '',
  141. label: '模型' + i,
  142. children: []
  143. }
  144. for (let k = 1; k <= i; k++) {
  145. obj.children.push({
  146. id: i + '-' + k,
  147. label: '规则' + i + '-' + k
  148. })
  149. }
  150. arr.push(obj)
  151. }
  152. state.rulesList = arr
  153. state.loading = false
  154. }, 1000)
  155. }
  156. const expendRules = () => {
  157. const flag = JSON.parse(JSON.stringify(rulesExpandAllCpt.value))
  158. ref_rulesTree.value.root.childNodes.forEach(v => v.expanded = !flag)
  159. }
  160. const rulesExpandAllCpt = computed(() => {
  161. return ref_rulesTree.value?.root.childNodes.every(v => v.data.children?.length == 0 || v.expanded)
  162. })
  163. const onAddRule = (row) => {
  164. console.log(row)
  165. state.ruleDetail.transfer = {
  166. id: row.id + ''
  167. }
  168. state.ruleDetail.show = true
  169. }
  170. const onAddArea = (row) => {
  171. const config = {
  172. featureType: 'Polygon',
  173. wkt: '',
  174. polyColor: 'rgba(231,18,18,0.53)', // Polygon的填充色,默认蓝色
  175. polyBorderColor: 'rgba(231,18,18,0.53)', // Polygon的边框颜色,默认蓝色
  176. polyBorderWidth: 2, // Polygon的边框宽度,默认1
  177. }
  178. props.mapFunc.formDrawEdit({
  179. config: config,
  180. form: {
  181. com: markRaw(areaForm),
  182. detail: config
  183. }
  184. })
  185. }
  186. const onEditArea = (row) => {
  187. const config = {
  188. featureType: 'Polygon',
  189. wkt: 'POLYGON((110.10212241843107 19.31790648240469,111.12312792246837 18.750781049337483,110.25884201127086 17.952069610196993,110.10212241843107 19.31790648240469))',
  190. polyColor: 'rgba(231,18,18,0.53)', // Polygon的填充色,默认蓝色
  191. polyBorderColor: 'rgba(231,18,18,0.53)', // Polygon的边框颜色,默认蓝色
  192. polyBorderWidth: 2, // Polygon的边框宽度,默认1
  193. }
  194. props.mapFunc.formDrawEdit({
  195. config: config,
  196. form: {
  197. com: markRaw(areaForm),
  198. detail: config
  199. }
  200. })
  201. }
  202. const onSearch = () => {
  203. if (state.tab == 1) {
  204. } else {
  205. }
  206. }
  207. onMounted(() => {
  208. initData()
  209. })
  210. </script>
  211. <style lang="scss" scoped>
  212. $mapHeight: var(--easy-map-height);
  213. .config {
  214. height: calc($mapHeight - 40px - 20px);
  215. padding: 12px 10px;
  216. .tabs {
  217. display: flex;
  218. font-weight: 500;
  219. font-size: 14px;
  220. color: #ffffff;
  221. gap: 15px;
  222. .active {
  223. color: #1cfeff;
  224. border-bottom: 2px solid #1cfeff;
  225. }
  226. }
  227. .__cus-form_map {
  228. margin-top: 16px;
  229. margin-bottom: 10px;
  230. .search-btn {
  231. width: 28px;
  232. height: 28px;
  233. background: #0062e9;
  234. border-radius: 4px 4px 4px 4px;
  235. margin-left: 5px;
  236. cursor: pointer;
  237. text-align: center;
  238. line-height: 33px;
  239. }
  240. }
  241. .expend-tree {
  242. padding: 2px 6px;
  243. font-size: 10px;
  244. font-weight: 400;
  245. color: #FFFFFF;
  246. border: 1px solid #0062e9;
  247. border-radius: 4px;
  248. margin-left: 16px;
  249. }
  250. :deep(.tree) {
  251. background-color: unset;
  252. .custom-tree-node {
  253. flex: 1;
  254. display: flex;
  255. align-items: center;
  256. justify-content: space-between;
  257. font-family: PingFang SC, PingFang SC;
  258. font-weight: 500;
  259. font-size: 14px;
  260. color: #ffffff;
  261. .svg-icon {
  262. margin-right: 6px;
  263. }
  264. }
  265. .el-tree-node__content:hover {
  266. background-color: #044fb787;
  267. }
  268. .el-tree-node:focus > .el-tree-node__content {
  269. background-color: #044fb787;
  270. }
  271. .el-checkbox__inner {
  272. background-color: unset;
  273. }
  274. }
  275. }
  276. </style>