修复:标准表格不支持嵌套属性的问题;🐛

fix: the problem that StandardTable.vue not support nested attributes;
This commit is contained in:
chenghongxing 2020-12-06 11:16:49 +08:00
parent 6371f1e6db
commit 6254aeb739

View File

@ -95,7 +95,14 @@ export default {
return {
...item,
total: selectedRows.reduce((sum, val) => {
return sum + val[item.dataIndex]
let v
try{
v = val[item.dataIndex] ? val[item.dataIndex] : eval(`val.${item.dataIndex}`);
}catch(_){
v = val[item.dataIndex];
}
v = !isNaN(parseFloat(v)) ? parseFloat(v) : 0;
return sum + v
}, 0)
}
})