刘洋 před 1 rokem
rodič
revize
e27aead87b

+ 2 - 2
server.config.ts

@@ -3,11 +3,11 @@ import type { ServerOptions } from 'vite'
 const server: ServerOptions = {
 const server: ServerOptions = {
   proxy: {
   proxy: {
     '^/?(api|file)/': {
     '^/?(api|file)/': {
-      target: 'http://192.168.10.41:8200',
+      // target: 'http://192.168.10.41:8200',
       // target: 'http://192.168.10.178:8200',
       // target: 'http://192.168.10.178:8200',
       // target: 'http://192.168.10.108:8200',
       // target: 'http://192.168.10.108:8200',
       // target: 'http://cet-test.markingtool.cn',
       // target: 'http://cet-test.markingtool.cn',
-      // target: 'http://192.168.10.136:80',
+      target: 'http://192.168.10.136:80',
       // target: 'http://cet-dev.markingtool.cn:8200',
       // target: 'http://cet-dev.markingtool.cn:8200',
     },
     },
   },
   },

+ 1 - 0
src/modules/marking/inquiry-result/index.vue

@@ -334,6 +334,7 @@ watch(current, () => {
         if (!current.value.checked) {
         if (!current.value.checked) {
           current.value.checked = true
           current.value.checked = true
         }
         }
+        current.value.customCheckNumber = (current.value.customCheckNumber || 0) + 1
       })
       })
     // modelScore.value = [current.value?.headerScore ?? (current.value?.markerScore || 0)]
     // modelScore.value = [current.value?.headerScore ?? (current.value?.markerScore || 0)]
     modelScore.value = current.value?.markScores || []
     modelScore.value = current.value?.markScores || []

+ 1 - 0
src/modules/marking/mark/index.vue

@@ -321,6 +321,7 @@ const modelScore = ref<number[]>([])
 
 
 /** 提交评卷 */
 /** 提交评卷 */
 const onSubmit: InstanceType<typeof ScoringPanelWithConfirm>['onSubmit'] = async ({ question, scores, totalScore }) => {
 const onSubmit: InstanceType<typeof ScoringPanelWithConfirm>['onSubmit'] = async ({ question, scores, totalScore }) => {
+  remarkModalVisible.value = false
   try {
   try {
     if (!currentTask.value?.taskId) {
     if (!currentTask.value?.taskId) {
       return
       return

+ 1 - 0
src/modules/monitor/system-check/index.vue

@@ -357,6 +357,7 @@ watch(currentSystemCheckPaper, () => {
         if (!currentSystemCheckPaper.value.checked) {
         if (!currentSystemCheckPaper.value.checked) {
           currentSystemCheckPaper.value.checked = true
           currentSystemCheckPaper.value.checked = true
         }
         }
+        currentSystemCheckPaper.value.checkCount = (currentSystemCheckPaper.value.checkCount || 0) + 1
       })
       })
     // 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 || []