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

fix: the problem that StandardTable.vue not support nested attributes;
This commit is contained in:
chenghongxing 2020-12-06 10:33:02 +08:00
parent 010ffdaacb
commit 935cd77d4f

View File

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