|
@@ -112,7 +112,7 @@
|
|
|
style='width:100%;margin-top:12px'
|
|
|
:header-cell-style='{background:"rgba(245,246,247,1)",fontFamily:"MicrosoftYaHei",color:"rgba(100,108,115,1)",lineHeight:"16px",fontSize:"12px"}'
|
|
|
>
|
|
|
- <el-table-column type='index' label='序号' width='50' :index='indexMethod'></el-table-column>
|
|
|
+ <el-table-column type='index' label='序号' width='50'></el-table-column>
|
|
|
<el-table-column prop='sbjc' label='设备名称' min-width='150' :show-overflow-tooltip='true' resizable>
|
|
|
<template slot-scope='{row}'>{{row.type_name||'--'}}</template>
|
|
|
</el-table-column>
|
|
@@ -168,7 +168,7 @@ import { mapGetters } from 'vuex'
|
|
|
import { queryHxsbDetail } from '@/api/room.js'
|
|
|
|
|
|
export default {
|
|
|
- props: ['row'],
|
|
|
+ props: ['row', 'location'],
|
|
|
data() {
|
|
|
return {
|
|
|
dialogFormVisible: false,
|
|
@@ -248,7 +248,7 @@ export default {
|
|
|
manufacturer: this.row.manufacturer || '--',
|
|
|
sbxh: this.row.sbxh || '--',
|
|
|
brand: this.row.brand || '--',
|
|
|
- location: this.row.classstructureid,
|
|
|
+ location: this.location,
|
|
|
classstructureid: this.row.classstructureid
|
|
|
// type_code: this.row.type_code
|
|
|
}
|