Compare commits

...

2 Commits

Author SHA1 Message Date
de60b3cded Fix: 修正Excel公式 2025-07-12 15:46:53 +08:00
73576a8f28 Fix: 修改国际化文件中的错误 2025-07-12 15:44:54 +08:00
2 changed files with 4 additions and 6 deletions

View File

@ -382,12 +382,12 @@
worksheet.getCell('F4').style = parameterStyle
// 所有记录中最小角度
worksheet.getCell('G4').value = {
formula: `MIN(D9: D${recordList.value.length + 8})`,
formula: `MIN(D9:D${8 + recordList.value.length})`,
}
worksheet.getCell('G4').style = valueStyle
// 所有记录中最大角度
worksheet.getCell('H4').value = {
formula: `MAX(D9: D${recordList.value.length + 8})`,
formula: `MAX(D9:D${8 + recordList.value.length})`,
}
worksheet.getCell('H4').style = valueStyle
@ -423,8 +423,6 @@
for (const [index, column] of worksheet.columns.entries()) {
let maxLength = 0
const columnLetter = String.fromCodePoint(65 + index)
if (column && typeof column.eachCell === 'function') {
column.eachCell({ includeEmpty: true }, cell => {
const cellValue = cell.value ? String(cell.value) : ''

View File

@ -57,8 +57,8 @@
"new_120Series": "新120系列",
"cumulativeThickness": "累计厚度",
"reference": "参考区间",
"minimum": "最值",
"maximum": "最值",
"minimum": "最值",
"maximum": "最值",
"calculatedValue": "计算值",
"fit": "符合",
"notFit": "不符合",