|
@@ -165,11 +165,11 @@ export default {
|
|
|
// 表头
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: 80, align: 'center' },
|
|
|
- { title: '网点名称', dataIndex: 'stationName', width: 200, align: 'center' },
|
|
|
+ { title: '网点名称', dataIndex: 'stationName', width: 200, align: 'center',customRender: text => { return text || '--' } },
|
|
|
{ title: '网点标签', dataIndex: 'labelName', width: 200, align: 'center', customRender: text => { return text || '--' } },
|
|
|
- { title: '地址', dataIndex: 'stationAddress', width: 200, align: 'center' },
|
|
|
+ { title: '地址', dataIndex: 'stationAddress', width: 200, align: 'center',customRender: text => { return text || '--' } },
|
|
|
{ title: '设备编号', dataIndex: 'srcDeviceCode', width: 200, align: 'center' },
|
|
|
- { title: '箱体类型', dataIndex: 'deviceTypeName', width: 200, align: 'center' },
|
|
|
+ { title: '箱体类型', dataIndex: 'deviceTypeName', width: 200, align: 'center',customRender: text => { return text || '--' } },
|
|
|
{ title: '内置箱体数', dataIndex: 'boxNum', width: 200, align: 'center' },
|
|
|
{ title: '版本', dataIndex: 'boxVersion', width: 200, align: 'center' },
|
|
|
{ title: '设备状态', scopedSlots: { customRender: 'onlineFlag' }, width: 150, align: 'center' },
|