index.vue 17 KB

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