|
@@ -351,7 +351,13 @@ const {
|
|
|
|
|
|
watch(currentSystemCheckPaper, () => {
|
|
watch(currentSystemCheckPaper, () => {
|
|
if (currentSystemCheckPaper.value) {
|
|
if (currentSystemCheckPaper.value) {
|
|
- useFetch('viewSystemSpotPaper').fetch({ id: currentSystemCheckPaper.value.id })
|
|
|
|
|
|
+ useFetch('viewSystemSpotPaper')
|
|
|
|
+ .fetch({ id: currentSystemCheckPaper.value.id })
|
|
|
|
+ .then(() => {
|
|
|
|
+ if (!currentSystemCheckPaper.value.checked) {
|
|
|
|
+ currentSystemCheckPaper.value.checked = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
// modelScore.value = [currentSystemCheckPaper.value?.headerScore ?? (currentSystemCheckPaper.value?.markScore || 0)]
|
|
// modelScore.value = [currentSystemCheckPaper.value?.headerScore ?? (currentSystemCheckPaper.value?.markScore || 0)]
|
|
modelScore.value = currentSystemCheckPaper.value?.markScores || []
|
|
modelScore.value = currentSystemCheckPaper.value?.markScores || []
|
|
}
|
|
}
|