进行版本合并和部分细节微调

This commit is contained in:
musteven 2025-03-21 14:56:30 +08:00
parent e3722fa5b7
commit f6321ccb4c
5 changed files with 4 additions and 4 deletions

View File

@ -154,7 +154,7 @@ const columns = [
]
const queryByPage = async (currentPage) => {
const queryByPage = async (currentPage) => {//进入页面加载逻辑
loading.value = true
//先清理所有定时器
for (let key in countdownControllers) {

View File

@ -4,13 +4,13 @@ package com.example.aes.problem.controller;
import com.example.aes.global.model.DecodeToken;
import com.example.aes.global.model.RespBean;
import com.example.aes.problem.model.*;
import com.example.aes.problem.model.DataGrid;
import com.example.aes.problem.service.ProblemServiceI;
import com.example.aes.user.model.*;
import com.example.aes.user.service.ClassesServiceI;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.*;
import com.example.aes.user.model.DataGrid;
import javax.servlet.http.HttpServletRequest;
import javax.swing.event.ListDataEvent;
import java.util.ArrayList;

View File

@ -24,7 +24,7 @@ public interface ProblemDaoI extends BaseDaoI<Problem> {
public String findProblemByTitle(String title);
public List<Problem> findProblemIdByTitle(String title);
public void addProblem(Problem problem);
public long getAllProblemsNum(int courseId);
public long getAllProblemsNum(int courseId);
List<Problem> getProblemsByPage(Integer courseId,String title,
int page, int rows);

View File

@ -9,7 +9,6 @@ import com.example.aes.problem.service.ProblemServiceI;
import com.example.aes.user.dao.AdminusersDaoI;
import com.example.aes.user.model.Classstudents;
import com.example.aes.user.model.Course;
import com.example.aes.user.model.DataGrid;
import com.example.aes.user.model.PMCourse;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;

View File

@ -3,6 +3,7 @@ package com.example.aes.problem.service;
import com.example.aes.problem.model.*;
import com.example.aes.problem.model.DataGrid;
import com.example.aes.user.model.*;
import java.util.List;