index.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <template>
  2. <div class="dustAtomizing">
  3. <div class="dustAto-right-box">
  4. <div class="search-area">
  5. <a-form :model="formState" :label-col="{ span: 1.5 }">
  6. <a-form-item label="设备名称 : ">
  7. <a-select style="width:240px;margin-right: 20px;" :options="selectAreaList" size="small" placeholder="请选择"
  8. v-model:value="selectCode" allowClear @change="areaChange"></a-select>
  9. </a-form-item>
  10. <a-form-item label="">
  11. <a-button type="primary" style="height: 30px;margin: 0 10px; padding: 2px 15px;background-color: #227fad;"
  12. @click="getSearch">
  13. <template #icon>
  14. <SearchOutlined />
  15. </template>
  16. 查询
  17. </a-button>
  18. <a-button type="primary" :disabled="disabled"
  19. style="height: 30px;margin: 0 10px; padding: 2px 15px;background-color: #227fad;" @click="openAll(1)">
  20. 一键开启
  21. </a-button>
  22. <a-button type="primary" :disabled="disabled"
  23. style="height: 30px;margin: 0 10px; padding: 2px 15px;background-color: #227fad;" @click="openAll(0)">
  24. 一键关闭
  25. </a-button>
  26. <a-button type="primary" :disabled="disabled"
  27. style="height: 30px;margin: 0 10px; padding: 2px 15px;background-color: #227fad;" @click="openAll(2)">
  28. 自动启停
  29. </a-button>
  30. </a-form-item>
  31. </a-form>
  32. </div>
  33. <div class="content-area">
  34. <a-table :row-selection="rowSelection" size="small" :dataSource="dataSource" :columns="columns"
  35. :scroll="{ y: 730 }" :pagination="false">
  36. <template #action="{ record }">
  37. <a-button type="link" style="color:#3DF6FF" @click="openClick(record.realId, 1)">
  38. 启动
  39. </a-button>
  40. <a-button type="link" style="color:#3DF6FF" @click="openClick(record.realId, 0)">
  41. 关闭
  42. </a-button>
  43. <a-button type="link" style="color:#3DF6FF" @click="openClick(record.realId, 2)">
  44. 自动
  45. </a-button>
  46. </template>
  47. </a-table>
  48. </div>
  49. </div>
  50. <a-modal title="密码校验" ok-text="确定" cancel-text="取消" @ok="checkPwd" @cancel="clsoeMod" v-model:open="pwdModalVisible"
  51. :destroyOnClose="true" style="top: 25vh" width="450px">
  52. <a-input type="password" style="width:300px;margin: 20px 70px;" v-model:value="pwdValue" placeholder="请输入控制密码" />
  53. </a-modal>
  54. </div>
  55. </template>
  56. <script setup lang="ts">
  57. import { ref, reactive, onMounted, onUnmounted, computed, watch } from 'vue'
  58. import { SearchOutlined, PlusOutlined } from '@ant-design/icons-vue';
  59. import { realData, getControl } from './dustAtomizing.api'
  60. import { getFireAreaInfo } from '../../fire/fireHome/firehome.api'
  61. import { columns } from './dustAtomizing.data'
  62. import dayjs from 'dayjs'
  63. //查询条件
  64. let formState = reactive({
  65. devicename: ''
  66. })
  67. //table 数据
  68. let dataSource = ref<any[]>([])
  69. let disabled = ref(true)
  70. //工作面编码选项列表
  71. let selectAreaList = reactive<any[]>([])
  72. let selectCode = ref('')
  73. //操作数据
  74. let pwdModalVisible = ref(false)
  75. let currentIsOpen = ref(false)
  76. let isBatchHandler = ref(false)
  77. let selectedRowsList = ref<any[]>([])
  78. let currentId = ref('')
  79. let pwdValue = ref('')
  80. let rowSelection = computed(() => {
  81. return {
  82. onChange: (selectedRowKeys, selectedRows) => {
  83. selectedRowsList.value = selectedRows
  84. },
  85. getCheckboxProps: (record) => ({
  86. props: {
  87. realId: record.realId,
  88. },
  89. }),
  90. }
  91. })
  92. //https获取监测数据
  93. let timer: null | NodeJS.Timeout = null;
  94. function getMonitor() {
  95. timer = setTimeout(
  96. async () => {
  97. // await getFireAreaInfoList()
  98. await getList()
  99. if (timer) {
  100. timer = null;
  101. }
  102. getMonitor();
  103. },
  104. 5000
  105. );
  106. }
  107. //获取工作面编码
  108. async function getFireAreaInfoList() {
  109. let res = await getFireAreaInfo({})
  110. if (res.length != 0) {
  111. selectAreaList.length = 0
  112. res.forEach(el => {
  113. selectAreaList.push({ label: el.areaName, value: el.areaCode })
  114. })
  115. }
  116. }
  117. //工作面选项切换
  118. function areaChange(val) {
  119. selectCode.value = val
  120. // getList()
  121. }
  122. //获取喷雾列表
  123. async function getList() {
  124. let res = await realData({ deviceName: formState.devicename, type: "DustPw", areaCode: selectCode.value })
  125. res.forEach((el, index) => {
  126. el.key = index
  127. el.timingSwitch = el.timingSwitch == '1' ? '是' : '否'
  128. el.stateSpray = el.stateSpray == '1' ? '喷雾开' : '喷雾关'
  129. el.stateConn = el.stateConn == '1' ? '链接' : '未链接'
  130. el.deviceState = el.deviceState == '1' ? '喷雾打开' : el.deviceState == '0' ? '喷雾关闭' : '未连接'
  131. el.stateEnable = el.stateEnable == '1' ? '使用' : '未使用'
  132. el.stateManual = el.stateManual == '0' ? '自动控制' : '手动控制'
  133. el.time = dayjs().format('YYYY-MM-DD HH:MM:ss')
  134. })
  135. dataSource.value = res
  136. }
  137. //列表查询
  138. function getSearch() {
  139. getList()
  140. }
  141. //一键启停
  142. function openAll(isOpen) {
  143. pwdModalVisible.value = true
  144. currentIsOpen.value = isOpen
  145. isBatchHandler.value = true
  146. pwdValue.value = ''
  147. }
  148. //确定
  149. function checkPwd() {
  150. if (!isBatchHandler.value) {
  151. handlerSwitch()
  152. } else {
  153. selectedRowsList.value.forEach(async (row, index) => {
  154. currentId.value = row.realId
  155. await handlerSwitch(index)
  156. })
  157. }
  158. }
  159. async function handlerSwitch(index = 0) {
  160. const res = await getControl({
  161. type: 'DustPw',
  162. id: currentId.value,
  163. controlType: currentIsOpen.value ? 'run' : 'stop',
  164. passWord: pwdValue.value
  165. }
  166. )
  167. if (isBatchHandler.value) {
  168. if (selectedRowsList.value.length === index + 1) {
  169. if (res.success && !res.result) {
  170. // that.$message.success(res.message)
  171. // loadData()
  172. }
  173. pwdModalVisible.value = false
  174. isBatchHandler.value = false
  175. }
  176. } else {
  177. if (res.success && !res.result) {
  178. // that.$message.success(res.message)
  179. // that.loadData()
  180. }
  181. pwdModalVisible.value = false
  182. }
  183. }
  184. function openClick(id, isOpen,) {
  185. currentId.value = id
  186. pwdValue.value = ''
  187. currentIsOpen.value = isOpen
  188. pwdModalVisible.value = true
  189. }
  190. //取消
  191. function clsoeMod() {
  192. pwdValue.value = ''
  193. pwdModalVisible.value = false
  194. }
  195. watch(()=>selectedRowsList.value,(newV,oldV)=>{
  196. if(newV.length!=0){
  197. disabled.value=false
  198. }else {
  199. disabled.value=true
  200. }
  201. })
  202. onMounted(() => {
  203. getFireAreaInfoList()
  204. getList()
  205. getMonitor()
  206. })
  207. onUnmounted(() => {
  208. if (timer) {
  209. clearTimeout(timer);
  210. timer = null;
  211. }
  212. });
  213. </script>
  214. <style lang="less" scoped>
  215. .dustAtomizing {
  216. display: flex;
  217. position: relative;
  218. align-items: center;
  219. justify-content: space-between;
  220. width: calc(100% - 20px);
  221. height: 928px;
  222. margin: 0 10px;
  223. background: #282828;
  224. .dustAto-right-box {
  225. box-sizing: border-box;
  226. width: 100%;
  227. height: 100%;
  228. margin-left: 10px;
  229. padding: 15px 10px;
  230. background-color: rgb(27 35 39 / 80%);
  231. .search-area {
  232. display: flex;
  233. box-sizing: border-box;
  234. align-items: center;
  235. height: 70px;
  236. padding: 0 20px;
  237. }
  238. .content-area {
  239. height: calc(100% - 70px);
  240. }
  241. }
  242. }
  243. :deep(.vMonitor-form) {
  244. display: flex;
  245. align-items: center;
  246. width: 100%;
  247. }
  248. :deep(.vMonitor-form-item-label >label) {
  249. color: #fff;
  250. }
  251. :deep(.vMonitor-input) {
  252. padding: 2px 11px;
  253. border-color: #227fad;
  254. background-color: rgb(38 74 96 20%);
  255. color: #fff;
  256. }
  257. :deep(.vMonitor-table) {
  258. background-color: transparent;
  259. color: #fff;
  260. }
  261. :deep(.vMonitor-table-wrapper .vMonitor-table-thead >tr>th) {
  262. padding: 4px 0;
  263. border-bottom: none;
  264. background: rgb(34 127 173/ 50%);
  265. color: #04ffdb;
  266. }
  267. :deep(.vMonitor-table-thead >tr>th:not(:last-child):not(.vMonitor-table-selection-column):not(.vMonitor-table-row-expand-icon-cell):not([colspan])::before) {
  268. background: transparent;
  269. }
  270. :deep(.vMonitor-table-wrapper .vMonitor-table-cell-scrollbar:not([rowspan])) {
  271. box-shadow: none;
  272. }
  273. :deep(.vMonitor-table-wrapper .vMonitor-table:not(.vMonitor-table-bordered) .vMonitor-table-tbody >tr >td) {
  274. border-top: none;
  275. }
  276. :deep(.vMonitor-table.vMonitor-table-small .vMonitor-table-tbody>tr>td) {
  277. padding: 4px 8px;
  278. }
  279. :deep(.vMonitor-table-wrapper .vMonitor-table-tbody >tr >td.vMonitor-table-cell-row-hover) {
  280. background: rgb(38 74 96) !important;
  281. }
  282. :deep(.vMonitor-table-wrapper .vMonitor-table-tbody >tr.vMonitor-table-row:hover>td) {
  283. background: rgb(38 74 96) !important;
  284. }
  285. </style>