mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
修复:标准表格不支持嵌套属性的问题;🐛
fix: the problem that StandardTable.vue not support nested attributes;
This commit is contained in:
parent
010ffdaacb
commit
935cd77d4f
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user