|
@@ -63,11 +63,11 @@
|
|
|
<input-dialog :type='2' @confirm='confirm'></input-dialog>
|
|
|
</div>
|
|
|
<el-table :data='tableData' :border='true' style='width: 100%'>
|
|
|
- <el-table-column type='index' label='序号' width='80'></el-table-column>
|
|
|
+ <el-table-column type='index' label='序号' width='60'></el-table-column>
|
|
|
<el-table-column prop='sbmc' label='设备名称' show-overflow-tooltip resizable>
|
|
|
<template slot-scope='{row}'>{{row.sbmc || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='assetnum' label='设备编码' show-overflow-tooltip resizable>
|
|
|
+ <el-table-column prop='assetnum' label='设备编码' show-overflow-tooltip resizable width="80">
|
|
|
<template slot-scope='{row}'>{{row.assetnum || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop='matters' label='重要事项记录' width='130' show-overflow-tooltip resizable>
|
|
@@ -77,23 +77,23 @@
|
|
|
<template slot-scope='{row}'>{{row.description || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label='更换配件信息' align='center'>
|
|
|
- <el-table-column prop='ischangepj' label='是/否更换'>
|
|
|
+ <el-table-column prop='ischangepj' label='是/否更换' width="80">
|
|
|
<template slot-scope='{row}'>{{row.ismodel==1?'是':(row.ismodel==0?"否" :'--')}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='model' label='配件名称型号' width='130' show-overflow-tooltip resizable>
|
|
|
+ <el-table-column prop='model' label='配件名称型号' width='100' show-overflow-tooltip resizable>
|
|
|
<template slot-scope='{row}'>{{row.model || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='sl' label='数量'>
|
|
|
+ <el-table-column prop='sl' label='数量' width="80">
|
|
|
<template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='cost' label='费用(万元)'>
|
|
|
+ <el-table-column prop='cost' label='费用(万元)' width="80">
|
|
|
<template slot-scope='{row}'>{{row.cost || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='source' label='费用出处' show-overflow-tooltip resizable>
|
|
|
+ <el-table-column prop='source' label='费用出处' show-overflow-tooltip resizable width="80">
|
|
|
<template slot-scope='{row}'>{{number_format(row.source,2) || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='brand' label='现场照片'>
|
|
|
+ <el-table-column prop='brand' label='现场照片' width="70">
|
|
|
<template slot-scope='{row}'>
|
|
|
<div style='cursor:pointer;color: #0091ff;' @click='clickPic(row.glsmsImage)'>{{row.glsmsImage?row.glsmsImage.length+'张':'--'}}</div>
|
|
|
</template>
|
|
@@ -104,7 +104,7 @@
|
|
|
<el-table-column prop='sjjssj' label='验收时间' width='140'>
|
|
|
<template slot-scope='{row}'>{{row.sjjssj?formatter(row.sjjssj): '--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='wonum' label='任务编号' show-overflow-tooltip resizable>
|
|
|
+ <el-table-column prop='wonum' label='任务编号' show-overflow-tooltip resizable width="90">
|
|
|
<template slot-scope='{row}'>{{row.wb_gzglid || '--'}}</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|