index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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="elevatorCode">
  5. <el-input
  6. v-model="queryParams.elevatorCode"
  7. placeholder="请输入电梯型号"
  8. clearable
  9. size="small"
  10. @keyup.enter.native="handleQuery"
  11. />
  12. </el-form-item>
  13. <el-form-item label="大楼" prop="buildingId">
  14. <template>
  15. <el-select v-model="queryParams.buildingId" filterable placeholder="请选择">
  16. <el-option
  17. v-for="item in buildingList"
  18. :key="item.buildingId"
  19. :label="item.buildingName"
  20. :value="item.buildingId">
  21. </el-option>
  22. </el-select>
  23. </template>
  24. </el-form-item>
  25. <el-form-item label="电梯状态" prop="status">
  26. <el-select v-model="queryParams.status" placeholder="请选择电梯状态" clearable size="small">
  27. <el-option
  28. v-for="dict in dict.type.elevator_info_status"
  29. :key="dict.value"
  30. :label="dict.label"
  31. :value="dict.value"
  32. />
  33. </el-select>
  34. </el-form-item>
  35. <el-form-item label="电梯名字" prop="elevatorName">
  36. <el-input
  37. v-model="queryParams.elevatorName"
  38. placeholder="请输入电梯名字"
  39. clearable
  40. size="small"
  41. @keyup.enter.native="handleQuery"
  42. />
  43. </el-form-item>
  44. <el-form-item>
  45. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  46. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  47. </el-form-item>
  48. </el-form>
  49. <el-row :gutter="10" class="mb8">
  50. <el-col :span="1.5">
  51. <el-button
  52. type="primary"
  53. plain
  54. icon="el-icon-plus"
  55. size="mini"
  56. @click="handleAdd"
  57. v-hasPermi="['info:elevatorInfo:add']"
  58. >新增</el-button>
  59. </el-col>
  60. <el-col :span="1.5">
  61. <el-button
  62. type="success"
  63. plain
  64. icon="el-icon-edit"
  65. size="mini"
  66. :disabled="single"
  67. @click="handleUpdate"
  68. v-hasPermi="['info:elevatorInfo:edit']"
  69. >修改</el-button>
  70. </el-col>
  71. <el-col :span="1.5">
  72. <el-button
  73. type="danger"
  74. plain
  75. icon="el-icon-delete"
  76. size="mini"
  77. :disabled="multiple"
  78. @click="handleDelete"
  79. v-hasPermi="['info:elevatorInfo:remove']"
  80. >删除</el-button>
  81. </el-col>
  82. <el-col :span="1.5">
  83. <el-button
  84. type="warning"
  85. plain
  86. icon="el-icon-download"
  87. size="mini"
  88. :loading="exportLoading"
  89. @click="handleExport"
  90. v-hasPermi="['info:elevatorInfo:export']"
  91. >导出</el-button>
  92. </el-col>
  93. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  94. </el-row>
  95. <el-table v-loading="loading" :data="elevatorInfoList" @selection-change="handleSelectionChange">
  96. <el-table-column type="selection" width="55" align="center" />
  97. <el-table-column label="电梯" align="center" prop="elevatorId" />
  98. <el-table-column label="电梯型号" align="center" prop="elevatorCode" />
  99. <el-table-column label="大楼名称" align="center">
  100. <template slot-scope="scope">
  101. {{ getBuildingName(scope.row.buildingId) }}
  102. </template>
  103. </el-table-column>
  104. <el-table-column label="电梯状态" align="center" prop="status">
  105. <template slot-scope="scope">
  106. <dict-tag :options="dict.type.elevator_info_status" :value="scope.row.status"/>
  107. </template>
  108. </el-table-column>
  109. <el-table-column label="电梯名字" align="center" prop="elevatorName" />
  110. <el-table-column label="保养次数" align="center" prop="upkeepNum" />
  111. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
  112. <template slot-scope="scope">
  113. <el-button
  114. size="mini"
  115. type="text"
  116. icon="el-icon-edit"
  117. @click="handleUpdate(scope.row)"
  118. v-hasPermi="['info:elevatorInfo:edit']"
  119. >修改</el-button>
  120. <el-button
  121. size="mini"
  122. type="text"
  123. icon="el-icon-delete"
  124. @click="handleDelete(scope.row)"
  125. v-hasPermi="['info:elevatorInfo:remove']"
  126. >删除</el-button>
  127. </template>
  128. </el-table-column>
  129. </el-table>
  130. <pagination
  131. v-show="total>0"
  132. :total="total"
  133. :page.sync="queryParams.pageNum"
  134. :limit.sync="queryParams.pageSize"
  135. @pagination="getList"
  136. />
  137. <!-- 添加或修改电梯信息对话框 -->
  138. <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
  139. <el-form ref="form" :model="form" :rules="rules" label-width="120px">
  140. <el-form-item label="电梯型号" prop="elevatorCode">
  141. <el-input v-model="form.elevatorCode" placeholder="请输入电梯型号" />
  142. </el-form-item>
  143. <el-form-item label="大楼" prop="buildingId">
  144. <template>
  145. <el-select v-model="form.buildingId" filterable placeholder="请选择">
  146. <el-option
  147. v-for="item in buildingList"
  148. :key="item.buildingId"
  149. :label="item.buildingName"
  150. :value="item.buildingId">
  151. </el-option>
  152. </el-select>
  153. </template>
  154. </el-form-item>
  155. <el-form-item label="电梯状态" prop="status">
  156. <el-select v-model="form.status" placeholder="请选择电梯状态">
  157. <el-option
  158. v-for="dict in dict.type.elevator_info_status"
  159. :key="dict.value"
  160. :label="dict.label"
  161. :value="parseInt(dict.value)"
  162. ></el-option>
  163. </el-select>
  164. </el-form-item>
  165. <el-form-item label="电梯名字" prop="elevatorName">
  166. <el-input v-model="form.elevatorName" placeholder="请输入电梯名字" />
  167. </el-form-item>
  168. <el-form-item label="保养次数" prop="upkeepNum">
  169. <el-input-number v-model="form.upkeepNum" controls-position="right" :min="0" placeholder="请输入保养次数" />
  170. </el-form-item>
  171. </el-form>
  172. <div slot="footer" class="dialog-footer">
  173. <el-button type="primary" @click="submitForm">确 定</el-button>
  174. <el-button @click="cancel">取 消</el-button>
  175. </div>
  176. </el-dialog>
  177. </div>
  178. </template>
  179. <script>
  180. import { listElevatorInfo, getElevatorInfo, delElevatorInfo, addElevatorInfo, updateElevatorInfo, exportElevatorInfo } from "@/api/info/elevatorInfo";
  181. import { listBuildingInfo, getBuildingInfo } from "@/api/info/buildingInfo";
  182. export default {
  183. name: "ElevatorInfo",
  184. dicts: ['elevator_info_status'],
  185. data() {
  186. return {
  187. buildingList: [],
  188. // 遮罩层
  189. loading: true,
  190. // 导出遮罩层
  191. exportLoading: false,
  192. // 选中数组
  193. ids: [],
  194. // 非单个禁用
  195. single: true,
  196. // 非多个禁用
  197. multiple: true,
  198. // 显示搜索条件
  199. showSearch: true,
  200. // 总条数
  201. total: 0,
  202. // 电梯信息表格数据
  203. elevatorInfoList: [],
  204. // 弹出层标题
  205. title: "",
  206. // 是否显示弹出层
  207. open: false,
  208. // 查询参数
  209. queryParams: {
  210. pageNum: 1,
  211. pageSize: 10,
  212. elevatorCode: null,
  213. buildingId: null,
  214. status: null,
  215. elevatorName: null,
  216. },
  217. queryBuildingParams: {
  218. pageNum: 1,
  219. pageSize: 999999,
  220. },
  221. // 表单参数
  222. form: {},
  223. // 表单校验
  224. rules: {
  225. elevatorId: [
  226. { required: true, message: "电梯id不能为空", trigger: "blur" }
  227. ],
  228. }
  229. };
  230. },
  231. created() {
  232. this.getList();
  233. this.getBuilding();
  234. },
  235. methods: {
  236. getBuildingName(buildingId) {
  237. const building = this.buildingList.find(b => b.buildingId === buildingId);
  238. return building ? building.buildingName : '未知';
  239. },
  240. getBuilding() {
  241. listBuildingInfo(this.queryBuildingParams).then(response => {
  242. this.buildingList = response.data.list;
  243. });
  244. },
  245. /** 查询电梯信息列表 */
  246. getList() {
  247. this.loading = true;
  248. listElevatorInfo(this.queryParams).then(response => {
  249. this.elevatorInfoList = response.data.list;
  250. this.total = response.data.total;
  251. this.loading = false;
  252. });
  253. },
  254. // 取消按钮
  255. cancel() {
  256. this.open = false;
  257. this.reset();
  258. },
  259. // 表单重置
  260. reset() {
  261. this.form = {
  262. elevatorId: null,
  263. elevatorCode: null,
  264. buildingId: null,
  265. status: null,
  266. elevatorName: null,
  267. upkeepNum: null
  268. };
  269. this.resetForm("form");
  270. },
  271. /** 搜索按钮操作 */
  272. handleQuery() {
  273. this.queryParams.pageNum = 1;
  274. this.getList();
  275. },
  276. /** 重置按钮操作 */
  277. resetQuery() {
  278. this.resetForm("queryForm");
  279. this.handleQuery();
  280. },
  281. // 多选框选中数据
  282. handleSelectionChange(selection) {
  283. this.ids = selection.map(item => item.elevatorId)
  284. this.single = selection.length!==1
  285. this.multiple = !selection.length
  286. },
  287. /** 新增按钮操作 */
  288. handleAdd() {
  289. this.reset();
  290. this.open = true;
  291. this.title = "添加电梯信息";
  292. },
  293. /** 修改按钮操作 */
  294. handleUpdate(row) {
  295. this.reset();
  296. const elevatorId = row.elevatorId || this.ids
  297. getElevatorInfo(elevatorId).then(response => {
  298. this.form = response.data;
  299. this.open = true;
  300. this.title = "修改电梯信息";
  301. });
  302. },
  303. /** 提交按钮 */
  304. submitForm() {
  305. this.$refs["form"].validate(valid => {
  306. if (valid) {
  307. if (this.form.elevatorId != null) {
  308. updateElevatorInfo(this.form).then(response => {
  309. this.$modal.msgSuccess("修改成功");
  310. this.open = false;
  311. this.getList();
  312. });
  313. } else {
  314. addElevatorInfo(this.form).then(response => {
  315. this.$modal.msgSuccess("新增成功");
  316. this.open = false;
  317. this.getList();
  318. });
  319. }
  320. }
  321. });
  322. },
  323. /** 删除按钮操作 */
  324. handleDelete(row) {
  325. const elevatorIds = row.elevatorId || this.ids;
  326. this.$modal.confirm('是否确认删除电梯信息编号为"' + elevatorIds + '"的数据项?').then(function() {
  327. return delElevatorInfo(elevatorIds);
  328. }).then(() => {
  329. this.getList();
  330. this.$modal.msgSuccess("删除成功");
  331. }).catch(() => {});
  332. },
  333. /** 导出按钮操作 */
  334. handleExport() {
  335. const queryParams = this.queryParams;
  336. this.$modal.confirm('是否确认导出所有电梯信息数据项?').then(() => {
  337. this.exportLoading = true;
  338. return exportElevatorInfo(queryParams);
  339. }).then(response => {
  340. this.$download.name(response.msg);
  341. this.exportLoading = false;
  342. }).catch(() => {});
  343. }
  344. }
  345. };
  346. </script>