ApplicationStation.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. <template>
  2. <div class="content-main-manage">
  3. <div class="search-list">
  4. <div class="search-left">
  5. <Form class="common-form common-form-list" ref="tableParams" :model="tableParams" inline>
  6. <FormItem label="" prop="businessTypeId">
  7. <Select v-model="tableParams.businessTypeId" placeholder="业务类型">
  8. <Option v-for="item in businessData" :value="item.id" :key="item.id">{{ item.businessTypeName }}</Option>
  9. </Select>
  10. </FormItem>
  11. <FormItem label="" prop="equipmentCheck">
  12. <Select v-model="tableParams.equipmentCheck" placeholder="接入设备">
  13. <Option v-for="item in equipmentCheckData" :value="item.value" :key="item.value">{{ item.label }}</Option>
  14. </Select>
  15. </FormItem>
  16. <FormItem label="" prop="instrumentCheck">
  17. <Select v-model="tableParams.instrumentCheck" placeholder="接入仪表">
  18. <Option v-for="item in instrumentData" :value="item.value" :key="item.value">{{ item.label }}</Option>
  19. </Select>
  20. </FormItem>
  21. <FormItem label="" prop="keywords">
  22. <Input placeholder="请输入关键字查询" clearable search v-model="tableParams.keywords" />
  23. </FormItem>
  24. <FormItem label="" >
  25. <Button type="primary" class="common-btn-search" @click="searchClick">
  26. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 筛选
  27. </Button>
  28. <Button type="primary" class="common-btn-search" style="margin-left:10px" @click="resetClick('tableParams')">
  29. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 重置
  30. </Button>
  31. </FormItem>
  32. </Form>
  33. </div>
  34. <div class="btn-container">
  35. <Button icon="ios-add" class="common-add-btn" @click="addClick">新增应用</Button>
  36. </div>
  37. </div>
  38. <div class="manage-main-center">
  39. <Table :columns="columns" :data="tableData" class="common-table app-table" no-data-text="" :row-class-name="rowClassName" :loading="loading">
  40. <template slot="loading">
  41. <Loading-animation></Loading-animation>
  42. </template>
  43. <template slot-scope="{ row }" slot="action">
  44. <Tooltip content="详情" placement="top">
  45. <i class="iconfont icon-xiangqingmingxi" style="cursor:pointer;color:#B8B532;fontSize:20px;marginRight:6px" @click="detailClick(row)"></i>
  46. </Tooltip>
  47. <Tooltip content="编辑" placement="top">
  48. <i class="iconfont icon-bianji" style="cursor:pointer;color:#64ACFE;fontSize:20px;marginRight:6px" @click="editClick(row)"></i>
  49. </Tooltip>
  50. <Tooltip content="删除" placement="top">
  51. <i class="iconfont icon-shanchu" style="cursor:pointer;color:#E92E2E;fontSize:20px;marginRight:6px" @click="delClick(row)"></i>
  52. </Tooltip>
  53. </template>
  54. </Table>
  55. </div>
  56. <div class="common-page">
  57. <div class="common-page-total">
  58. 共<span>{{tablePage}}</span>页 / <span>{{tableTotal}}</span>条数据
  59. </div>
  60. <Page :total="tableTotal" :current="tableParams.pageNum" :page-size="tableParams.pageSize" @on-change="changePage" @on-page-size-change="sizeChange" show-elevator />
  61. </div>
  62. <Modal
  63. v-model="showModal"
  64. :title="title"
  65. width="36"
  66. ref="modalGrag"
  67. draggable
  68. reset-drag-position
  69. @on-visible-change="modalChange"
  70. :mask-closable="false"
  71. class-name="common-modal">
  72. <Form class="common-form" ref="formOption" :model="formOption" :rules="ruleValidate" :label-width="120">
  73. <FormItem label="应用ID:">
  74. <span v-show="title=='新增应用'">系统自动生成,唯一不重复</span>
  75. <span v-show="title=='编辑应用'">{{formOption.appCode}}</span>
  76. </FormItem>
  77. <FormItem label="应用名称:" prop="appName">
  78. <Input v-model.trim="formOption.appName" type="textarea" :rows="3" maxlength="100" show-word-limit />
  79. </FormItem>
  80. <FormItem label="业务类型:" prop="businessTypeId">
  81. <Select v-model="formOption.businessTypeId" placeholder="业务类型" >
  82. <Option v-for="item in businessModalData" :value="item.id" :key="item.id">{{ item.businessTypeName }}</Option>
  83. </Select>
  84. </FormItem>
  85. </Form>
  86. <div slot="footer">
  87.     <Button @click="modalCancel">取消</Button>
  88.     <Button type="primary" @click="modalOk('formOption')">确定</Button>
  89.   </div>
  90. </Modal>
  91. <Modal
  92. v-model="modalStatus"
  93. :title="commonTitle"
  94. width="30"
  95. ref="modalGrag"
  96. draggable
  97. reset-drag-position
  98. :mask-closable="false"
  99. class-name="common-modal">
  100. <Icon type="ios-information-circle" :style="{ color: activeColor}" class="modal-icon"></Icon>
  101. <span class="modal-text">{{modalTitle}}</span>
  102. <div slot="footer">
  103.     <Button @click="commonCancel">取消</Button>
  104.     <Button type="primary" @click="commonOk">确定</Button>
  105.   </div>
  106. </Modal>
  107. <Modal
  108. v-model="detailStatus"
  109. title="应用详情"
  110. width="45"
  111. ref="modalGrag"
  112. draggable
  113. reset-drag-position
  114. footer-hide
  115. :mask-closable="false"
  116. @on-visible-change="modalDetailChange"
  117. class-name="common-modal common-modal-detail">
  118. <Tabs :value="currentModalTabs" @on-click="tabsClick" class="common-tabs">
  119. <TabPane v-for="tab in tabsModalData" :key="tab.label" :label="tab.label" :name="tab.label"></TabPane>
  120. </Tabs>
  121. <div v-if="currentModalTabs =='基础信息'" class="modal-tabs-item">
  122. <div class="common-modal-content">
  123. <div class="modal-content-item" :class="{'item-especial': index == 1}" v-for="(item,index) in detailLabel" :key="index">
  124. <div class="modal-content-item-name">
  125. {{item.name}}
  126. </div>
  127. <div class="modal-content-item-value">
  128. <Tooltip placement="top-start" transfer max-width="350" v-if="item.value || item.value===0">
  129. <span>{{item.value}}</span>
  130. <div slot="content">
  131. <p>{{item.value}}</p>
  132. </div>
  133. </Tooltip>
  134. <span v-else>{{item.value}}</span>
  135. </div>
  136. </div>
  137. </div>
  138. </div>
  139. <rolling-detail-table :columns1="columnsEquip" apiUrl="metroapi/application/equipmentTypeInfo" ref="detailTable"
  140. class="rolling-detail-table" v-if="currentModalTabs =='关联设备类型'"></rolling-detail-table>
  141. <!-- <Table :columns="columnsEquip" :data="equipTableData" class="common-table modal-tabs-item modal-table" no-data-text="" :row-class-name="rowClassName" v-if="currentModalTabs =='关联设备类型'" :loading="modalLoading">
  142. <template slot="loading">
  143. <Loading-animation></Loading-animation>
  144. </template>
  145. </Table> -->
  146. </Modal>
  147. </div>
  148. </template>
  149. <script>
  150. const defaultFrom = {appName: '',businessTypeId: ''}
  151. export default {
  152. name: "ApplicationStation",
  153. components:{
  154. },
  155. data() {
  156. return {
  157. loading: true,
  158. modalLoading: true,
  159. tableParams: {
  160. businessTypeId: '',
  161. equipmentCheck: '',
  162. instrumentCheck: '',
  163. keywords: '',
  164. pageNum: 1,
  165. pageSize: 10
  166. },
  167. tableData: [],
  168. tableTotal: 0,
  169. tablePage: 0,
  170. rowObj: {},
  171. businessData: [],
  172. businessModalData: [],
  173. equipmentCheckData: [
  174. {
  175. value: '-1',
  176. label: '接入设备'
  177. },
  178. {
  179. value: '1',
  180. label: '有'
  181. },
  182. {
  183. value: '0',
  184. label: '无'
  185. },
  186. ],
  187. instrumentData: [
  188. {
  189. value: '-1',
  190. label: '接入仪表'
  191. },
  192. {
  193. value: '1',
  194. label: '有'
  195. },
  196. {
  197. value: '0',
  198. label: '无'
  199. },
  200. ],
  201. columns: [
  202. {
  203. title: '应用ID',
  204. key: 'appCode',
  205. align: 'center'
  206. },
  207. {
  208. title: '应用名称',
  209. key: 'appName',
  210. align: 'center',
  211. ellipsis: true,
  212. tooltip: true
  213. },
  214. {
  215. title: '业务类型',
  216. key: 'businessTypeName',
  217. align: 'center',
  218. ellipsis: true,
  219. tooltip: true
  220. },
  221. {
  222. title: '接入设备数量',
  223. key: 'equipmentNum',
  224. align: 'center'
  225. },
  226. {
  227. title: '接入监测仪表',
  228. key: 'instrumentNum',
  229. align: 'center'
  230. },
  231. {
  232. title: '操作',
  233. align: 'center',
  234. slot: 'action',
  235. width: 120,
  236. }
  237. ],
  238. tableTotal: 0,
  239. showModal: false,
  240. detailStatus: false,
  241. modalStatus: false,
  242. title: '新增应用',
  243. commonTitle: "确认删除",
  244. activeColor: '#E92E2E',
  245. activeClass: '',
  246. modalTitle: '',
  247. formOption: {appName: '',businessTypeId:''},
  248. ruleValidate: {
  249. appName: [{
  250. required: true,
  251. message: '请输入应用名称',
  252. trigger: 'blur'
  253. }],
  254. businessTypeId: [{
  255. required: true,
  256. type: 'number',
  257. message: '请选择业务类型',
  258. trigger: 'change'
  259. }]
  260. },
  261. currentModalTabs:'基础信息',
  262. tabsModalData: [{label:'基础信息'},{label:'关联设备类型'}],
  263. detailLabel: [],
  264. columnsEquip: [
  265. {
  266. title: '序号',
  267. type: 'index',
  268. align: 'center'
  269. },
  270. {
  271. title: '设备类型名称',
  272. key: 'equipmentName',
  273. align: 'center',
  274. ellipsis: true,
  275. tooltip: true
  276. },
  277. {
  278. title: '监测模型指标数',
  279. key: 'equipmentNum',
  280. align: 'center'
  281. }
  282. ],
  283. detailParams: {
  284. applicationId: null,
  285. pageNum: 1,
  286. pageSize: 10
  287. },
  288. };
  289. },
  290. mounted() {
  291. },
  292. methods: {
  293. rowClassName(row, index) {
  294. if (index % 2 == 0) {
  295. return "ivu-table-stripe-even";
  296. } else {
  297. return "ivu-table-stripe-odd";
  298. }
  299. },
  300. // 分页
  301. changePage (val) {
  302. this.tableParams.pageNum = val
  303. this.getTableData()
  304. },
  305. //跳转
  306. sizeChange (val) {
  307. this.tableParams.pageSize = val
  308. this.getTableData()
  309. },
  310. getType () {
  311. // 业务类型数据
  312. this.$get('metroapi/businessType/box').then(res=>{
  313. if (res.httpCode == 1 ){
  314. this.businessModalData = JSON.parse(JSON.stringify(res.data))
  315. this.businessData = res.data
  316. this.businessData.unshift({ id: '-1', businessTypeName: '业务类型' })
  317. } else {
  318. this.businessData = []
  319. this.businessModalData = []
  320. }
  321. })
  322. },
  323. // 获取表格数据
  324. getTableData () {
  325. let params = JSON.parse(JSON.stringify(this.tableParams))
  326. params.businessTypeId = params.businessTypeId == '-1' ?'':params.businessTypeId
  327. params.equipmentCheck = params.equipmentCheck == '-1' ?'':params.equipmentCheck
  328. params.instrumentCheck = params.instrumentCheck == '-1' ?'':params.instrumentCheck
  329. this.loading = true
  330. this.$get('metroapi/application/info/list', params).then(res=>{
  331. this.loading = false
  332. if (res.httpCode == 1 ){
  333. this.tableData = res.data.data
  334. this.tableTotal = res.data.count
  335. if (res.data.data.length==0) {
  336. this.tablePage = 0
  337. } else {
  338. this.tablePage = res.data.count<= 10 ? 1: Math.ceil(res.data.count/this.tableParams.pageSize)
  339. }
  340. if (res.data.data.length==0 && this.tableParams.pageNum>1) {
  341. this.tableParams.pageNum--
  342. return this.getTableData()
  343. }
  344. } else {
  345. this.tableData = []
  346. this.tableTotal = 0
  347. }
  348. })
  349. },
  350. searchClick () {
  351. this.getTableData()
  352. },
  353. resetClick (name) {
  354. this.$refs[name].resetFields()
  355. this.tableParams.pageNum = 1
  356. this.getTableData()
  357. },
  358. addClick () {
  359. this.formOption = JSON.parse(JSON.stringify(defaultFrom))
  360. this.title = '新增应用'
  361. this.showModal = true
  362. },
  363. detailClick (row) {
  364. this.rowObj = row
  365. this.currentModalTabs = '基础信息'
  366. this.detailStatus = true
  367. this.$get('metroapi/application/info', {appCode:row.appCode}).then(res=>{
  368. if (res.httpCode == 1 ){
  369. this.detailLabel = res.data
  370. } else {
  371. this.$Message.info(res.msg)
  372. }
  373. })
  374. },
  375. editClick (row) {
  376. this.rowObj = row
  377. this.formOption = JSON.parse(JSON.stringify(row));
  378. // this.formOption.lineId = this.formOption.lineId ? String(this.formOption.lineId) : '-1'
  379. // this.formOption.stationId = this.formOption.stationId ? String(this.formOption.stationId) : '-1'
  380. // this.formOption.level = String(this.formOption.level)
  381. // this.getStationData(this.formOption.lineId)
  382. // this.levelModalData = this.getCurrentLevel()
  383. this.title = '编辑应用'
  384. this.showModal = true
  385. },
  386. delClick (row) {
  387. this.rowObj = row
  388. this.commonTitle = '确认删除'
  389. this.activeColor = '#E92E2E'
  390. this.activeClass = ''
  391. this.modalTitle = '只能删除没有关联设备类型和仪表类型的应用,删除不影响已产生的操作和记录。'
  392. this.modalStatus = true
  393. },
  394. modalChange (modalStatus) {
  395. if (!modalStatus) {
  396. this.$refs.formOption.resetFields();
  397. }
  398. },
  399. modalDetailChange (val) {
  400. if (!val) {
  401. this.detailParams.pageNum = 1
  402. if (this.currentModalTabs == '关联设备类型') {
  403. document.querySelector(".rolling-detail-table .ivu-table-body").scrollTo(0, 0)
  404. }
  405. }
  406. },
  407. modalOk (formName) {
  408. let params = JSON.parse(JSON.stringify(this.formOption)) //把对象中的数据给了某个变量,改变一个对象的值,另一个对象也变化的解决方法
  409. // params.lineId = params.lineId == '-1' ? null:params.lineId
  410. // params.stationId = params.stationId == '-1' ? null:params.stationId
  411. // params.stationName = params.stationName == '站点' ? null:params.stationName
  412. if (this.title == '新增应用') {
  413. this.$refs[formName].validate((valid) => {
  414. if (valid) {
  415. this.$post('metroapi/application/addApp', params).then(res=>{
  416. if ( res.httpCode == 1 ){
  417. this.showModal = false
  418. this.$Message.info(res.msg)
  419. this.getTableData()
  420. } else {
  421. this.$Message.info(res.msg)
  422. }
  423. })
  424. } else {
  425. this.showModal = true
  426. }
  427. })
  428. } else {
  429. this.$refs[formName].validate((valid) => {
  430. if (valid) {
  431. // params.lineName = params.lineName == '/' ? null:params.lineName
  432. // params.stationName = params.stationName == '/' ? null:params.stationName
  433. this.$post('metroapi/application/addApp', params).then(res=>{
  434. if (res.httpCode == 1 ){
  435. this.showModal = false
  436. this.$Message.info(res.msg)
  437. this.getTableData()
  438. } else {
  439. this.$Message.info(res.msg)
  440. }
  441. })
  442. } else {
  443. this.showModal = true
  444. }
  445. })
  446. }
  447. },
  448. modalCancel () {
  449. this.showModal = false
  450. },
  451. commonOk () {
  452. let params = {
  453. applicationId: this.rowObj.id
  454. }
  455. this.delData(params)
  456. },
  457. commonCancel () {
  458. this.modalStatus = false
  459. },
  460. // 删除
  461. delData (params) {
  462. this.$post('metroapi/application/deleteApp',params).then(res=>{
  463. if (res.httpCode == 1 ){
  464. this.modalStatus = false
  465. this.$Message.info(res.msg)
  466. this.getTableData()
  467. } else {
  468. this.$Message.info(res.msg)
  469. }
  470. })
  471. },
  472. tabsClick (name) {
  473. // this.equipDetail (this.rowObj)
  474. this.currentModalTabs = name
  475. if (this.currentModalTabs == '关联设备类型') {
  476. this.detailParams.applicationId = this.rowObj.id
  477. this.$nextTick(() => {
  478. this.detailParams.pageNum = 1
  479. document.querySelector(".rolling-detail-table .ivu-table-body").scrollTo(0, 0)
  480. this.$refs.detailTable.getChartsDetail(this.detailParams)
  481. });
  482. }
  483. },
  484. // equipDetail (row) {
  485. // this.modalLoading = true
  486. // let params = {
  487. // pageNum: 1,
  488. // pageSize: 9999,
  489. // applicationId: row.id
  490. // }
  491. // this.$get('metroapi/application/equipmentTypeInfo', params).then(res=>{
  492. // this.modalLoading = false
  493. // if ( res.httpCode == 1 ){
  494. // this.equipTableData = res.data.data
  495. // } else {
  496. // this.equipTableData = []
  497. // }
  498. // })
  499. // },
  500. }
  501. };
  502. </script>
  503. <style scoped lang="stylus">
  504. .content-main-manage {
  505. position: relative;
  506. overflow: hidden;
  507. }
  508. .search-list {
  509. display: flex;
  510. justify-content: space-between;
  511. padding: 10px 0;
  512. }
  513. .search-left {
  514. display: flex;
  515. align-items: center;
  516. .ivu-select {
  517. width: 150px;
  518. height: 32px;
  519. }
  520. .ivu-select-single .ivu-select-selection {
  521. height: 100%;
  522. }
  523. >>> .ivu-input {
  524. width: 155px;
  525. height: 32px;
  526. }
  527. }
  528. .manage-main-center {
  529. width: 100%;
  530. height: calc(100% - 150px);
  531. }
  532. .common-table {
  533. max-height: 100%;
  534. }
  535. >>> .common-table .ivu-table th {
  536. height: 53px;
  537. }
  538. >>> .common-table .ivu-table td {
  539. height: 53px;
  540. }
  541. >>> .common-table .ivu-spin-fix {
  542. top: 53px;
  543. }
  544. >>> .app-table .ivu-spin-fix {
  545. height: calc(100vh - 355px);
  546. }
  547. >>> .common-table .ivu-table-tip {
  548. background: url('../../../assets/images/noData.png') no-repeat center;
  549. }
  550. >>> .common-table .ivu-table-tip table {
  551. display: none;
  552. }
  553. >>> .app-table .ivu-table-tip {
  554. height: calc(100vh - 355px);
  555. }
  556. >>> .modal-table {
  557. overflow: auto !important;
  558. }
  559. >>> .modal-table .ivu-spin-fix {
  560. height: 200px;
  561. }
  562. >>> .modal-table .ivu-table-tip {
  563. height: 200px;
  564. }
  565. .common-page {
  566. margin-top: 15px;
  567. display: flex;
  568. align-items: center;
  569. justify-content: flex-end;
  570. position: absolute;
  571. bottom: 0;
  572. right: 0;
  573. }
  574. .common-page-total {
  575. color: #fff;
  576. padding-right: 10px;
  577. font-size: 14px;
  578. span {
  579. color #409EFF;
  580. }
  581. }
  582. >>> .modal-tabs-item {
  583. margin-top: 10px;
  584. }
  585. // >>> .common-modal .ivu-modal-body {
  586. // min-height: 243px;
  587. // }
  588. >>> .common-modal-content {
  589. display: flex;
  590. width: 100%;
  591. justify-content: space-between;
  592. flex-wrap: wrap;
  593. margin-bottom: 15px;
  594. border-right: 1px solid #21437B;
  595. }
  596. >>> .modal-content-item {
  597. width: 100%;
  598. display: flex;
  599. }
  600. // >>> .item-especial {
  601. // width: 100%;
  602. // }
  603. >>> .modal-content-item-name {
  604. width: 50%;
  605. height: 45px;
  606. line-height: 45px;
  607. background: #13305F;
  608. border: 1px solid #21437B;
  609. border-bottom: none;
  610. border-right: none;
  611. font-size: 14px;
  612. color: #F5F5F5;
  613. padding-left: 20px;
  614. }
  615. >>> .modal-content-item-value {
  616. width: 50%;
  617. height: 45px;
  618. line-height: 45px;
  619. background: #06214D;
  620. border: 1px solid #21437B;
  621. border-bottom: none;
  622. border-right: none;
  623. font-size: 14px;
  624. color: #F5F5F5;
  625. padding-left: 20px;
  626. }
  627. >>> .item-especial .modal-content-item-name{
  628. border-bottom: 1px solid #21437B;
  629. }
  630. >>> .item-especial .modal-content-item-value{
  631. border-bottom: 1px solid #21437B;
  632. }
  633. >>> .modal-content-item-value .ivu-tooltip {
  634. width: 100%;
  635. }
  636. >>> .modal-content-item-value .ivu-tooltip-rel {
  637. overflow: hidden;
  638. text-overflow:ellipsis;
  639. white-space: nowrap;
  640. }
  641. </style>