@@ -1160,6 +1160,8 @@ void ExportReportManager::insertEffiConfigData()
} else {
value += grade;
}
+ } else {
+ continue;
value += ":";
value += gradeIndexInfoList[i]->gradeIndexValue;
@@ -1502,7 +1504,7 @@ void ExportReportManager::insertEffiResult()
int bestIndex = 0;
QString score;
for (int k = 0; k < values.size(); ++k) {
- if (values[k] > values[bestIndex]) {
+ if (values[k] >= values[bestIndex]) {
bestIndex = k;
score += QString::number(values[k], 'f', 1).replace(".0", "").replace("nan", "0");
@@ -9,7 +9,7 @@
#include <QApplication>
#include <QPixmap>
-static const QString buildTime = "2024年11月21日";
+static const QString buildTime = "2024年11月22日";
AppInfoWidget::AppInfoWidget(QWidget *parent) : QWidget(parent)
{
@@ -87,7 +87,7 @@ void AppInfoWidget::refresh()
m_verValueLabel->setText(qApp->applicationVersion());
m_contentValueLabel->setText("问题修复、功能改进");
- m_dateValueLabel->setText("2024年11月21日");
+ m_dateValueLabel->setText("2024年11月22日");
m_envValueLabel->setText(SysInfoExt::getCpuName());
m_confirmButton->hide();