ApplicationStation.vue 23 KB

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