index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. <template>
  2. <div class="app-container">
  3. <div class="filter-container" style="padding-bottom:0px">
  4. <div class="search-box-area" id="searchBox">
  5. <!-- <div class="search-item">
  6. <el-cascader
  7. class="filter-item form-search-input fl"
  8. v-model="queryParam.department_id"
  9. :options="departments"
  10. clearable
  11. :props="{
  12. checkStrictly: true,
  13. label: 'department_name',
  14. value: 'id',
  15. }"
  16. @change="handleChange"
  17. ></el-cascader>
  18. </div> -->
  19. <div class="search-item">
  20. <el-input
  21. v-model="queryParam.name"
  22. placeholder="基站名称"
  23. clearable
  24. class="filter-item form-search-input fl"
  25. @keyup.enter.native="handleSearch"
  26. />
  27. </div>
  28. <!-- <div class="search-item">
  29. <el-input
  30. v-model="queryParam.mac"
  31. placeholder="基站Mac"
  32. clearable
  33. class="filter-item form-search-input fl"
  34. @keyup.enter.native="handleSearch"
  35. />
  36. </div> -->
  37. <div class="search-item">
  38. <el-input
  39. v-model="queryParam.shortcode"
  40. placeholder="设备编码"
  41. clearable
  42. style="width:180px"
  43. class="filter-item form-search-input fl"
  44. @keyup.enter.native="handleSearch"
  45. />
  46. </div>
  47. </div>
  48. <div class="search-operate-area">
  49. <!-- <el-input v-model="queryParam.code" placeholder="唯一编码" clearable class="filter-item form-search-input fl" /> -->
  50. <el-button class="filter-item search fl" icon="el-icon-search" @click="handleSearch">搜索</el-button>
  51. <el-button class="filter-item fl" icon="el-icon-refresh" @click="handleRefresh">重置</el-button>
  52. <!-- <el-button
  53. class="filter-item search fl"
  54. :icon="this.searchDisplay?'el-icon-arrow-up':'el-icon-arrow-down'"
  55. @click="searchDis"
  56. >{{word}}</el-button> -->
  57. </div>
  58. <div class="list-operate-area">
  59. <!-- 动态隐藏显示列 -->
  60. <el-popover
  61. placement="bottom"
  62. min-width="80"
  63. trigger="click"
  64. popper-class="col-setting-popover"
  65. >
  66. <el-button
  67. slot="reference"
  68. icon="el-icon-setting"
  69. class="filter-item search fl"
  70. >列设置</el-button>
  71. <!-- <div class="col-setting-title">选择表列</div> -->
  72. <el-checkbox-group v-model="visibleIndexs" :min="1" class="col-setting-group">
  73. <el-checkbox
  74. v-for="colInfo in columnInfos"
  75. :label="colInfo.index"
  76. :key="colInfo.index"
  77. :disabled="colInfo.disabled"
  78. v-show="!colInfo.disabled || showAlwaysShowColumnInCheckbox"
  79. >{{ colInfo.label }}</el-checkbox>
  80. </el-checkbox-group>
  81. </el-popover>
  82. <el-button
  83. class="filter-item search fl"
  84. icon="el-icon-refresh-right"
  85. style="margin-left:10px"
  86. @click="refresh"
  87. >刷新</el-button
  88. >
  89. </div>
  90. </div>
  91. <el-table
  92. :data="data"
  93. v-loading="loading"
  94. ref="multipleTable"
  95. :columnVisibles="columnVisibles"
  96. @selection-change="handleSelectMulti"
  97. :showAlwaysShowColumnInCheckbox="true"
  98. :dynamicColumnSetting="true"
  99. @sort-change="sortChange"
  100. tooltip-effect="dark"
  101. style="width: 100%"
  102. border
  103. fit
  104. >
  105. <el-table-column type="selection" v-if="columnVisibles[0]" fixed="left" width="55"></el-table-column>
  106. <el-table-column
  107. prop="DEVICE_CODE"
  108. label="设备编码"
  109. align="center"
  110. v-if="columnVisibles[1]"
  111. :show-overflow-tooltip="true"
  112. width="120"
  113. />
  114. <el-table-column
  115. prop="DEVICE_NAME"
  116. label="基站名称"
  117. align="center"
  118. v-if="columnVisibles[2]"
  119. :show-overflow-tooltip="true"
  120. />
  121. <el-table-column
  122. prop="OWNER_CODE"
  123. label="所属编码"
  124. align="center"
  125. v-if="columnVisibles[3]"
  126. :show-overflow-tooltip="true"
  127. width="200"
  128. sortable="custom"
  129. />
  130. <!-- <el-table-column
  131. prop="IS_ONLINE_TEXT"
  132. label="在线状态"
  133. align="center"
  134. v-if="columnVisibles[4]"
  135. :show-overflow-tooltip="true"
  136. /> -->
  137. <el-table-column
  138. prop="IS_ONLINE"
  139. label="在线状态"
  140. align="center"
  141. v-if="columnVisibles[4]"
  142. :show-overflow-tooltip="true"
  143. width="120"
  144. >
  145. <template slot-scope="record">
  146. <el-tag type="danger" v-if="record.row.IS_ONLINE == 0">离线</el-tag>
  147. <el-tag type="success" v-else-if="record.row.IS_ONLINE == 1">在线</el-tag>
  148. </template>
  149. </el-table-column>
  150. <el-table-column
  151. prop="UPDATE_DATE"
  152. label="修改时间"
  153. align="center"
  154. v-if="columnVisibles[5]"
  155. :show-overflow-tooltip="true"
  156. />
  157. <el-table-column
  158. prop="DEVICE_IP"
  159. label="设备IP"
  160. align="center"
  161. v-if="columnVisibles[6]"
  162. :show-overflow-tooltip="true"
  163. />
  164. <el-table-column
  165. prop="DEVICE_PORT"
  166. label="设备端口"
  167. align="center"
  168. v-if="columnVisibles[7]"
  169. :show-overflow-tooltip="true"
  170. />
  171. <el-table-column
  172. prop="LOGIN_NAME"
  173. label="登录名称"
  174. align="center"
  175. v-if="columnVisibles[8]"
  176. :show-overflow-tooltip="true"
  177. />
  178. <el-table-column
  179. prop="longitude"
  180. label="经度"
  181. align="center"
  182. v-if="columnVisibles[9]"
  183. :show-overflow-tooltip="true"
  184. />
  185. <el-table-column
  186. prop="latitude"
  187. label="纬度"
  188. align="center"
  189. v-if="columnVisibles[10]"
  190. :show-overflow-tooltip="true"
  191. />
  192. <el-table-column
  193. label="操作"
  194. width="120"
  195. v-if="columnVisibles[11]"
  196. align="center"
  197. fixed="right"
  198. >
  199. <template slot-scope="record">
  200. <el-button type="info" icon="el-icon-view" @click="showDeviceList(record.row)"></el-button>
  201. <!-- <el-button type="primary" icon="el-icon-edit" @click="handleUpdate(record.row)"></el-button> -->
  202. <!-- <el-button type="danger" icon="el-icon-delete" @click="handleDelete(record.row.id)"></el-button> -->
  203. </template>
  204. </el-table-column>
  205. </el-table>
  206. <el-button
  207. type="primary"
  208. icon="el-icon-plus"
  209. v-action="'Station@save'"
  210. :loading="downloadLoading"
  211. style="margin-top: 15px"
  212. @click="handleCreate"
  213. >添加</el-button
  214. >
  215. <el-button
  216. type="warning"
  217. icon="el-icon-download"
  218. v-action="'Station@export_station'"
  219. :loading="downloadLoading"
  220. style="margin-top: 15px"
  221. @click="exportExcel"
  222. >导出</el-button
  223. >
  224. <el-button
  225. type="success"
  226. icon="el-icon-upload"
  227. v-action="'Station@import_station'"
  228. :loading="downloadLoading"
  229. style="margin-top: 15px"
  230. @click="importExcel"
  231. >导入</el-button
  232. >
  233. <el-button
  234. type="danger"
  235. icon="el-icon-delete"
  236. v-if="selectedIds.length>0"
  237. style="margin-top:15px"
  238. v-action="'Station@delete'"
  239. @click="handleMultiDelete()"
  240. >删除</el-button>
  241. <el-pagination
  242. background
  243. class="pagination-container"
  244. @size-change="handleSizeChange"
  245. @current-change="handleCurrentChange"
  246. :current-page="paginate.current"
  247. :page-sizes="paginate.sizes"
  248. :page-size="paginate.limit"
  249. :layout="paginate.layout"
  250. :total="paginate.total"
  251. />
  252. <!--------------------------------- 新增 修改弹框------------------------------------------------------->
  253. <!-- 上传弹窗 -->
  254. <el-dialog
  255. title="导入基站"
  256. append-to-body
  257. width="400px"
  258. :visible.sync="uploadDialogVisible"
  259. custom-class="upload-dialog"
  260. >
  261. <el-cascader
  262. v-model="selectedDepartId"
  263. class="filter-item form-search-input fl"
  264. :options="departments"
  265. :props="{ checkStrictly: true, label: 'department_name', value: 'id' }"
  266. style="margin-bottom: 10px"
  267. placeholder="所属部门"
  268. @change="changeDepart"
  269. ></el-cascader>
  270. <el-select v-model="selectedModelId" placeholder="设备型号" @change="changeModel" style="margin-bottom: 10px">
  271. <el-option
  272. v-for="item in models"
  273. :key="item.value"
  274. :label="item.text"
  275. :value="item.value">
  276. </el-option>
  277. </el-select>
  278. <el-upload
  279. class="upload-demo"
  280. drag
  281. :action="actionUrl"
  282. :headers="headers"
  283. :before-upload="beforeUpload"
  284. :show-file-list="true"
  285. :on-change="onchange"
  286. :on-remove="onremove"
  287. :on-exceed="onexeced"
  288. :limit="1"
  289. ref="upload"
  290. >
  291. <i class="el-icon-upload"></i>
  292. <div class="el-upload__text">
  293. 将文件拖到此处,或
  294. <em>点击上传</em>
  295. </div>
  296. <div class="el-upload__tip upload-tips" slot="tip">
  297. 只能上传xls/xlsx文件
  298. </div>
  299. </el-upload>
  300. <el-link
  301. type="primary"
  302. href="https://rlfd.oss-cn-hangzhou.aliyuncs.com/catch_fd/excel_temp/fd_stations.xls"
  303. style="margin-top: 10px"
  304. >下载模板</el-link
  305. >
  306. <span slot="footer" class="dialog-footer">
  307. <el-button @click="uploadDialogVisible = false">取 消</el-button>
  308. <el-button type="primary" @click="importStations" :loading="loadings">{{
  309. submitText
  310. }}</el-button>
  311. </span>
  312. </el-dialog>
  313. <form-model
  314. @sendVal="closeDialog"
  315. :formModelVisible="formVisible"
  316. :title="title"
  317. :ref="formName"
  318. :location="location"
  319. />
  320. <!-- <heartLogTable
  321. :displayVisible="tableFormVisible"
  322. @formCancel="heartTableCancle"
  323. :currentRecord="currentRecord"
  324. ref="heartLog"
  325. /> -->
  326. <deviceList
  327. :displayVisible="deviceDialogVisible"
  328. @formCancel="deviceCancle"
  329. :station_code="station_code"
  330. ref="deviceList"
  331. />
  332. <bmap-model @sendVal="closeBmapDialog" :bmapModelVisible="bmapVisible" />
  333. </div>
  334. </template>
  335. <script>
  336. import rlListOperate from "@/layout/rl-list-operate/rlListOperate";
  337. import formModel from "./formModel";
  338. import { getToken } from "../../../utils/auth";
  339. import { action } from "@/directive/permission/index.js";
  340. // import heartLogTable from "./heartLogTable";
  341. import deviceList from "./deviceList";
  342. import bmapModel from "./bmapModel.vue";
  343. export default {
  344. name: "station",
  345. mixins: [rlListOperate],
  346. directives: { action },
  347. components: {
  348. formModel,
  349. bmapModel,
  350. // heartLogTable
  351. deviceList
  352. },
  353. data() {
  354. return {
  355. url: "station",
  356. queryParam: {
  357. department_id: "",
  358. mac: "",
  359. shortcode: "",
  360. name:''
  361. },
  362. exportUrl: "station/export_station", //导出url
  363. bmapVisible: false,
  364. location: "",
  365. formName: "station",
  366. formVisible: false,
  367. configFormVisible: false,
  368. // tableFormVisible: false,
  369. //导入请求url
  370. loadings: false,
  371. submitText: "确 定",
  372. uploadDialogVisible:false,
  373. actionUrl: process.env.VUE_APP_BASE_API + "/upload/file_excel",
  374. headers: { authorization: "Bearer " + getToken() },
  375. excel_url: "", //上传Excel返回的url
  376. selectedDepartId: "",
  377. selectedModelId:"",
  378. departments:[],
  379. models:[],
  380. currentRecord: {},
  381. tableVisible: false,
  382. searchDisplay: true,
  383. station_code:'',
  384. deviceDialogVisible:false,
  385. columnVisibles: new Array(12).fill(true), //初始为全true,并在每个列标签中使用v-if引用对应列下标的值。列下标从0开始。
  386. columnInfos: [], // 所有列的信息
  387. hidenColumnIndexs: [], //初始隐藏的列的下标。列下标从 0 开始
  388. visibleIndexs: [], // 可见列的下标集合
  389. showAlwaysShowColumnInCheckbox: true, //设置是否在checkbox显示不允许隐藏的列信息
  390. alwaysShowColumnIndexs: [0] // 总是显示的列的下标(不可隐藏的列)。列下标从 0 开始
  391. };
  392. },
  393. created() {
  394. this.$http.get("departments").then((response) => {
  395. this.departments = response.data;
  396. });
  397. this.$http.post('sysDictData/getOptions', {type: "StationModel"})
  398. .then( resp => {
  399. this.models = resp.data
  400. })
  401. },
  402. methods: {
  403. showDeviceList(row) {
  404. this.deviceDialogVisible = true;
  405. this.station_code = row.LOGIN_NAME;
  406. // this.authorize = row.authorize;
  407. },
  408. deviceCancle() {
  409. this.deviceDialogVisible = false;
  410. },
  411. changeDepart(v) {
  412. this.selectedDepartId = v[v.length - 1];
  413. },
  414. changeModel(v){
  415. this.selectedModelId = v;
  416. },
  417. importExcel() {
  418. this.uploadDialogVisible = true;
  419. },
  420. handleChange(val) {
  421. this.queryParam.department_id = val;
  422. this.handleSearch();
  423. },
  424. handleUpdateConfig(record) {
  425. this.currentRecord = record;
  426. this.configFormVisible = true;
  427. },
  428. beforeUpload(file) {
  429. if (!/\.(xlsx|xls|XLSX|XLS)$/.test(file.name)) {
  430. this.$notify.error({
  431. title: "错误",
  432. message: "上传文件只能为excel文件,且为xlsx,xls格式",
  433. });
  434. return false;
  435. }
  436. return true;
  437. },
  438. onremove() {
  439. //移除文件钩子
  440. this.excel_url = "";
  441. },
  442. onexeced(files) {
  443. if (files.length == 1) {
  444. this.$message.error("只能上传一个文件");
  445. }
  446. },
  447. onchange(file, fileList) {
  448. if (file.response) {
  449. this.$message.success(file.response.data.msg);
  450. this.excel_url = file.response.data.excel_url;
  451. } else {
  452. // console.log(file);
  453. }
  454. },
  455. importStations() {
  456. // console.log(this.excel_url);
  457. var url = this.excel_url,depart_id = this.selectedDepartId,model_id = this.selectedModelId;
  458. if (depart_id == "") {
  459. this.$message.error("请选择部门");
  460. return;
  461. }
  462. if (model_id == "") {
  463. this.$message.error("请选择型号");
  464. return;
  465. }
  466. if (url == "") {
  467. this.$message.error("请上传文件");
  468. return;
  469. }
  470. this.loadings = true;
  471. this.submitText = "导入中";
  472. this.$http
  473. .post("import_station", { url: url, depart_id: depart_id,model_id:model_id })
  474. .then((response) => {
  475. if (response.data.error) {
  476. this.$message.error(response.data.msg);
  477. } else {
  478. this.$message.success(response.data);
  479. }
  480. this.excel_url = "";
  481. this.selectedDepartId = "";
  482. this.$refs.upload.clearFiles();
  483. this.loadings = false;
  484. this.submitText = "确定";
  485. this.uploadDialogVisible = false;
  486. this.getList();
  487. });
  488. },
  489. refresh() {
  490. this.queryParam.page = this.paginate.current;
  491. this.getList();
  492. },
  493. // 处理初始隐藏的列
  494. oprColumns(indexs, isShow) {
  495. let self = this;
  496. indexs.forEach(index => {
  497. self.$set(self.columnVisibles, index, isShow);
  498. });
  499. },
  500. searchDis() {
  501. this.searchDisplay = !this.searchDisplay;
  502. var searchBoxHeght = document.getElementById("searchBox");
  503. if (this.searchDisplay == false) {
  504. searchBoxHeght.style.height = 40 + "px";
  505. } else {
  506. searchBoxHeght.style.height = "auto";
  507. }
  508. }
  509. },
  510. watch: {
  511. visibleIndexs(newValue, oldValue) {
  512. let self = this;
  513. var willHideIndexs = [],
  514. willShowIndexs = [];
  515. willShowIndexs = newValue.filter(index => {
  516. return oldValue.indexOf(index) === -1;
  517. });
  518. willHideIndexs = oldValue.filter(index => {
  519. return newValue.indexOf(index) === -1;
  520. });
  521. self.oprColumns(willShowIndexs, true);
  522. self.oprColumns(willHideIndexs, false);
  523. }
  524. },
  525. computed: {
  526. word: function () {
  527. if (this.searchDisplay == false) {
  528. //对文字进行处理
  529. return "展开";
  530. } else {
  531. return "收起";
  532. }
  533. },
  534. },
  535. mounted() {
  536. let self = this;
  537. if (self.$refs.multipleTable.$slots.default) {
  538. self.$refs.multipleTable.$slots.default.forEach((columnIns, index) => {
  539. if (columnIns.componentOptions === undefined) {
  540. return;
  541. }
  542. let props = columnIns.componentOptions.propsData;
  543. if (
  544. props.label === undefined &&
  545. props.type !== "selection" &&
  546. props.type !== "index"
  547. ) {
  548. return;
  549. }
  550. // 保存所有列的信息
  551. let label =
  552. props.type === "selection"
  553. ? "多选框"
  554. : props.type === "index"
  555. ? "索引"
  556. : props.label,
  557. // 默认多选框和索引不可隐藏
  558. disabled =
  559. props.type === "selection" || props.type === "index" ? true : false;
  560. self.columnInfos.push({
  561. label: label,
  562. index: index,
  563. disabled: disabled
  564. });
  565. // console.log(this.columnInfos)
  566. // 记录初始展示的列的下标
  567. if (self.hidenColumnIndexs.indexOf(index) === -1) {
  568. self.visibleIndexs.push(index);
  569. }
  570. });
  571. // 处理总是显示的列(不可隐藏的列)
  572. self.alwaysShowColumnIndexs.forEach(
  573. index => (self.columnInfos[index].disabled = true)
  574. );
  575. // 处理初始隐藏的列
  576. self.oprColumns(self.hidenColumnIndexs, false);
  577. }
  578. }
  579. };
  580. </script>
  581. <style lang="scss" scoped>
  582. .col-setting-popover {
  583. min-width: 100px;
  584. padding: 9px 16px;
  585. .col-setting-title {
  586. color: #7f8b93;
  587. font-size: 12px;
  588. }
  589. .col-setting-group {
  590. .el-checkbox {
  591. display: block;
  592. margin-top: 5px;
  593. }
  594. }
  595. }
  596. .search-box-area {
  597. width: 70%;
  598. height: 44px;
  599. float: left;
  600. }
  601. .search-operate-area {
  602. width: 20%;
  603. height: 44px;
  604. float: left;
  605. }
  606. .search-item {
  607. width: 25%;
  608. height: 44px;
  609. float: left;
  610. }
  611. #searchBox {
  612. overflow: hidden;
  613. }
  614. </style>