index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. <template>
  2. <u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
  3. <u-tabs :list="list" :current="current" @click="tabsClick" lineColor="#333" :activeStyle="{ color: '#333' }" :inactiveStyle="{ color: '#909399' }"></u-tabs>
  4. </u-sticky>
  5. <scroll-view class="bg-white scroll-height" :scroll-y="true" :data-theme="'theme-' + proxy.$settingStore.themeColor.name" style="padding-bottom: 44px">
  6. <oa-touch class="informationSelect" @change="touchChange">
  7. <template #content>
  8. <uni-swipe-action>
  9. <uni-swipe-action-item>
  10. <!-- 各类查询 start -->
  11. <view class="tableType3">
  12. <u-input class="block mb10" v-model="dataInput" :placeholder="placeholderText" @blur="blur" shape="circle" prefixIcon="search" prefixIconStyle="color: #0c7bf9"> </u-input>
  13. <u-empty v-if="!dataRes" text="暂无数据" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png"> </u-empty>
  14. <view class="con" v-if="current == 8">
  15. <view class="time">{{ newTime }}</view>
  16. <video src="http://file.usky.cn/statics/video/20230203.mp4" autoplay :controls="false" :show-center-play-btn="false" :loop="true" style="width: 100%"></video>
  17. </view>
  18. <u-row v-for="po in classifyData" :key="po" v-else>
  19. <u-col span="4">
  20. <view style="text-align: right; padding: 0px 5px 0px 5px">{{ po.title }}</view>
  21. </u-col>
  22. <u-col span="8">
  23. <view style="text-align: left; padding: 0px 5px 0px 5px">{{ po.value }}</view>
  24. </u-col>
  25. </u-row>
  26. </view>
  27. <!-- 各类查询 end -->
  28. </uni-swipe-action-item>
  29. </uni-swipe-action>
  30. </template>
  31. </oa-touch>
  32. </scroll-view>
  33. </template>
  34. <script setup>
  35. import { onReady, onLoad, onShow, onNavigationBarButtonTap } from "@dcloudio/uni-app";
  36. import { ref, onMounted, inject, shallowRef, reactive, watchEffect, getCurrentInstance } from "vue";
  37. import { useStores, commonStores } from "@/store/modules/index";
  38. import { dataList } from "@/api/business/mhxf/informationSelect";
  39. const { proxy } = getCurrentInstance();
  40. const commonStore = commonStores(); //全局公共Store
  41. const dataInput = ref("");
  42. const current = ref(0);
  43. const classifyUrl = ref("");
  44. const placeholderText = ref("");
  45. const dataRes = ref(1);
  46. const classifyData = ref([]); //警情查询数据存储
  47. const list = ref([
  48. {
  49. id: 1,
  50. name: "警情查询",
  51. },
  52. {
  53. id: 2,
  54. name: "火灾查询",
  55. },
  56. {
  57. id: 3,
  58. name: "人员查询",
  59. badge: {
  60. // isDot: true,
  61. // value: 5,
  62. },
  63. },
  64. {
  65. id: 4,
  66. name: "车辆查询",
  67. badge: {
  68. // value: 5,
  69. },
  70. },
  71. {
  72. id: 5,
  73. name: "站点查询",
  74. badge: {
  75. // value: 5,
  76. },
  77. },
  78. {
  79. id: 6,
  80. name: "消火栓",
  81. badge: {
  82. // value: 5,
  83. },
  84. },
  85. {
  86. id: 7,
  87. name: "重点单位",
  88. badge: {
  89. // value: 5,
  90. },
  91. },
  92. {
  93. id: 8,
  94. name: "消防检查信息",
  95. badge: {
  96. // value: 5,
  97. },
  98. },
  99. {
  100. id: 9,
  101. name: "视频监控",
  102. badge: {
  103. // value: 5,
  104. },
  105. },
  106. ]);
  107. /**
  108. * @滑动change事件
  109. */
  110. function touchChange(e) {
  111. if (e == "右滑") {
  112. if (current.value >= 1) {
  113. current.value--;
  114. } else {
  115. current.value = list.value.length - 1;
  116. }
  117. } else if (e == "左滑") {
  118. if (current.value < list.value.length - 1) {
  119. current.value++;
  120. } else {
  121. current.value = 0;
  122. }
  123. }
  124. }
  125. function blur(e) {
  126. if (dataInput.value) {
  127. goSearch();
  128. }
  129. }
  130. /**
  131. * @tabs点击事件
  132. */
  133. function tabsClick(e) {
  134. current.value = e.index;
  135. console.log(current.value);
  136. dataInput.value = "";
  137. dataRes.value = 1;
  138. }
  139. function goSearch() {
  140. if (current.value == 0) {
  141. //警情查询
  142. classifyUrl.value = "/service-fire/demPoliceInfo/page";
  143. placeholderText.value = "请输入案件编号";
  144. classifySearch(classifyUrl.value, {
  145. caseCode: dataInput.value,
  146. });
  147. } else if (current.value == 1) {
  148. //火灾查询
  149. placeholderText.value = "请输入火灾地址";
  150. classifyUrl.value = "/service-fire/demFireStatisticsAttach/page";
  151. classifySearch(classifyUrl.value, {
  152. address: dataInput.value,
  153. });
  154. } else if (current.value == 2) {
  155. //人员查询
  156. placeholderText.value = "请输入值班人员名称";
  157. classifyUrl.value = "/service-fire/unitBeOnDuty/list";
  158. classifySearch(classifyUrl.value, {
  159. name: dataInput.value,
  160. });
  161. } else if (current.value == 3) {
  162. //车辆信息
  163. placeholderText.value = "请输入车牌号";
  164. classifyUrl.value = "/service-fire/unitBeOnDuty/vehiclelist";
  165. classifySearch(classifyUrl.value, {
  166. licensePlate: dataInput.value,
  167. });
  168. } else if (current.value == 4) {
  169. //站点查询
  170. placeholderText.value = "请输入站点名称";
  171. classifyUrl.value = "/service-fire/unitBeOnDuty/page";
  172. classifySearch(classifyUrl.value, {
  173. stationName: dataInput.value,
  174. });
  175. } else if (current.value == 5) {
  176. //消火栓
  177. placeholderText.value = "请输入水源名称";
  178. classifyUrl.value = "/service-fire/demWaterSource/waterSourceList";
  179. classifySearch(classifyUrl.value, {
  180. waterName: dataInput.value,
  181. });
  182. } else if (current.value == 6) {
  183. //重点单位
  184. placeholderText.value = "请输入单位名称";
  185. classifyUrl.value = "/service-fire/baseCompany/companyList";
  186. classifySearch(classifyUrl.value, {
  187. companyName: dataInput.value,
  188. });
  189. } else if (current.value == 7) {
  190. //消防检查信息
  191. placeholderText.value = "请输入单位ID";
  192. classifyUrl.value = "/service-fire/demFireInspect/fireInspectList";
  193. classifySearch(classifyUrl.value, {
  194. companyId: dataInput.value,
  195. });
  196. } else if (current.value == 8) {
  197. //消防检查信息
  198. placeholderText.value = "";
  199. // classifyUrl.value = "/service-fire/demFireInspect/fireInspectList";
  200. // classifySearch(classifyUrl.value, {
  201. // companyId: dataInput.value,
  202. // });
  203. }
  204. }
  205. //分类信息查询 start
  206. async function classifySearch(URL, params) {
  207. proxy.$modal.loading("加载中");
  208. classifyData.value = [];
  209. dataList(URL, params).then((res) => {
  210. proxy.$modal.closeLoading();
  211. if (res.status == "SUCCESS") {
  212. if (current.value == 2) {
  213. if (res.data.length) {
  214. dataRes.value = 1;
  215. } else {
  216. dataRes.value = 0;
  217. }
  218. var records = res.data[0][0];
  219. } else if (current.value == 3) {
  220. if (res.data.length) {
  221. dataRes.value = 1;
  222. } else {
  223. dataRes.value = 0;
  224. }
  225. var records = res.data[0];
  226. } else {
  227. if (res.data.total) {
  228. dataRes.value = 1;
  229. } else {
  230. dataRes.value = 0;
  231. }
  232. var records = res.data.records[0];
  233. }
  234. switch (current.value) {
  235. case 0: //警情查询
  236. var classifyTitle = [
  237. "案件编号",
  238. "主管支队",
  239. "案件时间段",
  240. "通知到场时间",
  241. "通知出水时间",
  242. "通知控制时间",
  243. "通知熄火时间",
  244. "通知返队时间",
  245. "区域",
  246. "案件类型",
  247. "案发地址",
  248. "立案时间",
  249. "立案日期",
  250. "处置对象",
  251. "案件等级",
  252. "主管中队",
  253. "区县",
  254. "案件状态",
  255. "案件性质",
  256. "填表时间",
  257. "街镇",
  258. "创建时间",
  259. ];
  260. var classifyValue = [
  261. records.caseCode,
  262. records.branch,
  263. records.timeSlot,
  264. records.noticeArrivalTime,
  265. records.noticeEffluentTime,
  266. records.controlTime,
  267. records.quenchTime,
  268. records.returnTime,
  269. records.caseArea,
  270. records.caseTypeCode,
  271. records.address,
  272. records.filingTime,
  273. records.filingDate,
  274. records.handleObject,
  275. records.caseLevel,
  276. records.squadron,
  277. records.district,
  278. records.caseStatus,
  279. records.caseNature,
  280. records.bdpAudit,
  281. records.streetTown,
  282. records.createTime,
  283. ];
  284. break;
  285. case 1: //火灾查询
  286. var classifyTitle = [
  287. "地区",
  288. "街镇",
  289. "经度",
  290. "维度",
  291. "平台ID",
  292. "火灾地址",
  293. "过火面积",
  294. "直接财产损失",
  295. "死亡人数",
  296. "受伤人数",
  297. "受灾户数",
  298. "火灾原因",
  299. "火灾等级",
  300. "场所一级",
  301. "场所二级",
  302. "起火物一级",
  303. "起火物二级",
  304. "性质",
  305. ];
  306. var classifyValue = [
  307. records.district,
  308. records.street,
  309. records.longitude,
  310. records.latitude,
  311. records.id,
  312. records.address,
  313. records.burnedArea,
  314. records.propertyLoss,
  315. records.deathToll,
  316. records.nonFatal,
  317. records.disasterHome,
  318. records.fireCause,
  319. records.fireLevel,
  320. records.placeOne,
  321. records.placeTwo,
  322. records.fireGoodsOne,
  323. records.fireGoodsTwo,
  324. records.nature,
  325. ];
  326. break;
  327. case 2: //人员查询
  328. var classifyTitle = ["值班人员信息", "岗位名称", "机构名称", "机构简称", "机构地址", "值班日期"];
  329. var classifyValue = [records.name, records.postName, records.organizationName, records.organizationShort, records.organizationAddress, records.time];
  330. break;
  331. case 3: //车辆查询
  332. var classifyTitle = [
  333. "车辆信息",
  334. "单件装备编码",
  335. "装备名称",
  336. "装备编码",
  337. "上级装备编码",
  338. "所属消防机构",
  339. "车牌号码",
  340. "资产编号",
  341. "商标",
  342. "颜色",
  343. "生产厂家名称",
  344. "有效期至",
  345. "车架号",
  346. "发动机编号",
  347. "批次号",
  348. "电台呼号",
  349. "车辆简称",
  350. "电台频道",
  351. "指挥员姓名",
  352. "驾驶员",
  353. ];
  354. var classifyValue = [
  355. records.vehicleId,
  356. records.singleEquipCode,
  357. records.equipName,
  358. records.equipCode,
  359. records.superiorEquipCode,
  360. records.fireOrga,
  361. records.licensePlate,
  362. records.assetCode,
  363. records.assetCode,
  364. records.colour,
  365. records.productName,
  366. records.validityTime,
  367. records.frameCode,
  368. records.engineCode,
  369. records.batchCode,
  370. records.radioCallSign,
  371. records.vehicleAbbreviat,
  372. records.radioChannel,
  373. records.commanderName,
  374. records.driver,
  375. ];
  376. break;
  377. case 4: //站点查询
  378. var classifyTitle = [
  379. "平台ID",
  380. "支队名称",
  381. "所属辖区中队",
  382. "消防站名称",
  383. "单位性质",
  384. "地址",
  385. "所在位置",
  386. "联动固定电话",
  387. "负责人姓名",
  388. "负责人手机号码",
  389. "备注",
  390. "消防站类型",
  391. "经度",
  392. "维度",
  393. "创建时间",
  394. "更新时间",
  395. "支队id",
  396. "中队id",
  397. "编号",
  398. "原单位性质",
  399. ];
  400. var classifyValue = [
  401. records.id,
  402. records.branchName,
  403. records.squadron,
  404. records.stationName,
  405. records.companyNature,
  406. records.address,
  407. records.location,
  408. records.fixedPhone,
  409. records.chargeName,
  410. records.chargePhone,
  411. records.remark,
  412. records.stationType,
  413. records.longitude,
  414. records.dimension,
  415. records.createTime,
  416. records.updateTime,
  417. records.branchId,
  418. records.squadronId,
  419. records.number,
  420. records.primaryCompanyNature,
  421. ];
  422. break;
  423. case 5: //消火栓
  424. var classifyTitle = [
  425. "可用状态名称",
  426. "消防站简介",
  427. "水源地址",
  428. "建造时间",
  429. "消火栓接口形式",
  430. "水源类型",
  431. "管辖机构名称",
  432. "取水形式",
  433. "联系方式",
  434. "可用状态",
  435. "水源性质",
  436. "水源名称",
  437. "管网单位",
  438. "管网压力",
  439. ];
  440. var classifyValue = [
  441. records.availableStatusName,
  442. records.fireAbbreviat,
  443. records.waterAddress,
  444. records.buildTime,
  445. records.hydrantInterface,
  446. records.waterType,
  447. records.organizateName,
  448. records.waterForm,
  449. records.contactMode,
  450. records.availableStatus,
  451. records.waterNature,
  452. records.waterName,
  453. records.pipeCompany,
  454. records.pipePressure,
  455. ];
  456. break;
  457. case 6: //重点单位
  458. var classifyTitle = [
  459. "单位联系电话",
  460. "单位详细地址",
  461. "职工人数",
  462. "单位类型",
  463. "消防安全责任人姓名",
  464. "法人代表姓名",
  465. "单位名称",
  466. "消防安全管理人姓名",
  467. "单位主属性",
  468. "建筑面积",
  469. "行政区域",
  470. "单位成立时间",
  471. "占地面积",
  472. "火灾危险性",
  473. "创建时间",
  474. "单位性质",
  475. "固定资产(单位:万元)",
  476. ];
  477. var classifyValue = [
  478. records.linkPhone,
  479. records.address,
  480. records.employeeNum,
  481. records.companyType,
  482. records.fireDutyName,
  483. records.delegateName,
  484. records.companyName,
  485. records.fireManageName,
  486. records.mainAttribute,
  487. records.buildArea,
  488. records.administrativeDivision,
  489. records.foundTimecoverArea,
  490. records.coverArea,
  491. records.fireHazard,
  492. records.createTime,
  493. records.companyNature,
  494. records.fixedAssets,
  495. ];
  496. break;
  497. case 7: //消防检查信息
  498. var classifyTitle = ["单位ID", "检查人员ID", "计划生成时间", "检查结果", "创建人", "创建时间", "检查员名称", "检查员职位", "单位电话"];
  499. var classifyValue = [
  500. records.companyId,
  501. records.personId,
  502. records.planTime,
  503. records.inspectResult,
  504. records.creator,
  505. records.createTime,
  506. records.personName,
  507. records.personPosition,
  508. records.linkPhone,
  509. ];
  510. break;
  511. // default:
  512. // 默认代码块
  513. }
  514. for (var i = 0; i < classifyTitle.length; i++) {
  515. var obj = {};
  516. obj.title = classifyTitle[i];
  517. obj.value = classifyValue[i];
  518. classifyData.value.push(obj);
  519. }
  520. } else {
  521. }
  522. });
  523. }
  524. // end
  525. watchEffect(() => {
  526. goSearch();
  527. });
  528. // start
  529. const newTime = ref("");
  530. function getNowTime() {
  531. var date = new Date();
  532. var time =
  533. addZero(date.getFullYear()) +
  534. "-" +
  535. addZero(date.getMonth() + 1) +
  536. "-" +
  537. addZero(date.getDate()) +
  538. " " +
  539. addZero(date.getHours()) +
  540. ":" +
  541. addZero(date.getMinutes()) +
  542. ":" +
  543. addZero(date.getSeconds());
  544. newTime.value = time;
  545. }
  546. //根据自己的需求,看要不要在时间不大于10的时候在前面补0,如果需要直接addZero(date.getMinutes()),其它与之相同,如果不需要删掉addZero()方法即可。
  547. //小于10的拼接上0字符串
  548. function addZero(s) {
  549. return s < 10 ? "0" + s : s;
  550. }
  551. // end
  552. // 自定义导航事件
  553. onNavigationBarButtonTap((e) => {
  554. if (e.float == "right") {
  555. uni.navigateTo({
  556. url: "/pages/business/zhaf/xunJian/collect/components/collectRecord",
  557. });
  558. } else {
  559. }
  560. });
  561. onLoad((options) => {
  562. getNowTime(); //进入页面调用该方法获取当前时间
  563. clearInterval(myTimeDisplay); //销毁之前定时器
  564. var myTimeDisplay = setInterval(() => {
  565. getNowTime(); //每秒更新一次时间
  566. }, 1000);
  567. });
  568. onShow(() => {
  569. //调用系统主题颜色
  570. proxy.$settingStore.systemThemeColor([1]);
  571. });
  572. onReady(() => {});
  573. onMounted(() => {});
  574. </script>
  575. <style lang="scss">
  576. .uni-swipe {
  577. overflow: visible;
  578. }
  579. </style>
  580. <style lang="scss" scoped>
  581. .informationSelect {
  582. }
  583. .time {
  584. position: absolute;
  585. z-index: 99999;
  586. top: 3px;
  587. left: 3px;
  588. display: inline-block;
  589. color: #fff;
  590. }
  591. .con {
  592. text-align: center;
  593. position: relative;
  594. }
  595. </style>