|
@@ -47,7 +47,7 @@ class QuestionTemQualityReview extends Page
|
|
|
/** 左侧按学期筛选;空字符串=全部 */
|
|
/** 左侧按学期筛选;空字符串=全部 */
|
|
|
public string $semesterFilter = '';
|
|
public string $semesterFilter = '';
|
|
|
/** 中间卡片首屏渲染数量(性能优先,按需加载更多) */
|
|
/** 中间卡片首屏渲染数量(性能优先,按需加载更多) */
|
|
|
- public int $cardRenderLimit = 8;
|
|
|
|
|
|
|
+ public int $cardRenderLimit = 20;
|
|
|
|
|
|
|
|
public ?int $selectedTemId = null;
|
|
public ?int $selectedTemId = null;
|
|
|
|
|
|
|
@@ -84,7 +84,7 @@ class QuestionTemQualityReview extends Page
|
|
|
$this->selectedTemId = null;
|
|
$this->selectedTemId = null;
|
|
|
$this->selectedTemIds = [];
|
|
$this->selectedTemIds = [];
|
|
|
$this->pendingImportTemIds = [];
|
|
$this->pendingImportTemIds = [];
|
|
|
- $this->cardRenderLimit = 8;
|
|
|
|
|
|
|
+ $this->cardRenderLimit = 20;
|
|
|
$this->importDifficultyInput = '0.50';
|
|
$this->importDifficultyInput = '0.50';
|
|
|
$this->qcPanelExpanded = false;
|
|
$this->qcPanelExpanded = false;
|
|
|
}
|
|
}
|
|
@@ -96,7 +96,7 @@ class QuestionTemQualityReview extends Page
|
|
|
$this->selectedTemId = null;
|
|
$this->selectedTemId = null;
|
|
|
$this->selectedTemIds = [];
|
|
$this->selectedTemIds = [];
|
|
|
$this->pendingImportTemIds = [];
|
|
$this->pendingImportTemIds = [];
|
|
|
- $this->cardRenderLimit = 8;
|
|
|
|
|
|
|
+ $this->cardRenderLimit = 20;
|
|
|
$this->importDifficultyInput = '0.50';
|
|
$this->importDifficultyInput = '0.50';
|
|
|
$this->qcPanelExpanded = false;
|
|
$this->qcPanelExpanded = false;
|
|
|
}
|
|
}
|
|
@@ -107,7 +107,7 @@ class QuestionTemQualityReview extends Page
|
|
|
$this->selectedTemId = null;
|
|
$this->selectedTemId = null;
|
|
|
$this->selectedTemIds = [];
|
|
$this->selectedTemIds = [];
|
|
|
$this->pendingImportTemIds = [];
|
|
$this->pendingImportTemIds = [];
|
|
|
- $this->cardRenderLimit = 8;
|
|
|
|
|
|
|
+ $this->cardRenderLimit = 20;
|
|
|
$this->importDifficultyInput = '0.50';
|
|
$this->importDifficultyInput = '0.50';
|
|
|
$this->qcPanelExpanded = false;
|
|
$this->qcPanelExpanded = false;
|
|
|
}
|
|
}
|
|
@@ -326,14 +326,14 @@ class QuestionTemQualityReview extends Page
|
|
|
$this->selectedTemId = null;
|
|
$this->selectedTemId = null;
|
|
|
$this->selectedTemIds = [];
|
|
$this->selectedTemIds = [];
|
|
|
$this->pendingImportTemIds = [];
|
|
$this->pendingImportTemIds = [];
|
|
|
- $this->cardRenderLimit = 8;
|
|
|
|
|
|
|
+ $this->cardRenderLimit = 20;
|
|
|
$this->importDifficultyInput = '0.50';
|
|
$this->importDifficultyInput = '0.50';
|
|
|
$this->qcPanelExpanded = false;
|
|
$this->qcPanelExpanded = false;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public function loadMoreCards(): void
|
|
public function loadMoreCards(): void
|
|
|
{
|
|
{
|
|
|
- $this->cardRenderLimit += 8;
|
|
|
|
|
|
|
+ $this->cardRenderLimit += 20;
|
|
|
$this->dispatch('qtr-scroll-top');
|
|
$this->dispatch('qtr-scroll-top');
|
|
|
}
|
|
}
|
|
|
|
|
|