customRenderList: ['beginTime', 'endTime', 'workingHours', 'jobContent', 'produceUrl'],
// 用来匹配插槽中显示...input框
inputScopedSlots: ['jobContent', 'produceUrl'],
// 用来匹配插槽中显示date框
dateScopedSlots...: ['beginTime','endTime'],
// 用来匹配插槽中显示select框
selectScopedSlots: ['workingHours'],...] = $event;
// 根据select框的值自动带出某个input的值 - 因为第三列列名为c
$event === '1小时' ?...target.c = '根据1小时带出的值' : target.c = '根据2小时带出的值'
this.tableData = newData;
}
}