|
@@ -20,20 +20,18 @@
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
<el-table-column :label="`${inSpaceType}本地名称`" show-overflow-tooltip min-width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>{{scope.row.RoomLocalName||scope.row.RoomName||''}}</div>
|
|
|
+ {{scope.row.RoomLocalName||scope.row.RoomName||''}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="RoomLocalID" :label="`${inSpaceType}本地编码`" show-overflow-tooltip min-width="100"></el-table-column>
|
|
|
<el-table-column prop :label="`所属建筑楼层`" show-overflow-tooltip min-width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>
|
|
|
- {{ scope.row.BuildingId && floorType[scope.row.BuildingId]? ((floorType[scope.row.BuildingId] || '') + (scope.row.FloorId && floorType[scope.row.FloorId] ? (' - ' + floorType[scope.row.FloorId] || '') : '')) : ''}}
|
|
|
- </div>
|
|
|
+ {{ scope.row.BuildingId && floorType[scope.row.BuildingId]? ((floorType[scope.row.BuildingId] || '') + (scope.row.FloorId && floorType[scope.row.FloorId] ? (' - ' + floorType[scope.row.FloorId] || '') : '')) : ''}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="ObjectType" :label="`空间类型`" show-overflow-tooltip min-width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>{{spaceType[scope.row.ObjectType] || ''}}</div>
|
|
|
+ {{spaceType[scope.row.ObjectType] || ''}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="action" label="操作" min-width="100">
|