|
@@ -33,10 +33,10 @@
|
|
|
</div>
|
|
|
<el-table :data='tableData' style='width: 100%' :border='true' @row-click='rowHandle'>
|
|
|
<el-table-column type='index' label='序号' width='50'></el-table-column>
|
|
|
- <el-table-column prop='type_name' label='设备名称' show-overflow-tooltip resizable width='160'>
|
|
|
+ <el-table-column prop='type_name' label='设备名称' show-overflow-tooltip resizable >
|
|
|
<template slot-scope='{row}'>{{row.type_name || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='sl' label='数量' width='100'>
|
|
|
+ <el-table-column prop='sl' label='数量' >
|
|
|
<template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop='brand' label='品牌'>
|
|
@@ -45,7 +45,7 @@
|
|
|
<el-table-column prop='sbxh' label='型号' show-overflow-tooltip resizable>
|
|
|
<template slot-scope='{row}'>{{row.sbxh || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='floorcode' label='楼层' width='100'>
|
|
|
+ <el-table-column prop='floorcode' label='楼层' >
|
|
|
<template slot-scope='{row}'>{{row.floorcode || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop='wzjc' label='安装位置' show-overflow-tooltip resizable>
|
|
@@ -82,12 +82,6 @@ export default {
|
|
|
components: { Select, EqDetail },
|
|
|
data() {
|
|
|
return {
|
|
|
- dataSelect2: [
|
|
|
- { id: 'test1', name: '选择项' },
|
|
|
- { id: 'test2', name: '单平米' },
|
|
|
- { id: 'test3', name: '下级分项' },
|
|
|
- { id: 'test4', name: '滑动平均滑动平均' }
|
|
|
- ],
|
|
|
tableData: [],
|
|
|
total: 0,
|
|
|
currentPage: 1,
|