index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
  4. <el-form-item label="房间" prop="roomId">
  5. <template>
  6. <el-select v-model="queryParams.roomId" filterable placeholder="请选择">
  7. <el-option
  8. v-for="item in roomList"
  9. :key="item.roomId"
  10. :label="item.roomName"
  11. :value="item.roomId">
  12. </el-option>
  13. </el-select>
  14. </template>
  15. </el-form-item>
  16. <el-form-item label="大楼" prop="buildingId">
  17. <template>
  18. <el-select v-model="queryParams.buildingId" filterable placeholder="请选择">
  19. <el-option
  20. v-for="item in buildingList"
  21. :key="item.buildingId"
  22. :label="item.buildingName"
  23. :value="item.buildingId">
  24. </el-option>
  25. </el-select>
  26. </template>
  27. </el-form-item>
  28. <el-form-item label="区域" prop="areaId">
  29. <template>
  30. <el-select v-model="queryParams.areaId" filterable placeholder="请选择">
  31. <el-option
  32. v-for="item in areaList"
  33. :key="item.areaId"
  34. :label="item.areaName"
  35. :value="item.areaId">
  36. </el-option>
  37. </el-select>
  38. </template>
  39. </el-form-item>
  40. <el-form-item label="名称" prop="equipmentName">
  41. <el-input
  42. v-model="queryParams.equipmentName"
  43. placeholder="请输入名称"
  44. clearable
  45. size="small"
  46. @keyup.enter.native="handleQuery"
  47. />
  48. </el-form-item>
  49. <el-form-item label="二维坐标" prop="lngLat">
  50. <el-input
  51. v-model="queryParams.lngLat"
  52. placeholder="请输入二维坐标"
  53. clearable
  54. size="small"
  55. @keyup.enter.native="handleQuery"
  56. />
  57. </el-form-item>
  58. <el-form-item label="三维坐标" prop="rasterLngLat">
  59. <el-input
  60. v-model="queryParams.rasterLngLat"
  61. placeholder="请输入三维坐标"
  62. clearable
  63. size="small"
  64. @keyup.enter.native="handleQuery"
  65. />
  66. </el-form-item>
  67. <el-form-item label="类型" prop="typeName">
  68. <template>
  69. <el-select v-model="queryParams.typeId" filterable placeholder="请选择">
  70. <el-option
  71. v-for="item in equipmentTypeList"
  72. :key="item.typeId"
  73. :label="item.typeName"
  74. :value="item.typeId">
  75. </el-option>
  76. </el-select>
  77. </template>
  78. </el-form-item>
  79. <el-form-item label="状态" prop="status">
  80. <el-select v-model="queryParams.status" placeholder="请选择状态" clearable size="small">
  81. <el-option
  82. v-for="dict in dict.type.equipment_info_type"
  83. :key="dict.value"
  84. :label="dict.label"
  85. :value="dict.value"
  86. />
  87. </el-select>
  88. </el-form-item>
  89. <el-form-item>
  90. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  91. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  92. </el-form-item>
  93. </el-form>
  94. <el-row :gutter="10" class="mb8">
  95. <el-col :span="1.5">
  96. <el-button
  97. type="primary"
  98. plain
  99. icon="el-icon-plus"
  100. size="mini"
  101. @click="handleAdd"
  102. v-hasPermi="['info:equipmentInfo:add']"
  103. >新增</el-button>
  104. </el-col>
  105. <el-col :span="1.5">
  106. <el-button
  107. type="success"
  108. plain
  109. icon="el-icon-edit"
  110. size="mini"
  111. :disabled="single"
  112. @click="handleUpdate"
  113. v-hasPermi="['info:equipmentInfo:edit']"
  114. >修改</el-button>
  115. </el-col>
  116. <el-col :span="1.5">
  117. <el-button
  118. type="danger"
  119. plain
  120. icon="el-icon-delete"
  121. size="mini"
  122. :disabled="multiple"
  123. @click="handleDelete"
  124. v-hasPermi="['info:equipmentInfo:remove']"
  125. >删除</el-button>
  126. </el-col>
  127. <el-col :span="1.5">
  128. <el-button
  129. type="warning"
  130. plain
  131. icon="el-icon-download"
  132. size="mini"
  133. :loading="exportLoading"
  134. @click="handleExport"
  135. v-hasPermi="['info:equipmentInfo:export']"
  136. >导出</el-button>
  137. </el-col>
  138. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  139. </el-row>
  140. <el-table v-loading="loading" :data="equipmentInfoList" @selection-change="handleSelectionChange">
  141. <el-table-column type="selection" width="55" align="center" />
  142. <el-table-column label="设备id" align="center" prop="equipmentId" />
  143. <el-table-column label="房间" align="center">
  144. <template slot-scope="scope">
  145. {{ getRoomName(scope.row.roomId) }}
  146. </template>
  147. </el-table-column>
  148. <el-table-column label="大楼" align="center">
  149. <template slot-scope="scope">
  150. {{ getBuildingName(scope.row.buildingId) }}
  151. </template>
  152. </el-table-column>
  153. <el-table-column label="区域" align="center">
  154. <template slot-scope="scope">
  155. {{ getAreaName(scope.row.areaId) }}
  156. </template>
  157. </el-table-column>
  158. <el-table-column label="名称" align="center" prop="equipmentName" />
  159. <el-table-column label="二维坐标" align="center" prop="lngLat" />
  160. <el-table-column label="三维坐标" align="center" prop="rasterLngLat" />
  161. <el-table-column label="类型" align="center">
  162. <template slot-scope="scope">
  163. {{ getEquipmentTypeName(scope.row.typeId) }}
  164. </template>
  165. </el-table-column>
  166. <el-table-column label="状态" align="center" prop="status">
  167. <template slot-scope="scope">
  168. <dict-tag :options="dict.type.equipment_info_type" :value="scope.row.status"/>
  169. </template>
  170. </el-table-column>
  171. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
  172. <template slot-scope="scope">
  173. <el-button
  174. size="mini"
  175. type="text"
  176. icon="el-icon-edit"
  177. @click="handleUpdate(scope.row)"
  178. v-hasPermi="['info:equipmentInfo:edit']"
  179. >修改</el-button>
  180. <el-button
  181. size="mini"
  182. type="text"
  183. icon="el-icon-delete"
  184. @click="handleDelete(scope.row)"
  185. v-hasPermi="['info:equipmentInfo:remove']"
  186. >删除</el-button>
  187. </template>
  188. </el-table-column>
  189. </el-table>
  190. <pagination
  191. v-show="total>0"
  192. :total="total"
  193. :page.sync="queryParams.pageNum"
  194. :limit.sync="queryParams.pageSize"
  195. @pagination="getList"
  196. />
  197. <!-- 添加或修改设备信息对话框 -->
  198. <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
  199. <el-form ref="form" :model="form" :rules="rules" label-width="120px">
  200. <el-form-item label="类别" prop="typeId">
  201. <template>
  202. <el-select v-model="form.typeId" filterable placeholder="请选择">
  203. <el-option
  204. v-for="item in equipmentTypeList"
  205. :key="item.typeId"
  206. :label="item.typeName"
  207. :value="item.typeId">
  208. </el-option>
  209. </el-select>
  210. </template>
  211. </el-form-item>
  212. <el-form-item label="房间" prop="roomId">
  213. <template>
  214. <el-select v-model="form.roomId" filterable placeholder="请选择">
  215. <el-option
  216. v-for="item in roomList"
  217. :key="item.roomId"
  218. :label="item.roomName"
  219. :value="item.roomId">
  220. </el-option>
  221. </el-select>
  222. </template>
  223. </el-form-item>
  224. <el-form-item label="大楼" prop="buildingId">
  225. <template>
  226. <el-select v-model="form.buildingId" filterable placeholder="请选择">
  227. <el-option
  228. v-for="item in buildingList"
  229. :key="item.buildingId"
  230. :label="item.buildingName"
  231. :value="item.buildingId">
  232. </el-option>
  233. </el-select>
  234. </template>
  235. </el-form-item>
  236. <el-form-item label="区域" prop="areaId">
  237. <template>
  238. <el-select v-model="form.areaId" filterable placeholder="请选择">
  239. <el-option
  240. v-for="item in areaList"
  241. :key="item.areaId"
  242. :label="item.areaName"
  243. :value="item.areaId">
  244. </el-option>
  245. </el-select>
  246. </template>
  247. </el-form-item>
  248. <el-form-item label="名称" prop="equipmentName">
  249. <el-input v-model="form.equipmentName" placeholder="请输入名称" />
  250. </el-form-item>
  251. <el-form-item label="二维坐标" prop="lngLat">
  252. <el-input v-model="form.lngLat" placeholder="请输入二维坐标" />
  253. </el-form-item>
  254. <el-form-item label="三维坐标" prop="rasterLngLat">
  255. <el-input v-model="form.rasterLngLat" placeholder="请输入三维坐标" />
  256. </el-form-item>
  257. <el-form-item label="状态" prop="status">
  258. <el-select v-model="form.status" placeholder="请选择状态">
  259. <el-option
  260. v-for="dict in dict.type.equipment_info_type"
  261. :key="dict.value"
  262. :label="dict.label"
  263. :value="parseInt(dict.value)"
  264. ></el-option>
  265. </el-select>
  266. </el-form-item>
  267. </el-form>
  268. <div slot="footer" class="dialog-footer">
  269. <el-button type="primary" @click="submitForm">确 定</el-button>
  270. <el-button @click="cancel">取 消</el-button>
  271. </div>
  272. </el-dialog>
  273. </div>
  274. </template>
  275. <script>
  276. import { listEquipmentInfo, getEquipmentInfo, delEquipmentInfo, addEquipmentInfo, updateEquipmentInfo, exportEquipmentInfo } from "@/api/info/equipmentInfo";
  277. import { listBuildingInfo, getBuildingInfo } from "@/api/info/buildingInfo";
  278. import { listAreaInfo, getAreaInfo } from "@/api/info/areaInfo";
  279. import { listRoomInfo, getRoomInfo } from "@/api/info/roomInfo";
  280. import { listEquipmentType, getEquipmentType } from "@/api/type/equipmentType";
  281. export default {
  282. name: "EquipmentInfo",
  283. dicts: ['equipment_info_type'],
  284. data() {
  285. return {
  286. equipmentTypeList: [],
  287. areaList: [],
  288. roomList: [],
  289. buildingList: [],
  290. // 遮罩层
  291. loading: true,
  292. // 导出遮罩层
  293. exportLoading: false,
  294. // 选中数组
  295. ids: [],
  296. // 非单个禁用
  297. single: true,
  298. // 非多个禁用
  299. multiple: true,
  300. // 显示搜索条件
  301. showSearch: true,
  302. // 总条数
  303. total: 0,
  304. // 设备信息表格数据
  305. equipmentInfoList: [],
  306. // 弹出层标题
  307. title: "",
  308. // 是否显示弹出层
  309. open: false,
  310. // 查询参数
  311. queryParams: {
  312. pageNum: 1,
  313. pageSize: 10,
  314. roomId: null,
  315. buildingId: null,
  316. areaId: null,
  317. equipmentName: null,
  318. lngLat: null,
  319. rasterLngLat: null,
  320. typeName: null,
  321. status: null
  322. },
  323. queryBuildingParams: {
  324. pageNum: 1,
  325. pageSize: 999999,
  326. },
  327. // 表单参数
  328. form: {},
  329. // 表单校验
  330. rules: {
  331. equipmentId: [
  332. { required: true, message: "设备id不能为空", trigger: "blur" }
  333. ],
  334. }
  335. };
  336. },
  337. created() {
  338. this.getList();
  339. this.getBuilding();
  340. this.getRoomList();
  341. this.getAreaList();
  342. this.getEquipmentTypeList();
  343. },
  344. methods: {
  345. getEquipmentTypeName(typeId) {
  346. const type = this.equipmentTypeList.find(b => b.typeId === typeId);
  347. return type ? type.typeName : '未知';
  348. },
  349. getAreaName(areaId) {
  350. const area = this.areaList.find(b => b.areaId === areaId);
  351. return area ? area.areaName : '未知';
  352. },
  353. getRoomName(roomId) {
  354. const room = this.roomList.find(b => b.roomId === roomId);
  355. return room ? room.roomName : '未知';
  356. },
  357. getBuildingName(buildingId) {
  358. const building = this.buildingList.find(b => b.buildingId === buildingId);
  359. return building ? building.buildingName : '未知';
  360. },
  361. getEquipmentTypeList() {
  362. listEquipmentType(this.queryBuildingParams).then(response => {
  363. this.equipmentTypeList = response.data.list;
  364. });
  365. },
  366. getAreaList() {
  367. listAreaInfo(this.queryBuildingParams).then(response => {
  368. this.areaList = response.data.list;
  369. });
  370. },
  371. getRoomList() {
  372. listRoomInfo(this.queryBuildingParams).then(response => {
  373. this.roomList = response.data.list;
  374. });
  375. },
  376. getBuilding() {
  377. listBuildingInfo(this.queryBuildingParams).then(response => {
  378. this.buildingList = response.data.list;
  379. });
  380. },
  381. /** 查询设备信息列表 */
  382. getList() {
  383. this.loading = true;
  384. listEquipmentInfo(this.queryParams).then(response => {
  385. this.equipmentInfoList = response.data.list;
  386. this.total = response.data.total;
  387. this.loading = false;
  388. });
  389. },
  390. // 取消按钮
  391. cancel() {
  392. this.open = false;
  393. this.reset();
  394. },
  395. // 表单重置
  396. reset() {
  397. this.form = {
  398. equipmentId: null,
  399. typeId: null,
  400. roomId: null,
  401. buildingId: null,
  402. areaId: null,
  403. equipmentName: null,
  404. lngLat: null,
  405. rasterLngLat: null,
  406. typeName: null,
  407. status: null
  408. };
  409. this.resetForm("form");
  410. },
  411. /** 搜索按钮操作 */
  412. handleQuery() {
  413. this.queryParams.pageNum = 1;
  414. this.getList();
  415. },
  416. /** 重置按钮操作 */
  417. resetQuery() {
  418. this.resetForm("queryForm");
  419. this.handleQuery();
  420. },
  421. // 多选框选中数据
  422. handleSelectionChange(selection) {
  423. this.ids = selection.map(item => item.equipmentId)
  424. this.single = selection.length!==1
  425. this.multiple = !selection.length
  426. },
  427. /** 新增按钮操作 */
  428. handleAdd() {
  429. this.reset();
  430. this.open = true;
  431. this.title = "添加设备信息";
  432. },
  433. /** 修改按钮操作 */
  434. handleUpdate(row) {
  435. this.reset();
  436. const equipmentId = row.equipmentId || this.ids
  437. getEquipmentInfo(equipmentId).then(response => {
  438. this.form = response.data;
  439. this.open = true;
  440. this.title = "修改设备信息";
  441. });
  442. },
  443. /** 提交按钮 */
  444. submitForm() {
  445. this.$refs["form"].validate(valid => {
  446. if (valid) {
  447. if (this.form.equipmentId != null) {
  448. updateEquipmentInfo(this.form).then(response => {
  449. this.$modal.msgSuccess("修改成功");
  450. this.open = false;
  451. this.getList();
  452. });
  453. } else {
  454. addEquipmentInfo(this.form).then(response => {
  455. this.$modal.msgSuccess("新增成功");
  456. this.open = false;
  457. this.getList();
  458. });
  459. }
  460. }
  461. });
  462. },
  463. /** 删除按钮操作 */
  464. handleDelete(row) {
  465. const equipmentIds = row.equipmentId || this.ids;
  466. this.$modal.confirm('是否确认删除设备信息编号为"' + equipmentIds + '"的数据项?').then(function() {
  467. return delEquipmentInfo(equipmentIds);
  468. }).then(() => {
  469. this.getList();
  470. this.$modal.msgSuccess("删除成功");
  471. }).catch(() => {});
  472. },
  473. /** 导出按钮操作 */
  474. handleExport() {
  475. const queryParams = this.queryParams;
  476. this.$modal.confirm('是否确认导出所有设备信息数据项?').then(() => {
  477. this.exportLoading = true;
  478. return exportEquipmentInfo(queryParams);
  479. }).then(response => {
  480. this.$download.name(response.msg);
  481. this.exportLoading = false;
  482. }).catch(() => {});
  483. }
  484. }
  485. };
  486. </script>