123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <!-- 设备清单的有tab的表格 -->
- <template>
- <div class='eq-list'>
- <div class='eq-list-top'>
- <el-input
- placeholder='搜索设备名称'
- size='small'
- @keyup.enter.native='getList'
- @blur='getList'
- prefix-icon='el-icon-search'
- v-model='sbjc'
- clearable
- style='width:192px;margin-right:12px'
- ></el-input>
- <el-input
- placeholder='搜索品牌型号'
- size='small'
- @keyup.enter.native='getList'
- @blur='getList'
- clearable
- prefix-icon='el-icon-search'
- v-model='keyword'
- style='width:192px;margin-right:12px'
- ></el-input>
- <Select
- @change='getList'
- @cancel='getList'
- v-model='floor'
- style='margin-right:12px;'
- width='160'
- tipPlace='top'
- caption='楼层 :'
- :selectdata='floorAllSelect'
- ></Select>
- <el-input
- placeholder='搜索生产厂商'
- clearable
- size='small'
- @keyup.enter.native='getList'
- @blur='getList'
- prefix-icon='el-icon-search'
- v-model='manufacturer'
- style='width:192px;'
- ></el-input>
- </div>
- <div ref='tableBox' style='height: calc(100% - 115px);'>
- <el-table :data='tableData' :max-height='tableMaxHeight' style='width: 100%' :border='true' @row-click='rowHandle'>
- <el-table-column type='index' label='序号' width='60' :index='indexMethod'></el-table-column>
- <el-table-column prop='type_name' label='设备名称' show-overflow-tooltip resizable width='250'>
- <template slot-scope='{row}'>{{row.type_name || '--'}}</template>
- </el-table-column>
- <el-table-column prop='sl' label='数量' width='100'>
- <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
- </el-table-column>
- <el-table-column prop='brand' label='品牌' width='120'>
- <template slot-scope='{row}'>{{row.brand || '--'}}</template>
- </el-table-column>
- <el-table-column prop='sbxh' label='型号' show-overflow-tooltip resizable width='150'>
- <template slot-scope='{row}'>{{row.sbxh || '--'}}</template>
- </el-table-column>
- <el-table-column prop='floorcode' label='楼层' width='240' show-overflow-tooltip resizable>
- <template slot-scope='{row}'>{{row.floorcode || '--'}}</template>
- </el-table-column>
- <!-- <el-table-column prop='wzjc' label='安装位置' show-overflow-tooltip resizable>
- <template slot-scope='{row}'>{{row.wzjc || '--'}}</template>
- </el-table-column>-->
- <el-table-column prop='manufacturer' label='生产厂商' show-overflow-tooltip resizable min-width='300'>
- <template slot-scope='{row}'>{{row.manufacturer || '--'}}</template>
- </el-table-column>
- </el-table>
- </div>
- <div class='foot'>
- <el-pagination
- background
- layout='prev, pager, next'
- :total='total'
- :page-size='size'
- @prev-click='pageChanged'
- @next-click='pageChanged'
- @current-change='pageChanged'
- ></el-pagination>
- </div>
- <!-- 标准表格详情钻取表 -->
- <el-dialog
- width='1260px'
- :title='`${InfoName}-${type_name}`'
- style='height:900px!important;overflow: hidden;'
- :visible.sync='innerVisible'
- append-to-body
- >
- <eq-detail ref='qdDialog' :row='row' :major='major'></eq-detail>
- </el-dialog>
- </div>
- </template>
- <script>
- import { Select } from 'meri-design'
- import EqDetail from './eqDetaileDialog'
- import { queryEquipmentList } from '@/api/equipmentList.js'
- import { mapGetters } from 'vuex'
- import store from '../../../store/index'
- export default {
- components: { Select, EqDetail },
- data() {
- return {
- tableData: [],
- total: 0,
- currentPage: 1,
- size: 10,
- innerVisible: false, //详情弹框
- keyword: '',
- manufacturer: '',
- sbjc: '',
- row: {},
- floor: '1',
- tableMaxHeight: 0,
- type_name: '',
- floorAllSelect: [],
- }
- },
- computed: {
- ...mapGetters(['floorSelect']),
- },
- props: ['param', 'major', 'systemName', 'InfoName'],
- methods: {
- indexMethod(index) {
- return (this.currentPage - 1) * this.size + index + 1
- },
- rowHandle(row) {
- this.type_name = row.type_name
- this.innerVisible = true
- this.row = row
- },
- pageChanged(page) {
- this.currentPage = page
- this.getList()
- },
- getList() {
- let postParams = {
- tab_code: this.param,
- }
- let data = {
- page: this.currentPage,
- size: this.size,
- plazaId: this.$store.state.plazaId,
- major: this.major,
- }
- //下拉
- if (this.floor && this.floor != 1) {
- postParams.gname = this.floor
- }
- //输入框搜索
- data.keyword = ''
- if (this.keyword) {
- data.keyword += `${this.keyword}:brand,sbxh;`
- }
- if (this.sbjc) {
- data.keyword += `${this.sbjc}:type_name;`
- }
- if (this.manufacturer) {
- data.keyword += `${this.manufacturer}:manufacturer;`
- }
- if (data.keyword == '') {
- delete data.keyword
- }
- queryEquipmentList({ data, postParams }).then((res) => {
- //console.log(res)
- this.tableData = res.data.data
- this.total = res.data.count
- })
- },
- getFloorAllSelect() {
- this.floorAllSelect = []
- this.floorAllSelect.push({
- name: '全部',
- id: '1',
- })
- this.floorSelect.forEach((el) => {
- this.floorAllSelect.push(el)
- })
- },
- },
- watch: {
- param(newV, oldV) {
- console.log(newV, oldV)
- if (newV !== oldV) {
- this.getList()
- this.$nextTick(() => {
- // 页面渲染完成后的回调
- this.tableMaxHeight = this.$refs.tableBox.offsetHeight
- })
- this.getFloorAllSelect()
- }
- },
- /* floor(newV, oldV) {
- console.log(newV, oldV)
- this.getList()
- }, */
- // 监听 vuex 中currentFloor的变化,切换楼层后,更新下拉菜单
- '$store.state.currentFloor': {
- handler(newV, oldV) {
- if (newV.gname !== oldV.gname) {
- this.floor = newV.gname
- this.getList()
- }
- },
- deep: true,
- },
- },
- mounted() {
- // this.floor = this.$cookie.get('floorMapId')
- this.getList()
- this.$nextTick(() => {
- // 页面渲染完成后的回调
- this.tableMaxHeight = this.$refs.tableBox.offsetHeight
- })
- this.getFloorAllSelect()
- },
- }
- </script>
- <style lang="less" scoped>
- .eq-list {
- .eq-list-top {
- display: flex;
- margin-bottom: 12px;
- }
- td {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .foot {
- height: 32px;
- display: flex;
- justify-content: flex-end;
- margin-top: 28px;
- }
- }
- @media screen and (max-width: 1600px) {
- /deep/ .el-dialog__body {
- padding: 0;
- }
- /deep/ .el-table td {
- padding: 4px 0;
- }
- /deep/ .el-dialog {
- margin-top: 5vh !important;
- }
- }
- </style>
- <style lang="less">
- .eq-list {
- /deep/.el-table td {
- cursor: pointer;
- }
- }
- </style>
|