Commit 59daec4d authored by 皮倩雯's avatar 皮倩雯

fix: 'bug修复'

parent 5b81a500
Pipeline #82104 passed with stages
......@@ -192,6 +192,15 @@ const BookConfigNew = props => {
if (item.dataIndex === ele.FieldName) {
ele.ColumnWidth = item.width;
}
if (ele.ColumnCalculationRule === '无') {
ele.ColumnCalculationRule = 0;
} else if (ele.ColumnCalculationRule === '合计') {
ele.ColumnCalculationRule = 1;
} else if (ele.ColumnCalculationRule === '平均') {
ele.ColumnCalculationRule = 2;
} else if (ele.ColumnCalculationRule === '计数') {
ele.ColumnCalculationRule = 3;
}
});
});
let obj = { ...submitObj, LedgerFieids: viewArr };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment