DeviceModelManage.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. <template>
  2. <div class="content-main common-scroll">
  3. <div class="content-body">
  4. <Row :gutter="8" style="width:100%;height:100%">
  5. <i-col span="24" style="height:100%">
  6. <div class="right-main">
  7. <div class="manage-main-center">
  8. <Table :columns="columns" :data="tableData" class="common-table" no-data-text="" :row-class-name="rowClassName" :loading="loading">
  9. <template slot="loading">
  10. <Loading-animation></Loading-animation>
  11. </template>
  12. <template slot-scope="{ row }" slot="action">
  13. <Tooltip content="详情" placement="top">
  14. <i class="iconfont icon-xiangqingmingxi" style="cursor:pointer;color:#B8B532;fontSize:20px;marginRight:6px" @click="detailClick(row)"></i>
  15. </Tooltip>
  16. <Tooltip content="编辑" placement="top">
  17. <i class="iconfont icon-bianji" style="cursor:pointer;color:#64ACFE;fontSize:20px;marginRight:6px" @click="editClick(row)"></i>
  18. </Tooltip>
  19. </template>
  20. </Table>
  21. </div>
  22. <div class="common-page">
  23. <div class="common-page-total">
  24. 共<span>{{tablePage}}</span>页 / <span>{{tableTotal}}</span>条数据
  25. </div>
  26. <Page :total="tableTotal" :current="tableParams.pageNum" :page-size="tableParams.pageSize" @on-change="changePage" show-elevator />
  27. </div>
  28. </div>
  29. </i-col>
  30. </Row>
  31. </div>
  32. <Modal
  33. v-model="showModal"
  34. :title="title"
  35. width="45"
  36. ref="modalGrag"
  37. draggable
  38. reset-drag-position
  39. :mask-closable="false"
  40. class-name="common-modal">
  41. <div class="common-form-item-tips">
  42. <i class="iconfont icon-tishi" style="vertical-align: middle;color:#FFB31A;margin-right:12px"></i>
  43. 编辑提交后,系统所有历史警示信息将同时变动,可能造成统计数据混乱,请谨慎操作。
  44. </div>
  45. <div class="common-modal-loading" v-if="editLoading">
  46. <loading-animation></loading-animation>
  47. </div>
  48. <Table :columns="editColumns" :data="editTableData" class="common-table edit-table" :row-class-name="rowClassName" :loading="loading" v-if="!editLoading">
  49. <template slot="targetName" slot-scope="{ row,index }">
  50. <Input v-model.trim="row.targetName" style="width: 100%; padding: 6px" maxlength="20" show-word-limit @on-change="inputChange(row,index)"/>
  51. </template>
  52. </Table>
  53. <div slot="footer">
  54.     <Button @click="modalCancel">取消</Button>
  55.     <Button type="primary" @click="modalOk('formOption')">确定</Button>
  56.   </div>
  57. </Modal>
  58. <Modal
  59. v-model="detailStatus"
  60. title="监测类型详情"
  61. width="45"
  62. ref="modalGrag"
  63. draggable
  64. reset-drag-position
  65. footer-hide
  66. :mask-closable="false"
  67. class-name="common-modal common-modal-detail">
  68. <Tabs :value="currentModalTabs" @on-click="tabsClick" class="common-tabs">
  69. <TabPane v-for="tab in tabsModalData" :key="tab.label" :label="tab.label" :name="tab.label"></TabPane>
  70. </Tabs>
  71. <rolling-detail-table :columns1="columnsModal" :apiUrl="apiUrl" ref="detailTable" class="rolling-detail-table"></rolling-detail-table>
  72. </Modal>
  73. </div>
  74. </template>
  75. <script>
  76. import _ from 'lodash'
  77. export default {
  78. name: "DeviceModelManage",
  79. components:{
  80. },
  81. data() {
  82. return {
  83. tableTotal: 0,
  84. tablePage: 0,
  85. tableParams: {
  86. equipmentTypeId: '',
  87. applicationId: '',
  88. keywords: '',
  89. pageNum: 1,
  90. pageSize: 10
  91. },
  92. editLoading: true,
  93. loading: true,
  94. tableData: [],
  95. columns: [
  96. {
  97. title: '设备类型名称',
  98. key: 'equipmentTypeName',
  99. align: 'center',
  100. ellipsis: true,
  101. tooltip: true
  102. },
  103. {
  104. title: '模型监测指标',
  105. key: 'targetCount',
  106. align: 'center'
  107. },
  108. {
  109. title: '等级判定策略覆盖指标数量',
  110. key: 'rankCount',
  111. align: 'center'
  112. },
  113. {
  114. title: '连续监测策略覆盖指标数量',
  115. key: 'durativeCount',
  116. align: 'center'
  117. },
  118. {
  119. title: '操作',
  120. align: 'center',
  121. slot: 'action',
  122. width: 80
  123. }
  124. ],
  125. rowObj: {},
  126. formOption: {equipmentTypeId:null},
  127. ruleValidate: {
  128. name: [{
  129. required: true,
  130. message: '请输入应用名称',
  131. trigger: 'change'
  132. }],
  133. },
  134. equipTypeData: [],
  135. showModal: false,
  136. detailStatus: false,
  137. modalStatus: false,
  138. title: '编辑监测模型',
  139. editTableData: [],
  140. editColumns: [
  141. {
  142. title: '序号',
  143. type: 'index',
  144. align: 'center',
  145. width: 80
  146. },
  147. {
  148. title: '设备指标',
  149. slot: 'targetName',
  150. align: 'center',
  151. },
  152. {
  153. title: '对应数据库字段',
  154. key: 'targetCode',
  155. align: 'center',
  156. ellipsis: true,
  157. tooltip: true
  158. },
  159. ],
  160. detailStatus: false,
  161. currentModalTabs:'监测指标',
  162. tabsModalData: [{label:'监测指标'},{label:'关联设备'}],
  163. columnsModal: [],
  164. columnsModalType: [
  165. {
  166. title: '序号',
  167. type: 'index',
  168. align: 'center',
  169. width: 80
  170. },
  171. {
  172. title: '设备指标',
  173. key: 'targetName',
  174. align: 'center',
  175. ellipsis: true,
  176. tooltip: true
  177. },
  178. {
  179. title: '对应数据库字段',
  180. key: 'targetCode',
  181. align: 'center',
  182. ellipsis: true,
  183. tooltip: true
  184. },
  185. {
  186. title: '等级判定策略',
  187. key: 'rankCount',
  188. align: 'center'
  189. },
  190. {
  191. title: '连续监测策略',
  192. key: 'durativeCount',
  193. align: 'center'
  194. },
  195. ],
  196. columnsRelatedEquip: [
  197. {
  198. title: '序号',
  199. type: 'index',
  200. align: 'center',
  201. width: 80
  202. },
  203. {
  204. title: '设备ID',
  205. key: 'equipmentId',
  206. align: 'center',
  207. ellipsis: true,
  208. tooltip: true
  209. },
  210. {
  211. title: '设备名称',
  212. key: 'equipmentName',
  213. align: 'center',
  214. ellipsis: true,
  215. tooltip: true
  216. },
  217. {
  218. title: '归属线路',
  219. key: 'lineName',
  220. align: 'center',
  221. ellipsis: true,
  222. tooltip: true
  223. },
  224. {
  225. title: '归属站点',
  226. key: 'stationName',
  227. align: 'center',
  228. ellipsis: true,
  229. tooltip: true
  230. },
  231. {
  232. title: '状态',
  233. key: 'equipmentStatusValue',
  234. align: 'center',
  235. ellipsis: true,
  236. tooltip: true
  237. },
  238. ],
  239. detailParams: {
  240. equipmentTypeId: null,
  241. pageNum: 1,
  242. pageSize: 9999
  243. },
  244. apiUrl: '',
  245. appNameObj: {
  246. level: '',
  247. lineId: '',
  248. stationId: '',
  249. equipmentCheck: '',
  250. instrumentCheck: '',
  251. pageNum: 1,
  252. pageSize: 9999
  253. },
  254. appNameList: []
  255. };
  256. },
  257. mounted() {
  258. },
  259. methods: {
  260. rowClassName(row, index) {
  261. if (index % 2 == 0) {
  262. return "ivu-table-stripe-even";
  263. } else {
  264. return "ivu-table-stripe-odd";
  265. }
  266. },
  267. // 分页
  268. changePage (val) {
  269. this.tableParams.pageNum = val
  270. this.getTableData()
  271. },
  272. getTableData (keywords,arr,level) {
  273. if (level) {
  274. this.tableParams.keywords = ''
  275. if (level == 2) {
  276. this.tableParams.applicationId = arr[arr.length-1]
  277. this.tableParams.equipmentTypeId = ''
  278. } else if (level == 3) {
  279. this.tableParams.applicationId = arr[arr.length-2]
  280. this.tableParams.equipmentTypeId = arr[arr.length-1]
  281. } else {
  282. this.tableParams.applicationId = ''
  283. this.tableParams.equipmentTypeId = ''
  284. }
  285. } else {
  286. this.tableParams.applicationId = ''
  287. this.tableParams.equipmentTypeId = ''
  288. if (keywords == '合肥轨道交通' || keywords == '' || keywords == undefined) {
  289. this.tableParams.keywords = ''
  290. } else {
  291. this.tableParams.keywords = keywords
  292. }
  293. }
  294. this.loading = true
  295. this.$get('metroapi/target/queryTargetPage', this.tableParams).then(res=>{
  296. this.loading = false
  297. if ( res.httpCode == 1 ){
  298. this.tableData = res.data.data
  299. this.tableTotal = res.data.count
  300. if (res.data.data.length==0) {
  301. this.tablePage = 0
  302. } else {
  303. this.tablePage = res.data.count<= 10 ? 1: Math.ceil(res.data.count/this.tableParams.pageSize)
  304. }
  305. if (res.data.data.length==0 && this.tableParams.pageNum>1) {
  306. this.tableParams.pageNum--
  307. return this.getTableData()
  308. }
  309. } else {
  310. this.tableData = []
  311. this.tableTotal = 0
  312. }
  313. })
  314. },
  315. detailClick (row) {
  316. this.detailParams.equipmentTypeId = Number(row.equipmentTypeId)
  317. this.detailParams.pageSize = 999
  318. this.rowObj = row
  319. this.detailStatus = true
  320. this.currentModalTabs = '监测指标'
  321. this.$nextTick(() => {
  322. this.apiUrl = 'metroapi/target/queryTargetCountByEquTypeId'
  323. this.columnsModal = this.columnsModalType
  324. document.querySelector(".rolling-detail-table .ivu-table-body").scrollTo(0, 0)
  325. this.$refs.detailTable.getChartsDetail(this.detailParams,this.apiUrl)
  326. });
  327. },
  328. editClick (row) {
  329. this.getstrategyData(row.equipmentTypeId)
  330. this.editLoading = true
  331. this.rowObj = row
  332. this.formOption = JSON.parse(JSON.stringify(row))
  333. this.title = '编辑监测模型'
  334. this.$nextTick(()=> {
  335. this.showModal = true
  336. })
  337. },
  338. getstrategyData (equipmentTypeId) {
  339. this.$get('metroapi/target/queryTargetByEquipmentType', {equipmentTypeId:equipmentTypeId}).then(res=>{
  340. this.editLoading = false
  341. if (res.httpCode == 1 ){
  342. this.editTableData = res.data
  343. this.formOption.targetInfoList = res.data
  344. } else {
  345. this.$Message.info(res.msg)
  346. }
  347. })
  348. },
  349. inputChange (row,index) {
  350. this.formOption.targetInfoList[index].targetName = row.targetName
  351. },
  352. modalOk (formName) {
  353. let canSave = true;
  354. let arr = this.formOption.targetInfoList
  355. for (var i = 0; i < arr.length; i++) {
  356. if (arr[i].targetName == '') {
  357. this.$Message['error']({
  358. background: true,
  359. content: '指标名称不可为空'
  360. });
  361. return
  362. }
  363. for (var j = i + 1; j < arr.length; j++) {
  364. if (arr[i].targetName == arr[j].targetName)
  365. {
  366. canSave = false;
  367. break;
  368. }
  369. }
  370. }
  371. if(canSave) {
  372. this.$post('metroapi/target/editTarget', this.formOption).then(res=>{
  373. if (res.httpCode == 1 ){
  374. this.showModal = false
  375. this.$Message.info(res.msg)
  376. this.getTableData()
  377. } else {
  378. this.$Message.info(res.msg)
  379. }
  380. })
  381. } else {
  382. this.$Message['error']({
  383. background: true,
  384. content: '模型内各监测指标名称不可重复'
  385. });
  386. }
  387. },
  388. modalCancel () {
  389. this.showModal = false
  390. },
  391. tabsClick (name) {
  392. this.currentModalTabs = name
  393. if (this.currentModalTabs == '监测指标') {
  394. this.detailStatus
  395. this.apiUrl = 'metroapi/target/queryTargetCountByEquTypeId'
  396. this.columnsModal = this.columnsModalType
  397. this.detailParams.pageSize = 999
  398. } else if (this.currentModalTabs == '关联设备') {
  399. this.apiUrl = 'metroapi/equipment/queryEquipmentByTypePage'
  400. this.columnsModal = this.columnsRelatedEquip
  401. this.detailParams.pageSize = 10
  402. }
  403. this.$nextTick(() => {
  404. document.querySelector(".rolling-detail-table .ivu-table-body").scrollTo(0, 0)
  405. this.$refs.detailTable.getChartsDetail(this.detailParams,this.apiUrl)
  406. });
  407. }
  408. }
  409. };
  410. </script>
  411. <style scoped lang="stylus">
  412. .content-main {
  413. width: 100%;
  414. height: calc(100% - 50px);
  415. overflow: hidden;
  416. }
  417. .common-search {
  418. width: 100%;
  419. }
  420. >>> .common-search .ivu-input {
  421. background-color: #06214D;
  422. border: 1px solid #2355A6;
  423. border-radius: 15px;
  424. color: #fff;
  425. height: 32px;
  426. }
  427. >>> .common-search .ivu-input:focus {
  428. border-color: #0185ea;
  429. }
  430. .content-body {
  431. width: 100%;
  432. height: 100%;
  433. background: #06214D;
  434. }
  435. .station-tree {
  436. height: 100%;
  437. padding: 10px;
  438. }
  439. .station-tree-body {
  440. border: 1px solid #204384;
  441. height: 100%;
  442. padding: 10px;
  443. }
  444. .station-tree-center {
  445. height: calc(100% - 32px);
  446. padding-top: 10px;
  447. // display: flex;
  448. }
  449. .station-tree-left {
  450. height: 100%;
  451. overflow: auto;
  452. }
  453. .station-tree-left-notree {
  454. height: 100%;
  455. display: flex;
  456. align-items: center;
  457. justify-content: center;
  458. color: #fff;
  459. fon-size: 14px;
  460. }
  461. .right-main {
  462. height: 100%;
  463. padding: 10px 0;
  464. position: relative;
  465. // padding: 16px;
  466. }
  467. .manage-main-top {
  468. padding: 12px 0;
  469. display: flex;
  470. justify-content: flex-end;
  471. }
  472. .manage-main-center {
  473. width: 100%;
  474. height: calc(100% - 100px);
  475. }
  476. .manage-main-center .common-table {
  477. max-height: 100%;
  478. }
  479. >>> .common-table .ivu-table th {
  480. height: 59px;
  481. }
  482. >>> .common-table .ivu-table td {
  483. height: 59px;
  484. }
  485. >>> .common-table .ivu-spin-fix {
  486. top: 59px;
  487. height: calc(100vh - 280px);
  488. }
  489. >>> .common-table .ivu-table-tip {
  490. background: url('../../../assets/images/noData.png') no-repeat center;
  491. height: calc(100vh - 280px);
  492. }
  493. >>> .common-table .ivu-table-tip table {
  494. display: none;
  495. }
  496. .common-page {
  497. margin-top: 15px;
  498. display: flex;
  499. align-items: center;
  500. justify-content: flex-end;
  501. position: absolute;
  502. bottom: 0;
  503. right: 0;
  504. }
  505. .common-page-total {
  506. color: #fff;
  507. padding-right: 10px;
  508. font-size: 14px;
  509. span {
  510. color #409EFF;
  511. }
  512. }
  513. >>> .edit-table .ivu-table-body{
  514. max-height: 475px;
  515. overflow: hidden;
  516. overflow-y: auto;
  517. }
  518. >>> .edit-table .ivu-table th {
  519. height: 48PX;
  520. }
  521. >>> .edit-table .ivu-table td {
  522. height: 48PX;
  523. }
  524. >>> .edit-table .ivu-spin-fix {
  525. top: 0;
  526. height: auto;
  527. }
  528. >>> .edit-table .ivu-table-tip {
  529. background: none;
  530. height: auto;
  531. }
  532. >>> .edit-table .ivu-table-tip table {
  533. display: block;
  534. }
  535. >>> .edit-table .ivu-table-tip table td{
  536. border-bottom: none;
  537. }
  538. // >>> .common-modal-top-text {
  539. // font-size: 14px;
  540. // font-weight: bold;
  541. // color: #29A0FF;
  542. // line-height: 42px;
  543. // border-left: 3px solid #1590F1;
  544. // padding-left: 12px;
  545. // }
  546. // >>> .common-modal-top-especial {
  547. // margin-bottom: -10px;
  548. // }
  549. // >>> .common-modal-content {
  550. // display: flex;
  551. // width: 100%;
  552. // justify-content: space-between;
  553. // flex-wrap: wrap;
  554. // margin-bottom: 15px;
  555. // border-right: 1px solid #21437B;
  556. // }
  557. // >>> .modal-content-item {
  558. // width: 100%;
  559. // display: flex;
  560. // }
  561. // >>> .item-especial {
  562. // width: 100%;
  563. // }
  564. // >>> .modal-content-item-name {
  565. // width: 25%;
  566. // height: 45px;
  567. // line-height: 45px;
  568. // background: #13305F;
  569. // border-top: 1px solid #21437B;
  570. // border-left: 1px solid #21437B;
  571. // font-size: 14px;
  572. // color: #F5F5F5;
  573. // padding-left: 20px;
  574. // }
  575. // >>> .modal-content-item-value {
  576. // width: 75%;
  577. // height: 45px;
  578. // line-height: 45px;
  579. // background: #06214D;
  580. // border-top: 1px solid #21437B;
  581. // border-left: 1px solid #21437B;
  582. // font-size: 14px;
  583. // color: #F5F5F5;
  584. // padding-left: 20px;
  585. // }
  586. // >>> .item-especial .modal-content-item-name{
  587. // width: 25%;
  588. // height: auto;
  589. // min-height: 45px;
  590. // border-bottom: 1px solid #21437B;
  591. // display: flex;
  592. // align-items: center;
  593. // }
  594. // >>> .item-especial .modal-content-item-value{
  595. // width: 75%;
  596. // height: auto;
  597. // min-height: 45px;
  598. // border-bottom: 1px solid #21437B;
  599. // display: flex;
  600. // align-items: center;
  601. // line-height: 22px;
  602. // }
  603. // >>> .item-especial .modal-content-item-name {
  604. // border-bottom: 1px solid #21437B;
  605. // }
  606. // >>> .item-especial .modal-content-item-value {
  607. // border-bottom: 1px solid #21437B;
  608. // }
  609. // >>> .modal-content-item-value .ivu-tooltip {
  610. // width: 100%;
  611. // }
  612. // >>> .modal-content-item-value .ivu-tooltip-rel {
  613. // overflow: hidden;
  614. // text-overflow:ellipsis;
  615. // white-space: nowrap;
  616. // }
  617. .common-form-item-tips {
  618. height: 37px;
  619. background: #2D2515;
  620. border: 1px solid #FFB31A;
  621. border-radius: 4px;
  622. color: #BD9952;
  623. font-size: 14px;
  624. margin-bottom: 12px;
  625. display: flex;
  626. align-items: center;
  627. justify-content: center;
  628. }
  629. </style>