riku
2025-07-15 c40f4c1267dae4fcf27dbbd75ea83014fba87783
src/views/fysp/check/components/CompProRecent.vue
@@ -1,5 +1,5 @@
<template>
  <CompGenericWrapper type="dialog">
  <CompGenericWrapper type="dialog" draggable :modal="false">
    <template #content>
      <el-tabs v-model="activeName" type="card">
        <el-tab-pane
@@ -57,6 +57,7 @@
<script>
import CompProblemAddOrUpd from './CompProblemAddOrUpd.vue';
import taskApi from '@/api/fysp/taskApi';
import problemApi from '@/api/fysp/problemApi';
import { useCloned } from '@vueuse/core';
import dayjs from 'dayjs';
export default {
@@ -180,7 +181,7 @@
    },
    // 根据子任务获取里面的问题列表
    getProBySubtask(subtask) {
      return taskApi.getProBySubtask(subtask.stGuid).then((pros) => {
      return problemApi.getProBySubtask(subtask.stGuid).then((pros) => {
        if (pros) {
          pros.forEach((pro) => {
            if (pro.ptguid == this.deepCopyPro.ptguid) {