DeviceManageIndex.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  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="lineId">
  7. <Select v-model="tableParams.lineId" placeholder="线路" @on-select="selectLine">
  8. <Option v-for="item in lineTypeData" :value="String(item.id)" :key="item.id">{{ item.lineName }}</Option>
  9. </Select>
  10. </FormItem>
  11. <FormItem label="" prop="stationId">
  12. <Select v-model="tableParams.stationId" placeholder="站点">
  13. <Option v-for="item in stationTypeData" :value="String(item.id)" :key="item.id">{{ item.stationName }}</Option>
  14. </Select>
  15. </FormItem>
  16. <FormItem label="" prop="equipmentStatus">
  17. <Select v-model="tableParams.equipmentStatus" placeholder="设备状态">
  18. <Option v-for="item in equipStateData" :value="item.id" :key="item.id">{{ item.value }}</Option>
  19. </Select>
  20. </FormItem>
  21. <!-- <FormItem label="" prop="equipmentType">
  22. <Select v-model="tableParams.equipmentType" placeholder="设备类型">
  23. <Option v-for="item in equipTypeData" :value="(item.id)" :key="item.id">{{ item.name }}</Option>
  24. </Select>
  25. </FormItem> -->
  26. <FormItem label="">
  27. <DatePicker type="daterange" :value="dateRange" :clearable="false" class="common-date-picker date-picker-main" placement="bottom-start" placeholder="启用日期范围" @on-change="changePicker"></DatePicker>
  28. </FormItem>
  29. <FormItem label="" prop="equipmentName">
  30. <Input placeholder="请输入关键字查询" clearable search v-model="tableParams.equipmentName" />
  31. </FormItem>
  32. <FormItem label="" >
  33. <Button type="primary" class="common-btn-search" @click="searchClick">
  34. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 筛选
  35. </Button>
  36. <Button type="primary" class="common-btn-search" style="margin-left:10px" @click="resetClick('tableParams')">
  37. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 重置
  38. </Button>
  39. </FormItem>
  40. </Form>
  41. </div>
  42. </div>
  43. <div class="btn-container">
  44. <Button icon="ios-add" class="common-add-btn" @click="addClick">新增设备</Button>
  45. </div>
  46. <div class="manage-main-center">
  47. <Table :columns="columns" :data="tableData" class="common-table app-table" no-data-text="" :row-class-name="rowClassName" :loading="loading">
  48. <template slot="loading">
  49. <Loading-animation></Loading-animation>
  50. </template>
  51. <template slot-scope="{ row }" slot="lineName">
  52. <span>{{!row.lineName ? '/' : row.lineName}}</span>
  53. </template>
  54. <template slot-scope="{ row }" slot="stationName">
  55. <span>{{!row.stationName ? '/' : row.stationName}}</span>
  56. </template>
  57. <template slot-scope="{ row }" slot="action">
  58. <Tooltip content="详情" placement="top">
  59. <i class="iconfont icon-xiangqingmingxi" style="cursor:pointer;color:#B8B532;fontSize:20px;marginRight:6px" @click="detailClick(row)"></i>
  60. </Tooltip>
  61. <Tooltip content="编辑" placement="top">
  62. <i class="iconfont icon-bianji" style="cursor:pointer;color:#64ACFE;fontSize:20px;marginRight:6px" @click="editClick(row)"></i>
  63. </Tooltip>
  64. <Tooltip content="删除" placement="top">
  65. <i class="iconfont icon-shanchu" style="cursor:pointer;color:#E92E2E;fontSize:20px;marginRight:6px" @click="delClick(row)"></i>
  66. </Tooltip>
  67. </template>
  68. </Table>
  69. </div>
  70. <div class="common-page">
  71. <div class="common-page-total">
  72. 共<span>{{tablePage}}</span>页 / <span>{{tableTotal}}</span>条数据
  73. </div>
  74. <Page :total="tableTotal" :current="tableParams.pageNum" :page-size="tableParams.pageSize" @on-change="changePage" @on-page-size-change="sizeChange" show-elevator />
  75. </div>
  76. <Modal
  77. v-model="showModal"
  78. :title="title"
  79. width="36"
  80. ref="modalGrag"
  81. draggable
  82. reset-drag-position
  83. @on-visible-change="modalChange"
  84. :mask-closable="false"
  85. class-name="common-modal">
  86. <Form class="common-form" ref="formOption" :model="formOption" :rules="ruleValidate" :label-width="120" inline>
  87. <FormItem label="归属线路:" prop="lineId" style="width:48%">
  88. <Select v-model="formOption.lineId" placeholder="线路" @on-change="selectModalLine" label-in-value>
  89. <Option v-for="item in lineTypeData" :value="String(item.id)" :key="item.id">{{ item.lineName }}</Option>
  90. </Select>
  91. </FormItem>
  92. <FormItem label="归属站点:" prop="stationId" style="width:48%">
  93. <Select v-model="formOption.stationId" placeholder="站点" @on-change="selectModalStation" label-in-value>
  94. <Option v-for="item in stationTypeData" :value="String(item.id)" :key="item.id">{{ item.stationName }}</Option>
  95. </Select>
  96. </FormItem>
  97. <FormItem label="归属应用:" prop="appId" style="width:48%">
  98. <Select v-model="formOption.appId" placeholder="归属应用" @on-change="selectModalApp">
  99. <Option v-for="item in equipAppModalData" :value="item.id" :key="item.id">{{ item.appName }}</Option>
  100. </Select>
  101. </FormItem>
  102. <FormItem label="设备类型:" prop="equipmentType" style="width:48%">
  103. <Select v-model="formOption.equipmentType" placeholder="设备类型">
  104. <Option v-for="item in equipTypeModalData" :value="item.equipmentTypeId" :key="item.equipmentTypeId">{{ item.equipmentName }}</Option>
  105. </Select>
  106. </FormItem>
  107. <FormItem label="设备ID:" style="width:100%">
  108. <span v-show="title=='新增设备'">系统自动生成,唯一不重复</span>
  109. <span v-show="title=='编辑设备'">{{formOption.equipmentId}}</span>
  110. </FormItem>
  111. <FormItem label="设备名称:" prop="equipmentName" style="width:100%">
  112. <Input v-model.trim="formOption.equipmentName" type="textarea" :rows="3" maxlength="100" show-word-limit />
  113. </FormItem>
  114. <FormItem label="设备状态:" prop="equipmentStatus" style="width:48%">
  115. <Select v-model="formOption.equipmentStatus" placeholder="设备状态">
  116. <Option v-for="item in equipStateModalData" :value="item.id" :key="item.id">{{ item.value }}</Option>
  117. </Select>
  118. </FormItem>
  119. <FormItem label="启用日期:" prop="useDate" style="width:48%">
  120. <DatePicker type="date" :value="formOption.useDate" :clearable="false" class="common-date-picker" placement="bottom-start" placeholder="启用日期" style="width: 100%" @on-change="changeMoldaPicker"></DatePicker>
  121. </FormItem>
  122. <FormItem label="设备型号:" prop="equipmentVersion" style="width:100%">
  123. <Input v-model="formOption.equipmentVersion" maxlength="20" show-word-limit />
  124. </FormItem>
  125. <FormItem label="供应商:" prop="supplier" style="width:100%">
  126. <Input v-model="formOption.supplier" maxlength="20" show-word-limit />
  127. </FormItem>
  128. <FormItem label="说明:" prop="remark" style="width:100%">
  129. <Input v-model="formOption.remark" type="textarea" :rows="6" maxlength="200" show-word-limit />
  130. </FormItem>
  131. </Form>
  132. <div slot="footer">
  133.     <Button @click="modalCancel">取消</Button>
  134.     <Button type="primary" @click="modalOk('formOption')">确定</Button>
  135.   </div>
  136. </Modal>
  137. <Modal
  138. v-model="modalStatus"
  139. :title="commonTitle"
  140. width="30"
  141. ref="modalGrag"
  142. draggable
  143. reset-drag-position
  144. :mask-closable="false"
  145. class-name="common-modal">
  146. <Icon type="ios-information-circle" :style="{ color: activeColor}" class="modal-icon"></Icon>
  147. <span class="modal-text">{{modalTitle}}</span>
  148. <div slot="footer">
  149.     <Button @click="commonCancel">取消</Button>
  150.     <Button type="primary" @click="commonOk">确定</Button>
  151.   </div>
  152. </Modal>
  153. <Modal
  154. v-model="detailStatus"
  155. title="设备详情"
  156. width="45"
  157. ref="modalGrag"
  158. draggable
  159. reset-drag-position
  160. footer-hide
  161. :mask-closable="false"
  162. class-name="common-modal">
  163. <div v-for="(item,index) in detailLabel" :key="index">
  164. <div class="common-modal-top">
  165. <span class="common-modal-top-text">{{item.name}}</span>
  166. </div>
  167. <div class="common-modal-content">
  168. <div class="modal-content-item" v-for="(val,i) in item.value" :key="i" :class="{'item-especial': val.name == '说明'|| val.name == '最后通讯时间' && item.value.length%2!=0,'item-especial-bot':(i==item.value.length-1 || i==item.value.length-2) && item.value.length%2==0}">
  169. <div class="modal-content-item-name">
  170. {{val.name}}
  171. </div>
  172. <div class="modal-content-item-value">
  173. <Tooltip placement="top-start" transfer max-width="350" v-if="val.name == '归属线路' || val.name == '归属站点' || val.value || val.value===0">
  174. <span v-if="val.name == '归属线路' || val.name == '归属站点'">{{!val.value ? '/' : val.value}}</span>
  175. <span v-else>{{val.value}}</span>
  176. <div slot="content">
  177. <span v-if="val.name == '归属线路' || val.name == '归属站点'">{{!val.value ? '/' : val.value}}</span>
  178. <span v-else>{{val.value}}</span>
  179. </div>
  180. </Tooltip>
  181. <span v-else>{{val.value}}</span>
  182. </div>
  183. </div>
  184. </div>
  185. </div>
  186. </Modal>
  187. </div>
  188. </template>
  189. <script>
  190. const defaultFrom = {lineId: '',stationId: '',appId:'',equipmentName: '',equipmentType:'',equipmentStatus: '',equipmentVersion: '',supplier: '',remark: ''}
  191. export default {
  192. name: "DeviceManageIndex",
  193. components:{
  194. },
  195. data() {
  196. return {
  197. applicationParams: {
  198. level: '',
  199. lineId: '',
  200. stationId: '',
  201. equipmentCheck: '',
  202. instrumentCheck: '',
  203. pageNum: 1,
  204. pageSize: 9999
  205. },
  206. appParams: {
  207. applicationId: '',
  208. equipmentTypeId: '',
  209. keywords: '',
  210. pageNum: 1,
  211. pageSize: 9999
  212. },
  213. loading: true,
  214. dateRange: [],
  215. tableParams: {
  216. lineId: '',
  217. stationId: '',
  218. equipmentStatus: '',
  219. keywords: '',
  220. applicationId:'',
  221. equipmentType: '',
  222. useDateBegin: '',
  223. useDateEnd: '',
  224. equipmentName: '',
  225. pageNum: 1,
  226. pageSize: 10
  227. },
  228. tableData: [],
  229. tableTotal: 0,
  230. tablePage: 0,
  231. rowObj: {},
  232. lineTypeData: [],
  233. stationTypeData: [],
  234. equipStateData: [],
  235. equipStateModalData: [],
  236. equipTypeData: [],
  237. equipTypeModalData: [],
  238. equipAppModalData: [],
  239. columns: [
  240. // {
  241. // type: 'selection',
  242. // width: 60,
  243. // align: 'center'
  244. // },
  245. {
  246. title: '设备ID',
  247. key: 'equipmentId',
  248. align: 'center'
  249. },
  250. {
  251. title: '设备名称',
  252. key: 'equipmentName',
  253. align: 'center',
  254. ellipsis: true,
  255. tooltip: true
  256. },
  257. {
  258. title: '设备类型',
  259. key: 'equipmentTypeName',
  260. align: 'center'
  261. },
  262. {
  263. title: '归属应用',
  264. key: 'appName',
  265. align: 'center',
  266. ellipsis: true,
  267. tooltip: true
  268. },
  269. {
  270. title: '归属线路',
  271. slot: 'lineName',
  272. align: 'center',
  273. ellipsis: true,
  274. tooltip: true
  275. },
  276. {
  277. title: '归属站点',
  278. align: 'center',
  279. slot: 'stationName',
  280. ellipsis: true,
  281. tooltip: true
  282. },
  283. {
  284. title: '设备状态',
  285. key: 'equipmentStatusValue',
  286. align: 'center'
  287. },
  288. {
  289. title: '启用日期',
  290. key: 'useDate',
  291. align: 'center'
  292. },
  293. {
  294. title: '操作',
  295. align: 'center',
  296. slot: 'action',
  297. width: 120,
  298. }
  299. ],
  300. showModal: false,
  301. detailStatus: false,
  302. modalStatus: false,
  303. title: '新增设备',
  304. commonTitle: "确认删除",
  305. activeColor: '#E92E2E',
  306. activeClass: '',
  307. modalTitle: '',
  308. formOption: {lineId: '',stationId: '',appId:'',equipmentName: '',equipmentType:'',equipmentStatus: '',useDate:'',equipmentVersion: '',supplier: '',remark: ''},
  309. ruleValidate: {
  310. lineId: [{
  311. required: true,
  312. message: '请选择所属线路',
  313. trigger: 'change'
  314. }],
  315. stationId: [{
  316. required: true,
  317. message: '请选择所属站点',
  318. trigger: 'change'
  319. }],
  320. appId: [{
  321. required: true,
  322. type: 'number',
  323. message: '请选择归属应用',
  324. trigger: 'change'
  325. }],
  326. equipmentName: [{
  327. required: true,
  328. message: '请输入设备名称',
  329. trigger: 'change'
  330. }],
  331. appName: [{
  332. required: true,
  333. message: '请输入设备名称',
  334. trigger: 'blur'
  335. }],
  336. equipmentType: [{
  337. required: true,
  338. type: 'number',
  339. message: '请选择设备类型',
  340. trigger: 'change'
  341. }],
  342. equipmentStatus: [{
  343. required: true,
  344. type: 'number',
  345. message: '请选择设备状态',
  346. trigger: 'change'
  347. }]
  348. },
  349. detailLabel: [],
  350. };
  351. },
  352. mounted() {
  353. this.getType()
  354. this.getAppApplicate()
  355. this.getTableData()
  356. },
  357. methods: {
  358. go (){
  359. // this.$router.push({path:'//ApplicationManage'})
  360. // this.$router.push({path:'/MainPage/ApplicationManage/2'})
  361. this.$router.push({ name: 'ApplicationManage', params: { type:2 }}) // -> /home/123
  362. },
  363. changePicker (date) {
  364. this.tableParams.useDateBegin = date[0]
  365. this.tableParams.useDateEnd = date[1]
  366. },
  367. rowClassName(row, index) {
  368. if (index % 2 == 0) {
  369. return "ivu-table-stripe-even";
  370. } else {
  371. return "ivu-table-stripe-odd";
  372. }
  373. },
  374. // 分页
  375. changePage (val) {
  376. this.tableParams.pageNum = val
  377. this.getTableData()
  378. },
  379. //跳转
  380. sizeChange (val) {
  381. this.tableParams.pageSize = val
  382. this.getTableData()
  383. },
  384. getType () {
  385. //获取所属线路
  386. this.$get('metroapi/lineStation/queryLine', {lineName:''}).then(res=>{
  387. if (res.httpCode == 1 ){
  388. this.lineTypeData = res.data
  389. this.lineTypeData.unshift({ id: '-1', lineName: '线路' })
  390. this.getStationData ('-1')
  391. } else {
  392. this.lineTypeData = []
  393. }
  394. })
  395. // 获取设备状态
  396. this.$get('metroapi/dic/queryDictionary', {name:'设备状态'}).then(res=>{
  397. if (res.httpCode == 1 ){
  398. this.equipStateModalData = JSON.parse(JSON.stringify(res.data))
  399. this.equipStateData = res.data
  400. this.equipStateData.unshift({ id: '-1', value: '设备状态' })
  401. } else {
  402. this.equipStateData = []
  403. this.equipStateModalData = []
  404. }
  405. })
  406. // 获取归属应用
  407. // this.$get('metroapi/application/info/list', this.applicationParams).then(res=>{
  408. // if (res.httpCode == 1 ){
  409. // this.equipAppModalData = res.data.data
  410. // } else {
  411. // this.equipAppModalData = []
  412. // }
  413. // })
  414. },
  415. // 获取归属应用
  416. getAppApplicate () {
  417. this.$get('metroapi/application/info/list', this.applicationParams).then(res=>{
  418. if (res.httpCode == 1 ){
  419. this.equipAppModalData = res.data.data
  420. } else {
  421. this.equipAppModalData = []
  422. }
  423. })
  424. },
  425. selectLine (val) {
  426. // 获取站点类型
  427. this.tableParams.stationId = ''
  428. this.tableParams.lineId = val.value
  429. if (this.tableParams.lineId) {
  430. this.getStationData(val.value)
  431. }
  432. },
  433. // 获取所属站点
  434. getStationData (lineId) {
  435. if(lineId == '-1') {
  436. this.stationTypeData = [{ id: '-1', stationName: '站点' }]
  437. } else {
  438. this.$get('metroapi/lineStation/queryStationByLineId', {lineId:lineId}).then(res=>{
  439. if (res.httpCode == 1 ){
  440. this.stationTypeData = res.data
  441. this.stationTypeData.unshift({ id: '-1', stationName: '站点' })
  442. }
  443. })
  444. }
  445. },
  446. // selectChange (selection) {
  447. // console.log(selection)
  448. // let user = selection.map(item => item.id)
  449. // console.log(user)
  450. // },
  451. // 获取表格数据
  452. getTableData (keywords,arr,level) {
  453. if (level) {
  454. this.tableParams.keywords = ''
  455. if (level == 2) {
  456. this.tableParams.applicationId = arr[arr.length-1]
  457. this.tableParams.equipmentType = ''
  458. } else if (level == 3) {
  459. this.tableParams.applicationId = arr[arr.length-2]
  460. this.tableParams.equipmentType = arr[arr.length-1]
  461. } else {
  462. this.tableParams.applicationId = ''
  463. this.tableParams.equipmentType = ''
  464. }
  465. } else {
  466. this.tableParams.applicationId = ''
  467. this.tableParams.equipmentType = ''
  468. if (keywords == '合肥轨道交通' || keywords == '' || !keywords) {
  469. this.tableParams.keywords = ''
  470. } else {
  471. this.tableParams.keywords = keywords
  472. }
  473. }
  474. let params = JSON.parse(JSON.stringify(this.tableParams))
  475. params.lineId = params.lineId == '-1' ? '':params.lineId
  476. params.stationId = params.stationId == '-1' ?'':params.stationId
  477. params.equipmentStatus = params.equipmentStatus == '-1' ?'':params.equipmentStatus
  478. this.loading = true
  479. this.$get('metroapi/equipment/queryEquipmentPage', params).then(res=>{
  480. this.loading = false
  481. if (res.httpCode == 1 ){
  482. this.tableData = res.data.data
  483. this.tableTotal = res.data.count
  484. if (res.data.data.length==0) {
  485. this.tablePage = 0
  486. } else {
  487. this.tablePage = res.data.count<= 10 ? 1: Math.ceil(res.data.count/this.tableParams.pageSize)
  488. }
  489. if (res.data.data.length==0 && this.tableParams.pageNum>1) {
  490. this.tableParams.pageNum--
  491. return this.getTableData()
  492. }
  493. } else {
  494. this.tableData = []
  495. this.tableTotal = 0
  496. }
  497. })
  498. },
  499. selectModalLine (val) {
  500. this.formOption.stationId = ''
  501. if (val) {
  502. this.getStationData(val.value)
  503. }
  504. },
  505. selectModalStation (val) {
  506. if (val) {
  507. this.formOption.stationId =val.value
  508. }
  509. },
  510. selectModalApp (val) {
  511. this.appParams.applicationId = val
  512. this.formOption.equipmentType = ''
  513. if (val) {
  514. this.getAddEquipType( this.appParams)
  515. }
  516. },
  517. // 获取新增设备类型
  518. getAddEquipType (params) {
  519. this.$get('metroapi/application/equipmentTypeInfo', params).then(res=>{
  520. if (res.httpCode == 1 ){
  521. this.equipTypeModalData = res.data.data
  522. } else {
  523. this.equipTypeModalData = []
  524. }
  525. })
  526. },
  527. searchClick () {
  528. this.getTableData()
  529. // this.$router.push({ path: '/MainPage/ApplicationManage', query: {deptName: "2"}})
  530. },
  531. resetClick (name) {
  532. this.dateRange = []
  533. this.tableParams.useDateBegin = ''
  534. this.tableParams.useDateEnd = ''
  535. this.$refs[name].resetFields()
  536. this.stationTypeData = [{ id: '-1', stationName: '站点' }]
  537. this.getTableData()
  538. },
  539. changeMoldaPicker (val) {
  540. this.formOption.useDate = val
  541. },
  542. addClick () {
  543. this.formOption = JSON.parse(JSON.stringify(defaultFrom))
  544. this.title = '新增设备'
  545. this.showModal = true
  546. },
  547. detailClick (row) {
  548. this.rowObj = row
  549. this.detailStatus = true
  550. this.$get('metroapi/equipment/equipmentDetail', {equipmentId:row.id}).then(res=>{
  551. if (res.httpCode == 1 ){
  552. this.detailLabel = res.data
  553. } else {
  554. this.$Message.info(res.msg)
  555. }
  556. })
  557. },
  558. editClick (row) {
  559. this.rowObj = row
  560. this.formOption = JSON.parse(JSON.stringify(row));
  561. this.formOption.lineId = this.formOption.lineId ? String(this.formOption.lineId) : '-1'
  562. this.formOption.stationId = this.formOption.stationId ? String(this.formOption.stationId) : '-1'
  563. this.getStationData(this.formOption.lineId)
  564. this.appParams.applicationId = this.formOption.appId
  565. this.getAddEquipType(this.appParams)
  566. this.title = '编辑设备'
  567. this.showModal = true
  568. },
  569. delClick (row) {
  570. this.rowObj = row
  571. this.commonTitle = '确认删除'
  572. this.activeColor = '#E92E2E'
  573. this.activeClass = ''
  574. this.modalTitle = '删除不影响已产生的操作和记录。'
  575. this.modalStatus = true
  576. },
  577. modalChange (modalStatus) {
  578. if (!modalStatus) {
  579. this.$refs.formOption.resetFields();
  580. }
  581. },
  582. modalOk (formName) {
  583. let params = JSON.parse(JSON.stringify(this.formOption)) //把对象中的数据给了某个变量,改变一个对象的值,另一个对象也变化的解决方法
  584. params.lineId = params.lineId == '-1' ? '':params.lineId
  585. params.stationId = params.stationId == '-1' ? '':params.stationId
  586. if (this.title == '新增设备') {
  587. this.$refs[formName].validate((valid) => {
  588. if (valid) {
  589. this.$post('metroapi/equipment/addEquipment', params).then(res=>{
  590. if ( res.httpCode == 1 ){
  591. this.showModal = false
  592. this.$Message.info(res.msg)
  593. this.getTableData()
  594. } else {
  595. this.$Message.info(res.msg)
  596. }
  597. })
  598. } else {
  599. this.showModal = true
  600. }
  601. })
  602. } else {
  603. this.$refs[formName].validate((valid) => {
  604. if (valid) {
  605. this.$post('metroapi/equipment/editEquipment', params).then(res=>{
  606. if (res.httpCode == 1 ){
  607. this.showModal = false
  608. this.$Message.info(res.msg)
  609. this.getTableData()
  610. } else {
  611. this.$Message.info(res.msg)
  612. }
  613. })
  614. } else {
  615. this.showModal = true
  616. }
  617. })
  618. }
  619. },
  620. modalCancel () {
  621. this.showModal = false
  622. },
  623. commonOk () {
  624. let params = {
  625. id: this.rowObj.id
  626. }
  627. this.delData(params)
  628. },
  629. commonCancel () {
  630. this.modalStatus = false
  631. },
  632. // 删除接口
  633. delData (params) {
  634. this.$get('metroapi/equipment/delEquipment',params).then(res=>{
  635. if (res.httpCode == 1 ){
  636. this.modalStatus = false
  637. this.$Message.info(res.msg)
  638. this.getTableData()
  639. } else {
  640. this.$Message.info(res.msg)
  641. }
  642. })
  643. }
  644. }
  645. };
  646. </script>
  647. <style scoped lang="stylus">
  648. .content-main-manage {
  649. position: relative;
  650. height: calc(100% - 50px);
  651. }
  652. .search-list {
  653. display: flex;
  654. padding: 10px 0;
  655. }
  656. .search-left {
  657. display: flex;
  658. align-items: center;
  659. .ivu-select {
  660. width: 150px;
  661. padding-right: 10px;
  662. height: 32px;
  663. }
  664. .ivu-select-single .ivu-select-selection {
  665. height: 100%;
  666. }
  667. >>> .ivu-input {
  668. width: 165px;
  669. height: 32px;
  670. }
  671. >>> .ivu-date-picker-editor .ivu-input {
  672. width: 210px;
  673. }
  674. >>> .ivu-input-prefix, >>> .ivu-input-suffix {
  675. height: 32px;
  676. line-height: 32px;
  677. }
  678. >>> .ivu-input-icon {
  679. height: 32px;
  680. line-height: 32px;
  681. }
  682. >>> .date-picker-main .ivu-date-picker-header {
  683. border-bottom: 0.0052083333rem solid #204384;
  684. }
  685. }
  686. .btn-container {
  687. display: flex;
  688. justify-content: flex-end;
  689. padding-bottom: 10px;
  690. }
  691. .common-form {
  692. display: flex;
  693. flex-wrap: wrap;
  694. justify-content: space-between;
  695. }
  696. >>> .common-form-list .ivu-form-item {
  697. margin-bottom: 0;
  698. }
  699. .manage-main-center {
  700. width: 100%;
  701. height: calc(100% - 150px);
  702. }
  703. .common-table {
  704. max-height: 100%;
  705. }
  706. >>> .common-table .ivu-table th {
  707. height: 51px;
  708. }
  709. >>> .common-table .ivu-table td {
  710. height: 51px;
  711. }
  712. >>> .common-table .ivu-spin-fix {
  713. top: 51px;
  714. }
  715. >>> .app-table .ivu-spin-fix {
  716. height: calc(100vh - 375px);
  717. }
  718. >>> .ivu-table-tip {
  719. background: url('../../../assets/images/noData.png') no-repeat center;
  720. }
  721. >>> .app-table .ivu-table-tip {
  722. height: calc(100vh - 375px);
  723. }
  724. >>> .common-table .ivu-table-tip table {
  725. display: none;
  726. }
  727. >>> .modal-table {
  728. overflow: auto !important;
  729. }
  730. >>> .modal-table .ivu-spin-fix {
  731. height: 200px;
  732. }
  733. >>> .modal-table .ivu-table-tip {
  734. height: 200px;
  735. }
  736. .common-page {
  737. margin-top: 15px;
  738. display: flex;
  739. align-items: center;
  740. justify-content: flex-end;
  741. position: absolute;
  742. bottom: 0;
  743. right: 0;
  744. }
  745. .common-page-total {
  746. color: #fff;
  747. padding-right: 10px;
  748. font-size: 14px;
  749. span {
  750. color #409EFF;
  751. }
  752. }
  753. >>> .modal-tabs-item {
  754. margin-top: 10px;
  755. }
  756. >>> .common-modal-top-text {
  757. font-size: 14px;
  758. font-weight: bold;
  759. color: #29A0FF;
  760. line-height: 42px;
  761. border-left: 3px solid #1590F1;
  762. padding-left: 12px;
  763. }
  764. >>> .common-modal-content {
  765. display: flex;
  766. width: 100%;
  767. justify-content: space-between;
  768. flex-wrap: wrap;
  769. margin-bottom: 15px;
  770. border-right: 1px solid #21437B;
  771. }
  772. >>> .modal-content-item {
  773. width: 50%;
  774. display: flex;
  775. }
  776. >>> .item-especial {
  777. width: 100%;
  778. }
  779. >>> .modal-content-item-name {
  780. width: 50%;
  781. height: 45px;
  782. line-height: 45px;
  783. background: #13305F;
  784. border-top: 1px solid #21437B;
  785. border-left: 1px solid #21437B;
  786. font-size: 14px;
  787. color: #F5F5F5;
  788. padding-left: 20px;
  789. }
  790. >>> .modal-content-item-value {
  791. width: 50%;
  792. height: 45px;
  793. line-height: 45px;
  794. background: #06214D;
  795. border-top: 1px solid #21437B;
  796. border-left: 1px solid #21437B;
  797. font-size: 14px;
  798. color: #F5F5F5;
  799. padding-left: 20px;
  800. }
  801. >>> .item-especial .modal-content-item-name{
  802. width: 25%;
  803. height: 45px;
  804. line-height: 45px;
  805. border-bottom: 1px solid #21437B;
  806. }
  807. >>> .item-especial .modal-content-item-value{
  808. width: 75%;
  809. height: 45px;
  810. line-height: 45px;
  811. border-bottom: 1px solid #21437B;
  812. }
  813. >>> .item-especial-bot .modal-content-item-name {
  814. border-bottom: 1px solid #21437B;
  815. }
  816. >>> .item-especial-bot .modal-content-item-value {
  817. border-bottom: 1px solid #21437B;
  818. }
  819. /deep/ .ivu-input::-webkit-input-placeholder{
  820. color: #718EBD;
  821. }
  822. /deep/ .ivu-input::-moz-placeholder{ /* Mozilla Firefox 19+ */
  823. color: #718EBD;
  824. }
  825. /deep/ .ivu-input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
  826. color: #718EBD;
  827. }
  828. /deep/ .ivu-input::-ms-input-placeholder{ /* Internet Explorer 10-11 */
  829. color: #718EBD;
  830. }
  831. >>> .modal-content-item-value .ivu-tooltip {
  832. width: 100%;
  833. }
  834. >>> .modal-content-item-value .ivu-tooltip-rel {
  835. overflow: hidden;
  836. text-overflow:ellipsis;
  837. white-space: nowrap;
  838. }
  839. </style>