|
@@ -212,7 +212,8 @@ export default {
|
|
|
// 将默认当天时间日期回显在时间选择框中
|
|
|
time: [],
|
|
|
dateFormat: 'YYYY-MM-DD', // 日期格式
|
|
|
- columns: [{ title: '网点名称', dataIndex: 'stationName', width: 100, align: 'center' },
|
|
|
+ columns: [
|
|
|
+ { title: '网点名称', dataIndex: 'stationName', width: 100, align: 'center', customRender: (text) => { return text || '--' } },
|
|
|
{ title: '设备编号', dataIndex: 'srcDeviceCode', width: 100, align: 'center', customRender: (text) => { return text || '--' } },
|
|
|
{ slots: { title: 'customTitle' },
|
|
|
children: [{ title: '废旧衣物',
|