AlarmAcknowledgConfig.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  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 indicatorsNum" :value="item.value" :key="item.value">{{ item.label }}</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="" prop="equipmentName">
  27. <Input placeholder="请输入关键字查询" clearable search v-model="tableParams.equipmentName" />
  28. </FormItem>
  29. <FormItem label="" >
  30. <Button type="primary" class="common-btn-search" @click="searchClick">
  31. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 筛选
  32. </Button>
  33. <Button type="primary" class="common-btn-search" style="margin-left:10px" @click="resetClick('tableParams')">
  34. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 重置
  35. </Button>
  36. </FormItem>
  37. </Form>
  38. </div>
  39. </div>
  40. <div class="btn-container">
  41. <Button icon="ios-add" class="common-add-btn" @click="addClick">新增策略</Button>
  42. </div>
  43. <div class="manage-main-center">
  44. <Table :columns="columns" :data="tableData" class="common-table app-table" no-data-text="" :row-class-name="rowClassName" :loading="loading">
  45. <template slot="loading">
  46. <Loading-animation></Loading-animation>
  47. </template>
  48. <template slot-scope="{ row }" slot="action">
  49. <Tooltip content="详情" placement="top">
  50. <i class="iconfont icon-xiangqingmingxi" style="cursor:pointer;color:#B8B532;fontSize:20px;marginRight:6px" @click="detailClick(row)"></i>
  51. </Tooltip>
  52. <Tooltip content="编辑" placement="top">
  53. <i class="iconfont icon-bianji" style="cursor:pointer;color:#64ACFE;fontSize:20px;marginRight:6px" @click="editClick(row)"></i>
  54. </Tooltip>
  55. <Tooltip content="删除" placement="top">
  56. <i class="iconfont icon-shanchu" style="cursor:pointer;color:#E92E2E;fontSize:20px;marginRight:6px" @click="delClick(row)"></i>
  57. </Tooltip>
  58. </template>
  59. </Table>
  60. </div>
  61. <Page :total="tableTotal" :current="tableParams.pageNum" :page-size="tableParams.pageSize" @on-change="changePage" @on-page-size-change="sizeChange" show-elevator class="common-page"/>
  62. <Modal
  63. v-model="showModal"
  64. :title="title"
  65. width="40"
  66. ref="modalGrag"
  67. draggable
  68. reset-drag-position
  69. @on-visible-change="modalChange"
  70. :mask-closable="false"
  71. class-name="common-modal">
  72. <div class="common-modal-top">
  73. <span class="common-modal-top-text">基础信息</span>
  74. </div>
  75. <Form class="common-form" ref="formOption" :model="formOption" :rules="ruleValidate" :label-width="95" label-position="left">
  76. <FormItem label="策略名称" prop="name" style="width:100%">
  77. <Input v-model.trim="formOption.name" maxlength="20" show-word-limit />
  78. </FormItem>
  79. <FormItem label="来源应用:" prop="equipmentType" style="width:100%">
  80. <Select v-model="formOption.equipmentType" placeholder="来源应用">
  81. <Option v-for="item in equipTypeModalData" :value="item.equipmentTypeId" :key="item.equipmentTypeId">{{ item.equipmentName }}</Option>
  82. </Select>
  83. </FormItem>
  84. <FormItem label="设备类型:" prop="equipmentType" style="width:100%">
  85. <Select v-model="formOption.equipmentType" placeholder="设备类型">
  86. <Option v-for="item in equipTypeModalData" :value="item.equipmentTypeId" :key="item.equipmentTypeId">{{ item.equipmentName }}</Option>
  87. </Select>
  88. </FormItem>
  89. </Form>
  90. <div class="common-modal-top">
  91. <span class="common-modal-top-text">处理策略</span>
  92. </div>
  93. <Form ref="formDynamic" :model="formCustom" :label-width="0" class="strategy-form">
  94. <Row v-for="(item, index) in formCustom.formDynamic" :key="index">
  95. <Col span="4" :class="{'row-first': index == 0}" class="row-first-es">{{ item.name + (index + 1) }}</Col>
  96. <Col span="4" :class="{'row-first': index == 0}" class="row-first-es row-second-es">告警等级</Col>
  97. <Col span="5" :class="{'row-first': index == 0}" class="row-select">
  98. <FormItem
  99. :prop="'formDynamic.'+index+'.alarmType'" :rules="{required: true,message: '请选择告警等级',trigger: 'change'}">
  100. <Select v-model="item.alarmType" style="width: 100%" placeholder="告警等级" :disabled="item.disabled">
  101. <Option v-for="firstitem in indicatorsNum" :value="firstitem.value" :key="firstitem.value">{{ firstitem.label }}</Option>
  102. </Select>
  103. </FormItem>
  104. </Col>
  105. <Col span="5" :class="{'row-first': index == 0}" class="row-first-es">自动确认为</Col>
  106. <Col span="5" :class="{'row-first': index == 0}" class="row-select row-es-last">
  107. <FormItem
  108. :prop="'formDynamic.'+index+'.alarmType'" :rules="{required: true,message: '请选择确认动作',trigger: 'change'}">
  109. <Select v-model="item.alarmType" style="width: 100%" placeholder="确认动作" :disabled="item.disabled">
  110. <Option v-for="firstitem in indicatorsNum" :value="firstitem.value" :key="firstitem.value">{{ firstitem.label }}</Option>
  111. </Select>
  112. </FormItem>
  113. </Col>
  114. <Col span="1" class="ivu-col-btn">
  115. <i class="iconfont icon-tianjia" style="cursor:pointer;color:#2DA0F8;padding-left:10px" @click="handleAdd('formDynamic')" v-if="index == formCustom.formDynamic.length - 1 &&title=='新增策略'"></i>
  116. <i class="iconfont icon-shanchu ivu-col-del" style="cursor:pointer; color:#BC2020;padding-left:10px" v-if="title=='编辑策略'" @click="handleRemove(index)" disabled></i>
  117. </Col>
  118. </Row>
  119. <!-- <div class="sub-add">
  120. <span>新增一条子策略 子策略与现有子策略间为</span>
  121. <FormItem prop="logical" :rules="{required: clickbtn==2 ? true: false,message: '请选择逻辑判断',trigger: 'change'}">
  122. <Select v-model="formCustom.logical" placeholder="逻辑判断" style="width: 200px;padding: 0 6px">
  123. <Option v-for="item in indicatorsNum" :value="item.value" :key="item.value">{{ item.label }}</Option>
  124. </Select>
  125. </FormItem>
  126. 关系
  127. <i class="iconfont icon-tianjia" style="cursor:pointer;color:#43B843;padding-left:10px" @click="handleAddSub('formDynamic')"></i>
  128. </div> -->
  129. </Form>
  130. <div slot="footer">
  131.     <Button @click="modalCancel">取消</Button>
  132.     <Button type="primary" @click="modalOk">确定</Button>
  133.   </div>
  134. </Modal>
  135. <Modal
  136. v-model="modalStatus"
  137. :title="commonTitle"
  138. width="30"
  139. ref="modalGrag"
  140. draggable
  141. reset-drag-position
  142. :mask-closable="false"
  143. class-name="common-modal">
  144. <Icon type="ios-information-circle" :style="{ color: activeColor}" class="modal-icon"></Icon>
  145. <span class="modal-text">{{modalTitle}}</span>
  146. <div slot="footer">
  147.     <Button @click="commonCancel">取消</Button>
  148.     <Button type="primary" @click="commonOk">确定</Button>
  149.   </div>
  150. </Modal>
  151. <Modal
  152. v-model="detailStatus"
  153. title="自动确认策略详情"
  154. width="45"
  155. ref="modalGrag"
  156. draggable
  157. reset-drag-position
  158. footer-hide
  159. :mask-closable="false"
  160. class-name="common-modal">
  161. <div v-for="(item,index) in detailLabel" :key="index">
  162. <div class="common-modal-top">
  163. <span class="common-modal-top-text">{{item.name}}</span>
  164. </div>
  165. <div class="common-modal-content">
  166. <div class="modal-content-item" v-for="(val,i) in item.value" :key="i" :class="{'item-especial': 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}">
  167. <span class="modal-content-item-name">
  168. {{val.name}}
  169. </span>
  170. <span class="modal-content-item-value" v-if="val.name == '归属线路' || val.name == '归属站点'">{{!val.value ? '/' : val.value}}</span>
  171. <span class="modal-content-item-value" v-else>{{val.value}}</span>
  172. </div>
  173. </div>
  174. </div>
  175. </Modal>
  176. </div>
  177. </template>
  178. <script>
  179. const defaultFrom = {lineId: '',stationId: '',appId:'',equipmentName: '',equipmentType:'',equipmentStatus: '',equipmentVersion: '',supplier: '',remark: ''}
  180. export default {
  181. name: "AlarmAcknowledgConfig",
  182. components:{
  183. },
  184. data() {
  185. return {
  186. applicationParams: {
  187. level: '',
  188. lineId: '',
  189. stationId: '',
  190. equipmentCheck: '',
  191. instrumentCheck: '',
  192. pageNum: 1,
  193. pageSize: 9999
  194. },
  195. appParams: {
  196. applicationId: '',
  197. equipmentTypeId: '',
  198. keywords: '',
  199. pageNum: 1,
  200. pageSize: 9999
  201. },
  202. loading: true,
  203. dateRange: [],
  204. tableParams: {
  205. lineId: '',
  206. stationId: '',
  207. equipmentStatus: '',
  208. keywords: '',
  209. applicationId:'',
  210. equipmentType: '',
  211. useDateBegin: '',
  212. useDateEnd: '',
  213. equipmentName: '',
  214. pageNum: 1,
  215. pageSize: 10
  216. },
  217. tableData: [],
  218. tableTotal: 0,
  219. rowObj: {},
  220. indicatorsNum: [
  221. {
  222. value: '-1',
  223. label: '监测指标数量'
  224. },
  225. {
  226. value: '1',
  227. label: '有'
  228. },
  229. {
  230. value: '0',
  231. label: '无'
  232. },
  233. ],
  234. lineTypeData: [],
  235. stationTypeData: [],
  236. equipStateData: [],
  237. equipStateModalData: [],
  238. equipTypeData: [],
  239. equipTypeModalData: [],
  240. equipAppModalData: [],
  241. columns: [
  242. // {
  243. // type: 'selection',
  244. // width: 60,
  245. // align: 'center'
  246. // },
  247. {
  248. title: '来源应用',
  249. key: 'equipmentName',
  250. align: 'center',
  251. ellipsis: true,
  252. tooltip: true
  253. },
  254. {
  255. title: '设备类型',
  256. key: 'equipmentTypeName',
  257. align: 'center'
  258. },
  259. {
  260. title: '覆盖告警等级',
  261. key: 'appName',
  262. align: 'center'
  263. },
  264. {
  265. title: '是否启用',
  266. key: 'enabled',
  267. align: 'center',
  268. width: 120,
  269. render: (h, params) => {
  270. return h('div', [
  271. h('i-switch', {
  272. props: { value: params.row.enabled,'true-color': '#57C44F', trueValue:1,falseValue: 0
  273. },
  274. nativeOn:{
  275. "mousedown":(event)=>{ // 监听组件原生事件mousedown,此事件在click之前触发
  276. this.rowObj = params.row
  277. if (params.row.enabled == 0) {
  278. this.commonTitle = '确认启用'
  279. this.activeColor = '#57C44F'
  280. this.activeClass = 'icon-qiyong'
  281. this.modalTitle = '当前时间点后所有告警信息,将使用策略自动判定。'
  282. this.modalStatus = true
  283. } else {
  284. this.commonTitle = '确认关闭'
  285. this.activeColor = '#E92E2E'
  286. this.activeClass = 'icon-guanbi'
  287. this.modalTitle = '可能影响新数据判断结果。'
  288. this.modalStatus = true
  289. }
  290. },
  291. }
  292. }),
  293. ])
  294. }
  295. },
  296. {
  297. title: '操作',
  298. align: 'center',
  299. slot: 'action',
  300. width: 120,
  301. }
  302. ],
  303. showModal: false,
  304. detailStatus: false,
  305. modalStatus: false,
  306. title: '新增策略',
  307. commonTitle: "确认删除",
  308. activeColor: '#E92E2E',
  309. activeClass: '',
  310. modalTitle: '',
  311. formOption: {lineId: '',stationId: '',appId:'',equipmentName: '',equipmentType:'',equipmentStatus: '',useDate:'',equipmentVersion: '',supplier: '',remark: ''},
  312. ruleValidate: {
  313. lineId: [{
  314. required: true,
  315. message: '请选择所属线路',
  316. trigger: 'change'
  317. }],
  318. stationId: [{
  319. required: true,
  320. message: '请选择所属站点',
  321. trigger: 'change'
  322. }],
  323. appId: [{
  324. required: true,
  325. message: '请选择归属应用',
  326. trigger: 'change'
  327. }],
  328. equipmentName: [{
  329. required: true,
  330. message: '请输入设备名称',
  331. trigger: 'change'
  332. }],
  333. appName: [{
  334. required: true,
  335. message: '请输入设备名称',
  336. trigger: 'blur'
  337. }],
  338. equipmentType: [{
  339. required: true,
  340. type: 'number',
  341. message: '请选择设备类型',
  342. trigger: 'change'
  343. }],
  344. equipmentStatus: [{
  345. required: true,
  346. type: 'number',
  347. message: '请选择设备状态',
  348. trigger: 'change'
  349. }]
  350. },
  351. detailLabel: [],
  352. formCustom: {
  353. formDynamic: [
  354. {
  355. name: "策略",
  356. alarmType: "",
  357. },
  358. ],
  359. },
  360. clickbtn: 1, // 1点击策略增加按钮 2点击子策略增加按钮 3点击子策略删除按钮
  361. };
  362. },
  363. mounted() {
  364. this.getType()
  365. this.getTableData()
  366. },
  367. methods: {
  368. go (){
  369. // this.$router.push({path:'//ApplicationManage'})
  370. // this.$router.push({path:'/MainPage/ApplicationManage/2'})
  371. this.$router.push({ name: 'ApplicationManage', params: { type:2 }}) // -> /home/123
  372. },
  373. changePicker (date) {
  374. this.tableParams.useDateBegin = date[0]
  375. this.tableParams.useDateEnd = date[1]
  376. },
  377. rowClassName(row, index) {
  378. if (index % 2 == 0) {
  379. return "ivu-table-stripe-even";
  380. } else {
  381. return "ivu-table-stripe-odd";
  382. }
  383. },
  384. // 分页
  385. changePage (val) {
  386. this.tableParams.pageNum = val
  387. this.getTableData()
  388. },
  389. //跳转
  390. sizeChange (val) {
  391. this.tableParams.pageSize = val
  392. this.getTableData()
  393. },
  394. getType () {
  395. //获取所属线路
  396. this.$get('metroapi/lineStation/queryLine', {lineName:''}).then(res=>{
  397. if (res.httpCode == 1 ){
  398. this.lineTypeData = res.data
  399. this.lineTypeData.unshift({ id: '-1', lineName: '线路' })
  400. this.getStationData ('-1')
  401. } else {
  402. this.lineTypeData = []
  403. }
  404. })
  405. // 获取设备状态
  406. this.$get('metroapi/dic/queryDictionary', {name:'设备状态'}).then(res=>{
  407. if (res.httpCode == 1 ){
  408. this.equipStateModalData = JSON.parse(JSON.stringify(res.data))
  409. this.equipStateData = res.data
  410. this.equipStateData.unshift({ id: '-1', value: '设备状态' })
  411. } else {
  412. this.equipStateData = []
  413. this.equipStateModalData = []
  414. }
  415. })
  416. // 获取归属应用
  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. // this.$get('metroapi/equipment/queryEquipmentType', {name:''}).then(res=>{
  426. // if (res.httpCode == 1 ){
  427. // this.equipTypeModalData = JSON.parse(JSON.stringify(res.data))
  428. // this.equipTypeData = res.data
  429. // this.equipTypeData.unshift({ id: '-1', name: '设备类型' })
  430. // } else {
  431. // this.equipTypeData = []
  432. // this.equipTypeModalData = []
  433. // }
  434. // })
  435. },
  436. selectLine (val) {
  437. // 获取站点类型
  438. this.tableParams.stationId = ''
  439. this.tableParams.lineId = val.value
  440. if (this.tableParams.lineId) {
  441. this.getStationData(val.value)
  442. }
  443. },
  444. // 获取所属站点
  445. getStationData (lineId) {
  446. if(lineId == '-1') {
  447. this.stationTypeData = [{ id: '-1', stationName: '站点' }]
  448. } else {
  449. this.$get('metroapi/lineStation/queryStationByLineId', {lineId:lineId}).then(res=>{
  450. if (res.httpCode == 1 ){
  451. this.stationTypeData = res.data
  452. this.stationTypeData.unshift({ id: '-1', stationName: '站点' })
  453. }
  454. })
  455. }
  456. },
  457. // selectChange (selection) {
  458. // console.log(selection)
  459. // let user = selection.map(item => item.id)
  460. // console.log(user)
  461. // },
  462. // 获取表格数据
  463. getTableData (keywords,arr,level) {
  464. if (level) {
  465. this.tableParams.keywords = ''
  466. if (level == 2) {
  467. this.tableParams.applicationId = arr[arr.length-1]
  468. this.tableParams.equipmentType = ''
  469. } else if (level == 3) {
  470. this.tableParams.applicationId = arr[arr.length-2]
  471. this.tableParams.equipmentType = arr[arr.length-1]
  472. } else {
  473. this.tableParams.applicationId = ''
  474. this.tableParams.equipmentType = ''
  475. }
  476. } else {
  477. this.tableParams.applicationId = ''
  478. this.tableParams.equipmentType = ''
  479. if (keywords == '合肥轨道交通' || keywords == '' || !keywords) {
  480. this.tableParams.keywords = ''
  481. } else {
  482. this.tableParams.keywords = keywords
  483. }
  484. }
  485. let params = JSON.parse(JSON.stringify(this.tableParams))
  486. params.lineId = params.lineId == '-1' ? '':params.lineId
  487. params.stationId = params.stationId == '-1' ?'':params.stationId
  488. this.loading = true
  489. this.$get('metroapi/equipment/queryEquipmentPage', params).then(res=>{
  490. this.loading = false
  491. if (res.httpCode == 1 ){
  492. this.tableData = res.data.data
  493. this.tableTotal = res.data.count
  494. if (res.data.data.length==0 && this.tableParams.pageNum>1) {
  495. this.tableParams.pageNum--
  496. return this.getTableData()
  497. }
  498. } else {
  499. this.tableData = []
  500. this.tableTotal = 0
  501. }
  502. })
  503. },
  504. selectModalLine (val) {
  505. this.formOption.stationId = ''
  506. if (val) {
  507. this.getStationData(val.value)
  508. }
  509. },
  510. selectModalStation (val) {
  511. if (val) {
  512. this.formOption.stationId =val.value
  513. }
  514. },
  515. selectModalApp (val) {
  516. this.appParams.applicationId = val
  517. this.formOption.equipmentType = ''
  518. if (val) {
  519. this.getAddEquipType( this.appParams)
  520. }
  521. },
  522. // 获取新增设备类型
  523. getAddEquipType (params) {
  524. this.$get('metroapi/application/equipmentTypeInfo', params).then(res=>{
  525. if (res.httpCode == 1 ){
  526. this.equipTypeModalData = res.data.data
  527. } else {
  528. this.equipTypeModalData = []
  529. }
  530. })
  531. },
  532. searchClick () {
  533. this.getTableData()
  534. // this.$router.push({ path: '/MainPage/ApplicationManage', query: {deptName: "2"}})
  535. },
  536. resetClick (name) {
  537. this.dateRange = []
  538. this.tableParams.useDateBegin = ''
  539. this.tableParams.useDateEnd = ''
  540. this.$refs[name].resetFields()
  541. this.getTableData()
  542. },
  543. changeMoldaPicker (val) {
  544. this.formOption.useDate = val
  545. },
  546. addClick () {
  547. this.formOption = JSON.parse(JSON.stringify(defaultFrom))
  548. this.formCustom.formDynamic = [{
  549. name: "策略",
  550. alarmType: "",
  551. }];
  552. this.title = '新增策略'
  553. this.showModal = true
  554. },
  555. detailClick (row) {
  556. this.rowObj = row
  557. this.detailStatus = true
  558. this.$get('metroapi/equipment/equipmentDetail', {equipmentId:row.id}).then(res=>{
  559. if ( res.httpCode == 1 ){
  560. this.detailLabel = res.data
  561. } else {
  562. this.$Message.info(res.msg)
  563. }
  564. })
  565. },
  566. editClick (row) {
  567. this.rowObj = row
  568. this.formOption = JSON.parse(JSON.stringify(row));
  569. this.formOption.lineId = this.formOption.lineId ? String(this.formOption.lineId) : '-1'
  570. this.formOption.stationId = this.formOption.stationId ? String(this.formOption.stationId) : '-1'
  571. this.getStationData(this.formOption.lineId)
  572. this.appParams.applicationId = this.formOption.appId
  573. this.getAddEquipType(this.appParams)
  574. this.title = '编辑策略'
  575. this.showModal = true
  576. },
  577. delClick (row) {
  578. this.rowObj = row
  579. this.commonTitle = '确认删除'
  580. this.activeColor = '#E92E2E'
  581. this.activeClass = ''
  582. this.modalTitle = '删除的同时将解绑所有运营数据,且数据不可恢复,请慎重操作。'
  583. this.modalStatus = true
  584. },
  585. modalChange (modalStatus) {
  586. if (!modalStatus) {
  587. this.$refs.formOption.resetFields();
  588. this.$refs.formDynamic.resetFields();
  589. }
  590. },
  591. modalOk () {
  592. var obj = Object.assign({}, this.formOption, this.formCustom); // 合并对象 注意目标对象自身也会改变。假设目标对象{}是之前里的对象,他的值跟obj一样
  593. this.clickbtn = 1
  594. this.$nextTick(()=> {
  595. let params = JSON.parse(JSON.stringify(this.formOption)) //把对象中的数据给了某个变量,改变一个对象的值,另一个对象也变化的解决方法
  596. params.lineId = params.lineId == '-1' ? '':params.lineId
  597. params.stationId = params.stationId == '-1' ? '':params.stationId
  598. // 多个form表单验证
  599. const p1 = new Promise((resolve,reject)=>{
  600. this.$refs['formOption'].validate(valid=>{
  601. if(valid) resolve()
  602. })
  603. })
  604. const p2 = new Promise((resolve,reject)=>{
  605. this.$refs['formDynamic'].validate(valid=>{
  606. if(valid) resolve()
  607. })
  608. })
  609. if (this.title == '新增策略') {
  610. Promise.all([p1,p2]).then(()=>{
  611. console.log('验证通过,提交表单')
  612. })
  613. // this.$refs['formOption'].validate((valid) => {
  614. // if (valid) {
  615. // this.$post('metroapi/equipment/addEquipment', params).then(res=>{
  616. // if ( res.httpCode == 1 ){
  617. // this.showModal = false
  618. // this.$Message.info(res.msg)
  619. // this.getTableData()
  620. // } else {
  621. // this.$Message.info(res.msg)
  622. // }
  623. // })
  624. // } else {
  625. // this.showModal = true
  626. // }
  627. // })
  628. } else {
  629. // this.$refs['formOption'].validate((valid) => {
  630. // if (valid) {
  631. // this.$post('metroapi/equipment/editEquipment', params).then(res=>{
  632. // if (res.httpCode == 1 ){
  633. // this.showModal = false
  634. // this.$Message.info(res.msg)
  635. // this.getTableData()
  636. // } else {
  637. // this.$Message.info(res.msg)
  638. // }
  639. // })
  640. // } else {
  641. // this.showModal = true
  642. // }
  643. // })
  644. }
  645. })
  646. },
  647. modalCancel () {
  648. this.showModal = false
  649. },
  650. commonOk () {
  651. let params = {
  652. id: this.rowObj.id
  653. }
  654. this.delData(params)
  655. },
  656. commonCancel () {
  657. this.modalStatus = false
  658. },
  659. // 删除接口
  660. delData (params) {
  661. this.$get('metroapi/equipment/delEquipment',params).then(res=>{
  662. if (res.httpCode == 1 ){
  663. this.modalStatus = false
  664. this.$Message.info(res.msg)
  665. this.getTableData()
  666. } else {
  667. this.$Message.info(res.msg)
  668. }
  669. })
  670. },
  671. handleAdd(name) {
  672. this.$nextTick(()=> {
  673. this.$refs[name].validate((valid) => {
  674. if (valid) {
  675. this.formCustom.formDynamic.push({
  676. alarmType: "",
  677. name: '策略'
  678. });
  679. }
  680. });
  681. console.log(this.formCustom.formDynamic)
  682. })
  683. },
  684. handleRemove(i) {
  685. if (this.formCustom.formDynamic.length == 1) {
  686. this.$Message['error']({
  687. background: true,
  688. content: '请至少保留一条非空策略'
  689. });
  690. } else {
  691. this.formCustom.formDynamic.splice(i,1)
  692. }
  693. // this.$nextTick(()=> {
  694. // this.formCustom.formDynamic[this.formCustom.formDynamic.length - 1].formItems.splice(i, 1) //因为删除选值的下拉框,没选值的下拉框的值会变成undefined 所以加个状态值(clickbtn=3)
  695. // })
  696. // this.formCustom.formDynamic[this.formCustom.formDynamic.length - 1].formItems[i].status = 0
  697. },
  698. // getTree(arr) {
  699. // return arr.map((v,index) => {
  700. // console.log(v)
  701. // if (v.baohan == undefined) {
  702. // console.log(34343)
  703. // v.baohan = ''
  704. // }
  705. // if (v.formItems) v.formItems = this.getTree(v.formItems);
  706. // return v;
  707. // });
  708. // },
  709. }
  710. };
  711. </script>
  712. <style scoped lang="stylus">
  713. .content-main-manage {
  714. position: relative;
  715. height: calc(100% - 50px);
  716. }
  717. .search-list {
  718. display: flex;
  719. padding: 10px 0;
  720. }
  721. .search-left {
  722. display: flex;
  723. align-items: center;
  724. .ivu-select {
  725. width: 155px;
  726. padding-right: 10px;
  727. height: 32px;
  728. }
  729. .ivu-select-single .ivu-select-selection {
  730. height: 100%;
  731. }
  732. >>> .ivu-input {
  733. width: 160px;
  734. height: 32px;
  735. }
  736. >>> .ivu-input-prefix, >>> .ivu-input-suffix {
  737. height: 32px;
  738. line-height: 32px;
  739. }
  740. >>> .ivu-input-icon {
  741. height: 32px;
  742. line-height: 32px;
  743. }
  744. >>> .date-picker-main .ivu-date-picker-header {
  745. border-bottom: 0.0052083333rem solid #204384;
  746. }
  747. }
  748. .btn-container {
  749. display: flex;
  750. justify-content: flex-end;
  751. padding-bottom: 10px;
  752. }
  753. .common-form {
  754. display: flex;
  755. flex-wrap: wrap;
  756. justify-content: space-between;
  757. }
  758. >>> .common-form-list .ivu-form-item {
  759. margin-bottom: 0;
  760. }
  761. .manage-main-center {
  762. width: 100%;
  763. height: calc(100% - 150px);
  764. }
  765. .common-table {
  766. max-height: 100%;
  767. }
  768. >>> .common-table .ivu-table th {
  769. height: 51px;
  770. }
  771. >>> .common-table .ivu-table td {
  772. height: 51px;
  773. }
  774. >>> .common-table .ivu-spin-fix {
  775. top: 51px;
  776. }
  777. >>> .app-table .ivu-spin-fix {
  778. height: calc(100vh - 375px);
  779. }
  780. >>> .ivu-table-tip {
  781. background: url('../../../assets/images/noData.png') no-repeat center;
  782. }
  783. >>> .app-table .ivu-table-tip {
  784. height: calc(100vh - 375px);
  785. }
  786. >>> .common-table .ivu-table-tip table {
  787. display: none;
  788. }
  789. >>> .modal-table {
  790. overflow: auto !important;
  791. }
  792. >>> .modal-table .ivu-spin-fix {
  793. height: 200px;
  794. }
  795. >>> .modal-table .ivu-table-tip {
  796. height: 200px;
  797. }
  798. .common-page {
  799. margin-top: 15px;
  800. display: flex;
  801. justify-content: flex-end;
  802. position: absolute;
  803. bottom: 0;
  804. right: 0;
  805. }
  806. >>> .modal-tabs-item {
  807. margin-top: 10px;
  808. }
  809. >>> .common-modal-top-text {
  810. font-size: 14px;
  811. font-weight: bold;
  812. color: #29A0FF;
  813. line-height: 42px;
  814. border-left: 3px solid #1590F1;
  815. padding-left: 12px;
  816. }
  817. >>> .common-modal-content {
  818. display: flex;
  819. width: 100%;
  820. justify-content: space-between;
  821. flex-wrap: wrap;
  822. margin-bottom: 15px;
  823. border-right: 1px solid #21437B;
  824. }
  825. >>> .modal-content-item {
  826. width: 50%;
  827. display: flex;
  828. }
  829. >>> .item-especial {
  830. width: 100%;
  831. }
  832. >>> .modal-content-item-name {
  833. width: 50%;
  834. height: 45px;
  835. line-height: 45px;
  836. background: #13305F;
  837. border-top: 1px solid #21437B;
  838. border-left: 1px solid #21437B;
  839. font-size: 14px;
  840. color: #F5F5F5;
  841. padding-left: 20px;
  842. }
  843. >>> .modal-content-item-value {
  844. width: 50%;
  845. height: 45px;
  846. line-height: 45px;
  847. background: #06214D;
  848. border-top: 1px solid #21437B;
  849. border-left: 1px solid #21437B;
  850. font-size: 14px;
  851. color: #F5F5F5;
  852. padding-left: 20px;
  853. }
  854. >>> .item-especial .modal-content-item-name{
  855. width: 25%;
  856. height: auto;
  857. min-height: 45px;
  858. border-bottom: 1px solid #21437B;
  859. display: flex;
  860. align-items: center;
  861. }
  862. >>> .item-especial .modal-content-item-value{
  863. width: 75%;
  864. height: auto;
  865. min-height: 45px;
  866. border-bottom: 1px solid #21437B;
  867. display: flex;
  868. align-items: center;
  869. line-height: 22px;
  870. }
  871. >>> .item-especial-bot .modal-content-item-name {
  872. border-bottom: 1px solid #21437B;
  873. }
  874. >>> .item-especial-bot .modal-content-item-value {
  875. border-bottom: 1px solid #21437B;
  876. }
  877. >>> .strategy-form .ivu-col{
  878. // position: initial;
  879. color: #2B8EE2;
  880. font-size: 14PX;
  881. }
  882. >>> .row-first-es {
  883. border-left: 1px solid #21437B;
  884. border-bottom: 1px solid #21437B;
  885. border-right: 1px solid #21437B;
  886. display: flex;
  887. align-items: center;
  888. justify-content: center;
  889. background: #13305F;
  890. }
  891. >>> .strategy-form .row-first{
  892. border-top: 1px solid #21437B;
  893. }
  894. >>> .strategy-form .row-second-es {
  895. border-left: none;
  896. }
  897. >>> .strategy-form .ivu-form-item{
  898. height: 100%;
  899. margin-bottom: 0;
  900. }
  901. >>> .strategy-form .row-es-text {
  902. border-left: none;
  903. border-bottom: 1px solid #21437B;
  904. border-right: 1px solid #21437B;
  905. display: flex;
  906. align-items: center;
  907. justify-content: center;
  908. background: #13305F;
  909. }
  910. >>> .row-select .ivu-form-item {
  911. height: 100%;
  912. border-bottom: 1px solid #21437B;
  913. .ivu-form-item-content {
  914. padding: 10px 5px;
  915. }
  916. }
  917. >>> .strategy-form .row-es-last {
  918. border-right: 1px solid #21437B;
  919. }
  920. >>> .ivu-col-del {
  921. cursor:pointer;
  922. color:#BC2020;
  923. padding-left:10px;
  924. }
  925. >>> .strategy-form .ivu-col-btn {
  926. display: flex;
  927. align-items: center;
  928. border-top: none;
  929. border-bottom: none;
  930. }
  931. >>> .strategy-form .ivu-form-item-error-tip {
  932. padding-left: 6px;
  933. }
  934. /deep/ .ivu-input::-webkit-input-placeholder{
  935. color: #718EBD;
  936. }
  937. /deep/ .ivu-input::-moz-placeholder{ /* Mozilla Firefox 19+ */
  938. color: #718EBD;
  939. }
  940. /deep/ .ivu-input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
  941. color: #718EBD;
  942. }
  943. /deep/ .ivu-input::-ms-input-placeholder{ /* Internet Explorer 10-11 */
  944. color: #718EBD;
  945. }
  946. </style>