ApplicationEquip.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  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="5" style="height:100%">
  6. <div class="station-tree">
  7. <div class="station-tree-body">
  8. <div class="station-tree-top">
  9. <Input suffix="ios-search" placeholder="请输入关键字查询" clearable search v-model="currentStation" class="common-search" @on-search="iconChange" @on-clear="clearChange"/>
  10. </div>
  11. <div class="station-tree-center">
  12. <div class="station-tree-left common-scroll" v-show="showTree">
  13. <tree-list :defaultData="stationData" :currentStaData="currentStaData" :clickAllNode="true" secondCalssName="icon-shebei1" thirdCalssName="icon-shebei" v-if="stationData && stationData.length>0" @treeChange="treeChange" ref="tree"></tree-list>
  14. </div>
  15. <div class="station-tree-left-notree" v-show="!showTree">
  16. 关键字输入错误!
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. </i-col>
  22. <i-col span="19" style="height:100%">
  23. <div class="right-main">
  24. <div class="manage-main-top">
  25. <Button icon="ios-add" class="common-add-btn" @click="addClick">新增关联</Button>
  26. </div>
  27. <div class="manage-main-center">
  28. <Table :columns="columns" :data="tableData" class="common-table" no-data-text="" :row-class-name="rowClassName" :loading="loading">
  29. <template slot="loading">
  30. <Loading-animation></Loading-animation>
  31. </template>
  32. <template slot-scope="{ row }" slot="action">
  33. <Tooltip content="解绑" placement="top">
  34. <i class="iconfont icon-guanlian" style="cursor:pointer;color:#E92E2E;fontSize:20px;marginRight:6px" @click="boundClick(row)"></i>
  35. </Tooltip>
  36. </template>
  37. </Table>
  38. </div>
  39. <Page :total="tableTotal" :current="tableParams.pageNum" :page-size="tableParams.pageSize" @on-change="changePage" @on-page-size-change="sizeChange" show-elevator class="common-page"/>
  40. </div>
  41. </i-col>
  42. </Row>
  43. </div>
  44. <Modal
  45. v-model="showModal"
  46. :title="title"
  47. width="25"
  48. ref="modalGrag"
  49. draggable
  50. reset-drag-position
  51. :mask-closable="false"
  52. @on-visible-change="modalChange"
  53. class-name="common-modal">
  54. <Form class="common-form" ref="formOption" :model="formOption" :rules="ruleValidate" :label-width="120">
  55. <FormItem label="应用名称:" prop="applicationId">
  56. <Select v-model="formOption.applicationId" placeholder="应用名称">
  57. <Option v-for="item in appNameList" :value="(item.id)" :key="item.value">{{ item.appName }}</Option>
  58. </Select>
  59. </FormItem>
  60. <FormItem label="设备类型:" prop="equipmentTypeId">
  61. <Select v-model="formOption.equipmentTypeId" placeholder="设备类型">
  62. <Option v-for="item in equipTypeData" :value="(item.id)" :key="item.id">{{ item.name }}</Option>
  63. </Select>
  64. </FormItem>
  65. </Form>
  66. <div slot="footer">
  67.     <Button @click="modalCancel">取消</Button>
  68.     <Button type="primary" @click="modalOk('formOption')">确定</Button>
  69.   </div>
  70. </Modal>
  71. <Modal
  72. v-model="modalStatus"
  73. title="确认解绑"
  74. width="25"
  75. ref="modalGrag"
  76. draggable
  77. reset-drag-position
  78. :mask-closable="false"
  79. class-name="common-modal">
  80. <Icon type="ios-information-circle" class="modal-icon" style="color:#E92E2E"></Icon>
  81. <span class="modal-text">删除的同时将解绑所有运营数据,且数据不可恢复。请慎重操作。</span>
  82. <div slot="footer">
  83.     <Button @click="commonCancel">取消</Button>
  84.     <Button type="primary" @click="commonOk">确定</Button>
  85.   </div>
  86. </Modal>
  87. </div>
  88. </template>
  89. <script>
  90. import _ from 'lodash'
  91. export default {
  92. name: "ApplicationEquip",
  93. components:{
  94. },
  95. data() {
  96. return {
  97. currentStation: '',
  98. currentStaData: [], // 当前搜索框搜索的站台数组对象,传给子组件,用来判断单选站台名当前选中状态
  99. showTree: true,// 是否显示树形组件
  100. stationData: [],
  101. tableTotal: 0,
  102. tableParams: {
  103. applicationId:'',
  104. equipmentTypeId: '',
  105. keywords: '',
  106. pageNum: 1,
  107. pageSize: 10
  108. },
  109. loading: true,
  110. tableData: [],
  111. columns: [
  112. {
  113. title: '应用名称',
  114. key: 'appName',
  115. align: 'center'
  116. },
  117. {
  118. title: '设备类型',
  119. key: 'equipmentName',
  120. align: 'center'
  121. },
  122. {
  123. title: '接入设备数量',
  124. key: 'equipmentNum',
  125. align: 'center'
  126. },
  127. {
  128. title: '操作',
  129. align: 'center',
  130. slot: 'action',
  131. }
  132. ],
  133. rowObj: {},
  134. formOption: {applicationId: '',equipmentTypeId:''},
  135. ruleValidate: {
  136. applicationId: [{
  137. required: true,
  138. type: 'number',
  139. message: '请选择应用名称',
  140. trigger: 'change'
  141. }],
  142. equipmentTypeId: [{
  143. required: true,
  144. type: 'number',
  145. message: '请选择设备类型',
  146. trigger: 'change'
  147. }],
  148. },
  149. equipTypeData: [],
  150. showModal: false,
  151. title: '新增关联',
  152. modalStatus: false,
  153. appNameObj: {
  154. level: '',
  155. lineId: '',
  156. stationId: '',
  157. equipmentCheck: '',
  158. instrumentCheck: '',
  159. pageNum: 1,
  160. pageSize: 9999
  161. },
  162. appNameList: []
  163. };
  164. },
  165. mounted() {
  166. this.getMetroLevel()
  167. },
  168. methods: {
  169. // 获取树形数据
  170. getMetroLevel () {
  171. this.$get('metroapi/application/appEquipmentTypeTree').then(res => {
  172. if (res.httpCode == 1) {
  173. this.stationData = res.data
  174. }
  175. })
  176. },
  177. // 递归函数 每层数组的第一个对象里的属性expand 全展开(true)
  178. getTree(arr) {
  179. return arr.map((v,index) => {
  180. if (index==0) {
  181. v.expand = true
  182. }
  183. if (v.children) v.children = this.getTree(v.children);
  184. return v;
  185. });
  186. },
  187. iconChange: _.throttle(function() {
  188. this.currentStaData = []
  189. this.treeName = []
  190. this.$nextTick(()=> {
  191. this.getTableData()
  192. })
  193. if(this.currentStation != ''){
  194. this.showTree = false
  195. document.querySelector(".common-scroll").scrollTo(0, 0); // 滚动条回到顶部
  196. } else {
  197. document.querySelector(".common-scroll").scrollTo(0, 0); // 滚动条回到顶部
  198. this.showTree = true
  199. this.stationData = this.getTree(this.stationData)
  200. return
  201. }
  202. this.getSelectedItem()
  203. }, 500),
  204. clearChange () {
  205. this.getSelectedItem()
  206. this.$nextTick(()=> {
  207. this.getTableData()
  208. })
  209. },
  210. getSelectedItem () {
  211. this.stationData.forEach((item, index,itemArr) => {
  212. item.expand = false;
  213. item.disabled = false;
  214. item.selected = false;
  215. if (item.title == this.currentStation) {
  216. item.selected = true;
  217. item.disabled = true; // disabled 是否禁止选中
  218. item.expand = true;
  219. this.currentStaData.push(item)
  220. this.showTree = true
  221. }
  222. if (this.currentStation == '' && index == 0) {
  223. item.expand = true
  224. }
  225. item.children.forEach((val, i,valArr) => {
  226. val.expand = false; //expand 是否展开直子节点
  227. val.disabled = false; // disabled 是否禁止选中
  228. val.selected = false;
  229. if (val.title == this.currentStation) {
  230. val.selected = true;
  231. val.disabled = true; // disabled 是否禁止选中
  232. val.expand = true;
  233. item.expand = true;
  234. this.currentStaData.push(val)
  235. this.showTree = true
  236. }
  237. if (this.currentStation == '' && i==0) {
  238. val.expand = true
  239. }
  240. val.children.forEach ((lastVal,lastIndex) => {
  241. lastVal.selected = false; //expand 是否展开直子节点
  242. lastVal.disabled = false;
  243. lastVal.expand = false;
  244. if (lastVal.title == this.currentStation) {
  245. lastVal.selected = true;
  246. lastVal.disabled = true; // disabled 是否禁止选中
  247. lastVal.expand = true;
  248. val.expand = true
  249. item.expand = true
  250. this.currentStaData.push(lastVal)
  251. this.showTree = true
  252. }
  253. })
  254. });
  255. });
  256. },
  257. treeChange(val,arr,level) {
  258. this.currentStation = val
  259. this.$nextTick(()=> {
  260. this.getTableData(arr,level)
  261. })
  262. },
  263. rowClassName(row, index) {
  264. if (index % 2 == 0) {
  265. return "ivu-table-stripe-even";
  266. } else {
  267. return "ivu-table-stripe-odd";
  268. }
  269. },
  270. // 分页
  271. changePage (val) {
  272. this.tableParams.pageNum = val
  273. this.getTableData()
  274. },
  275. //跳转
  276. sizeChange (val) {
  277. this.tableParams.pageSize = val
  278. this.getTableData()
  279. },
  280. getTableData (arr,level) {
  281. if (level) {
  282. this.tableParams.keywords = ''
  283. if (level == 2) {
  284. this.tableParams.applicationId = arr[arr.length-1]
  285. this.tableParams.equipmentTypeId = ''
  286. } else if (level == 3) {
  287. this.tableParams.applicationId = arr[arr.length-2]
  288. this.tableParams.equipmentTypeId = arr[arr.length-1]
  289. } else {
  290. this.tableParams.applicationId = ''
  291. this.tableParams.applicationId = ''
  292. }
  293. } else {
  294. this.tableParams.applicationId = ''
  295. this.tableParams.equipmentTypeId = ''
  296. if (this.currentStation == '合肥轨道交通' || this.currentStation == '') {
  297. this.tableParams.keywords = ''
  298. } else {
  299. this.tableParams.keywords = this.currentStation
  300. }
  301. }
  302. this.loading = true
  303. this.$get('metroapi/application/equipmentTypeInfo', this.tableParams).then(res=>{
  304. this.loading = false
  305. if ( res.httpCode == 1 ){
  306. this.tableData = res.data.data
  307. this.tableTotal = res.data.count
  308. if (res.data.data.length==0 && this.tableParams.pageNum>1) {
  309. this.tableParams.pageNum--
  310. return this.getTableData()
  311. }
  312. } else {
  313. this.tableData = []
  314. this.tableTotal = 0
  315. }
  316. })
  317. },
  318. getType () {
  319. // 获取设备类型
  320. this.$get('metroapi/equipment/queryEquipmentType', {name:''}).then(res=>{
  321. if (res.httpCode == 1 ){
  322. this.equipTypeData = res.data
  323. } else {
  324. this.equipTypeData = []
  325. }
  326. })
  327. // 获取应用名称
  328. this.$get('metroapi/application/info/list', this.appNameObj).then(res=>{
  329. if (res.httpCode == 1 ){
  330. this.appNameList = res.data.data
  331. } else {
  332. this.appNameList = []
  333. }
  334. })
  335. },
  336. addClick () {
  337. this.showModal = true
  338. },
  339. boundClick (row) {
  340. this.rowObj = row
  341. this.modalStatus = true
  342. },
  343. modalChange (modalStatus) {
  344. if (!modalStatus) {
  345. this.$refs.formOption.resetFields();
  346. }
  347. },
  348. modalOk (formName) {
  349. this.$refs[formName].validate((valid) => {
  350. if (valid) {
  351. this.$post('metroapi/application/addEquipmentType', this.formOption).then(res=>{
  352. if (res.httpCode == 1 ){
  353. this.showModal = false
  354. this.$Message.info(res.msg)
  355. this.getTableData()
  356. this.getMetroLevel()
  357. } else {
  358. this.$Message.info(res.msg)
  359. }
  360. })
  361. } else {
  362. this.showModal = true
  363. }
  364. })
  365. },
  366. modalCancel () {
  367. this.showModal = false
  368. },
  369. commonOk () {
  370. this.$post('metroapi/application/deleteEquipmentType',{appEquipmentTypeId:this.rowObj.appEquipmentTypeId}).then(res=>{
  371. if (res.httpCode == 1 ){
  372. this.modalStatus = false
  373. this.getTableData()
  374. this.getMetroLevel()
  375. this.$Message.info(res.msg)
  376. } else {
  377. this.$Message.info(res.msg)
  378. }
  379. })
  380. },
  381. commonCancel () {
  382. this.modalStatus = false
  383. },
  384. }
  385. };
  386. </script>
  387. <style scoped lang="stylus">
  388. .content-main {
  389. width: 100%;
  390. height: calc(100% - 50px);
  391. overflow: auto;
  392. }
  393. .common-search {
  394. width: 100%;
  395. }
  396. >>> .common-search .ivu-input {
  397. background-color: #06214D;
  398. border: 1px solid #2355A6;
  399. border-radius: 15px;
  400. color: #fff;
  401. height: 32px;
  402. }
  403. >>> .common-search .ivu-input:focus {
  404. border-color: #0185ea;
  405. }
  406. .content-body {
  407. width: 100%;
  408. height: 100%;
  409. background: #06214D;
  410. }
  411. .station-tree {
  412. height: 100%;
  413. padding: 10px;
  414. }
  415. .station-tree-body {
  416. border: 1px solid #204384;
  417. height: 100%;
  418. padding: 10px;
  419. }
  420. .station-tree-center {
  421. height: calc(100% - 32px);
  422. padding-top: 10px;
  423. // display: flex;
  424. }
  425. .station-tree-left {
  426. height: 100%;
  427. overflow: hidden;
  428. overflow-y: auto;
  429. }
  430. .station-tree-left-notree {
  431. height: 100%;
  432. display: flex;
  433. align-items: center;
  434. justify-content: center;
  435. color: #fff;
  436. fon-size: 14px;
  437. }
  438. .right-main {
  439. height: 100%;
  440. padding: 10px 0;
  441. position: relative;
  442. // padding: 16px;
  443. }
  444. .manage-main-top {
  445. padding: 12px 0;
  446. display: flex;
  447. justify-content: flex-end;
  448. }
  449. .manage-main-center {
  450. width: 100%;
  451. height: calc(100% - 100px);
  452. }
  453. .common-table {
  454. max-height: 100%;
  455. }
  456. >>> .common-table .ivu-table th {
  457. height: 54px;
  458. }
  459. >>> .common-table .ivu-table td {
  460. height: 54px;
  461. }
  462. >>> .ivu-spin-fix {
  463. top: 54px;
  464. height: calc(100vh - 350px);
  465. }
  466. >>> .ivu-table-tip {
  467. background: url('../../../assets/images/noData.png') no-repeat center;
  468. height: calc(100vh - 350px);
  469. }
  470. .common-page {
  471. margin-top: 15px;
  472. display: flex;
  473. justify-content: flex-end;
  474. position: absolute;
  475. bottom: 0;
  476. right: 0;
  477. }
  478. </style>