diff --git a/pom.xml b/pom.xml index b2100c2..b5329a2 100644 --- a/pom.xml +++ b/pom.xml @@ -16,6 +16,7 @@ 8 + jar org.springframework.boot @@ -62,12 +63,20 @@ 3.5.2 + + + + + + + mysql mysql-connector-java 5.0.7 + org.springframework.boot diff --git a/src/main/java/com/zhiyun/zhiyun03/academic/mapper/AcademicMapper.java b/src/main/java/com/zhiyun/zhiyun03/academic/mapper/AcademicMapper.java index 7c6b2d4..4926195 100644 --- a/src/main/java/com/zhiyun/zhiyun03/academic/mapper/AcademicMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/academic/mapper/AcademicMapper.java @@ -4,10 +4,15 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.academic.entity.Academic; import com.zhiyun.zhiyun03.academic.vo.AcademicVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface AcademicMapper extends BaseMapper { List queryAcademic(); + + int updateByIdInfo(Academic academic); + + int findByNameAndId(@Param("id") Integer id,@Param("academicName") String academicName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/academic/service/impl/AcademicServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/academic/service/impl/AcademicServiceImpl.java index 5f6b7bb..12030b1 100644 --- a/src/main/java/com/zhiyun/zhiyun03/academic/service/impl/AcademicServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/academic/service/impl/AcademicServiceImpl.java @@ -132,8 +132,11 @@ public class AcademicServiceImpl extends ServiceImpl i if (academicVo.getDirName().isEmpty()){ throw new ServiceException("400","归属目录不能为空"); } - if (academicVo.getAcademicImg().isEmpty()){ - throw new ServiceException("400","学术图片不能为空"); + // 校验名称是否重复 + int sum = academicMapper.findByNameAndId(academicVo.getId(),academicVo.getAcademicName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); } //将vo类转换为实体类 ConvertUtil convertUtil=new ConvertUtil(); @@ -145,7 +148,7 @@ public class AcademicServiceImpl extends ServiceImpl i //将目录id封装到实体类 academic.setDirId(directory.getId()); academic.setAcademicUpdatetime(new Date()); - int update = academicMapper.updateById(academic); + int update = academicMapper.updateByIdInfo(academic); return update; } @@ -186,6 +189,10 @@ public class AcademicServiceImpl extends ServiceImpl i if (directory.getDirName().isEmpty()){ throw new ServiceException("400","目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()){ throw new ServiceException("400","图片不能为空"); } diff --git a/src/main/java/com/zhiyun/zhiyun03/application/mapper/ApplicationMapper.java b/src/main/java/com/zhiyun/zhiyun03/application/mapper/ApplicationMapper.java index dcdb551..3433f81 100644 --- a/src/main/java/com/zhiyun/zhiyun03/application/mapper/ApplicationMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/application/mapper/ApplicationMapper.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.application.entity.Application; import com.zhiyun.zhiyun03.application.vo.ApplicationVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @@ -11,4 +12,6 @@ import java.util.List; @Mapper public interface ApplicationMapper extends BaseMapper { List queryApplication(); + + int findByNameAndId(@Param("id") Integer id,@Param("appName") String appName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/application/service/impl/ApplicationServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/application/service/impl/ApplicationServiceImpl.java index 826f11a..d68977c 100644 --- a/src/main/java/com/zhiyun/zhiyun03/application/service/impl/ApplicationServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/application/service/impl/ApplicationServiceImpl.java @@ -114,6 +114,13 @@ public class ApplicationServiceImpl extends ServiceImpl0) + { + throw new ServiceException("300","课程名已存在"); + } + ConvertUtil convertUtil=new ConvertUtil(); Application application = convertUtil.VoToEntity(applicationVo, Application.class); QueryWrapper qwd=new QueryWrapper<>(); @@ -147,6 +154,10 @@ public class ApplicationServiceImpl extends ServiceImpl6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()){ throw new ServiceException("400","图片不能为空"); } diff --git a/src/main/java/com/zhiyun/zhiyun03/course/controller/CourseController.java b/src/main/java/com/zhiyun/zhiyun03/course/controller/CourseController.java index 3e96c57..5b729a6 100644 --- a/src/main/java/com/zhiyun/zhiyun03/course/controller/CourseController.java +++ b/src/main/java/com/zhiyun/zhiyun03/course/controller/CourseController.java @@ -116,11 +116,9 @@ public class CourseController { @GetMapping("/addCourseDirectory") public JsonResult addCourseDirectory(Directory directory){ courseService.addCourseDirectory(directory); - return JsonResult.success(); } - @ApiOperation("查询目录") @GetMapping("/queryCourseDirectory") public JsonResult queryCourseDirectory(){ @@ -130,5 +128,4 @@ public class CourseController { } - } diff --git a/src/main/java/com/zhiyun/zhiyun03/course/mapper/CourseMapper.java b/src/main/java/com/zhiyun/zhiyun03/course/mapper/CourseMapper.java index 83c4a89..715e18f 100644 --- a/src/main/java/com/zhiyun/zhiyun03/course/mapper/CourseMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/course/mapper/CourseMapper.java @@ -6,6 +6,7 @@ import com.zhiyun.zhiyun03.course.vo.ClientCourseVo; import com.zhiyun.zhiyun03.course.vo.CourseVo; import com.zhiyun.zhiyun03.course.vo.PageVO; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; /** @@ -35,4 +36,5 @@ public interface CourseMapper extends BaseMapper { int selectByName(String courseName); + int findByNameAndId(@Param("id") Integer id, @Param("courseName") String courseName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/course/service/impl/CourseServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/course/service/impl/CourseServiceImpl.java index 3204225..a268de6 100644 --- a/src/main/java/com/zhiyun/zhiyun03/course/service/impl/CourseServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/course/service/impl/CourseServiceImpl.java @@ -138,12 +138,23 @@ public class CourseServiceImpl extends ServiceImpl implemen { throw new ServiceException("400","课程名称不能为空"); } + // 校验名称是否重复 + int sum = courseMapper.findByNameAndId(courseVo.getId(),courseVo.getCourseName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); + } +// QueryWrapper qwc=new QueryWrapper<>(); +// qwc.select("course_name").lambda().eq(Course::getCourseName,courseVo.getCourseName()); +// List courses = courseMapper.selectList(qwc); +// if(courses.size()!=0){ +// throw new ServiceException("403","课程名称已存在"); +// } //将vo值赋给course Course course = new Course(); BeanUtils.copyProperties(courseVo,course); //查询归属目录 String dirName = courseVo.getDirName(); - if (dirName.isEmpty()) { throw new ServiceException("403","归属目录不能为空"); @@ -194,6 +205,10 @@ public class CourseServiceImpl extends ServiceImpl implemen { throw new ServiceException("400","目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } /*判断目录图标是否为空*/ if (directory.getDirIcon().isEmpty()) { diff --git a/src/main/java/com/zhiyun/zhiyun03/download/mapper/DownloadMapper.java b/src/main/java/com/zhiyun/zhiyun03/download/mapper/DownloadMapper.java index 25f2c1f..c204c7c 100644 --- a/src/main/java/com/zhiyun/zhiyun03/download/mapper/DownloadMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/download/mapper/DownloadMapper.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.download.entity.Download; import com.zhiyun.zhiyun03.download.vo.DownloadVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @@ -14,4 +15,6 @@ public interface DownloadMapper extends BaseMapper { int selectByName(String downloadName); int updateDownloadById(Download download); + + int findByNameAndId(@Param("id") Integer id,@Param("downloadName") String downloadName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/download/service/impl/DownloadServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/download/service/impl/DownloadServiceImpl.java index 67063cf..882d60a 100644 --- a/src/main/java/com/zhiyun/zhiyun03/download/service/impl/DownloadServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/download/service/impl/DownloadServiceImpl.java @@ -140,6 +140,14 @@ public class DownloadServiceImpl extends ServiceImpl i if (vo.getDownloadName().isEmpty()) { throw new ServiceException("400", "下载名不能为空失败"); } + // 校验名称是否重复 + int sum = downloadMapper.findByNameAndId(vo.getId(),vo.getDownloadName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); + } + + //将vo值传给download Download download = new Download(); BeanUtils.copyProperties(vo, download); @@ -166,6 +174,10 @@ public class DownloadServiceImpl extends ServiceImpl i if (directory.getDirName().isEmpty()) { throw new ServiceException("400", "目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()) { throw new ServiceException("400", "请选择一个icon"); } diff --git a/src/main/java/com/zhiyun/zhiyun03/game/entity/Game.java b/src/main/java/com/zhiyun/zhiyun03/game/entity/Game.java index c4609b2..42673b0 100644 --- a/src/main/java/com/zhiyun/zhiyun03/game/entity/Game.java +++ b/src/main/java/com/zhiyun/zhiyun03/game/entity/Game.java @@ -59,7 +59,7 @@ public class Game { @TableField(value = "start_time") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") - private String startTime; + private Date startTime; /** * 结束时间 @@ -67,7 +67,7 @@ public class Game { @TableField(value = "end_time") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") - private String endTime; + private Date endTime; /** diff --git a/src/main/java/com/zhiyun/zhiyun03/game/mapper/GameMapper.java b/src/main/java/com/zhiyun/zhiyun03/game/mapper/GameMapper.java index 736bd10..6327348 100644 --- a/src/main/java/com/zhiyun/zhiyun03/game/mapper/GameMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/game/mapper/GameMapper.java @@ -4,10 +4,15 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.game.entity.Game; import com.zhiyun.zhiyun03.game.vo.GameVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface GameMapper extends BaseMapper { List queryGame(); + + int updateByIdInfo(Game game); + + int findByNameAndId(@Param("id") Integer id, @Param("gameName")String gameName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/game/service/impl/GameServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/game/service/impl/GameServiceImpl.java index 986765a..c7718d7 100644 --- a/src/main/java/com/zhiyun/zhiyun03/game/service/impl/GameServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/game/service/impl/GameServiceImpl.java @@ -137,9 +137,14 @@ public class GameServiceImpl extends ServiceImpl implements Ga if (gameVo.getDirName().isEmpty()){ throw new ServiceException("400","归属目录不能为空"); } - if (gameVo.getGameImg().isEmpty()){ - throw new ServiceException("400","大赛图片不能为空"); + + // 校验名称是否重复 + int sum = gameMapper.findByNameAndId(gameVo.getId(),gameVo.getGameName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); } + //将vo类转换为实体类 ConvertUtil convertUtil=new ConvertUtil(); Game game = convertUtil.VoToEntity(gameVo, Game.class); @@ -150,7 +155,7 @@ public class GameServiceImpl extends ServiceImpl implements Ga //将目录id封装到实体类 game.setDirId(directory.getId()); game.setGameUpdatetime(new Date()); - int update = gameMapper.updateById(game); + int update = gameMapper.updateByIdInfo(game); return update; } @@ -182,6 +187,10 @@ public class GameServiceImpl extends ServiceImpl implements Ga if (directory.getDirName().isEmpty()){ throw new ServiceException("400","目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()){ throw new ServiceException("400","图片不能为空"); } diff --git a/src/main/java/com/zhiyun/zhiyun03/invite/mapper/InviteMapper.java b/src/main/java/com/zhiyun/zhiyun03/invite/mapper/InviteMapper.java index cb15c72..0aadbfc 100644 --- a/src/main/java/com/zhiyun/zhiyun03/invite/mapper/InviteMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/invite/mapper/InviteMapper.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.invite.entity.Invite; import com.zhiyun.zhiyun03.invite.vo.InviteVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @@ -14,4 +15,6 @@ public interface InviteMapper extends BaseMapper { int selectByName(String inviteName); int updateDownloadById(Invite invite); + + int findByNameAndId(@Param("id") Integer id,@Param("inviteName") String inviteName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/invite/service/impl/InviteServieImpl.java b/src/main/java/com/zhiyun/zhiyun03/invite/service/impl/InviteServieImpl.java index 215ac6c..3abb5c7 100644 --- a/src/main/java/com/zhiyun/zhiyun03/invite/service/impl/InviteServieImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/invite/service/impl/InviteServieImpl.java @@ -131,12 +131,17 @@ public class InviteServieImpl extends ServiceImpl implemen * */ @Override public int updateById(InviteVo vo) { - //查询更新的下载名是否存在 -// int sum = inviteMapper.selectByName(vo.getInviteName()); -// if (sum>0) -// { -// throw new ServiceException("403","下载已存在"); -// } + + if (vo.getInviteName().isEmpty()) + { + throw new ServiceException("400","就业名称不能为空"); + } + // 校验名称是否重复 + int sum = inviteMapper.findByNameAndId(vo.getId(),vo.getInviteName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); + } //将vo值传给download Invite invite = new Invite(); @@ -160,6 +165,10 @@ public class InviteServieImpl extends ServiceImpl implemen if (directory.getDirName().isEmpty()) { throw new ServiceException("400", "目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()) { throw new ServiceException("400", "请选择一个icon"); } diff --git a/src/main/java/com/zhiyun/zhiyun03/knowledge/mapper/KnowledgeMapper.java b/src/main/java/com/zhiyun/zhiyun03/knowledge/mapper/KnowledgeMapper.java index 4a4f040..31c49ea 100644 --- a/src/main/java/com/zhiyun/zhiyun03/knowledge/mapper/KnowledgeMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/knowledge/mapper/KnowledgeMapper.java @@ -4,10 +4,15 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.knowledge.entity.Knowledge; import com.zhiyun.zhiyun03.knowledge.vo.KnowledgeVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface KnowledgeMapper extends BaseMapper { List queryKnowledge(); + + int updateByIdInfo(Knowledge knowledge); + + int findByNameAndId(@Param("id") Integer id,@Param("knowledgeName") String knowledgeName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/knowledge/service/impl/KnowledgeServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/knowledge/service/impl/KnowledgeServiceImpl.java index db36cea..00c8602 100644 --- a/src/main/java/com/zhiyun/zhiyun03/knowledge/service/impl/KnowledgeServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/knowledge/service/impl/KnowledgeServiceImpl.java @@ -137,9 +137,14 @@ public class KnowledgeServiceImpl extends ServiceImpl if (knowledgeVo.getDirName().isEmpty()){ throw new ServiceException("400","归属目录不能为空"); } - if (knowledgeVo.getKnowledgeImg().isEmpty()){ - throw new ServiceException("400","知识图片不能为空"); + // 校验名称是否重复 + int sum = knowledgeMapper.findByNameAndId(knowledgeVo.getId(),knowledgeVo.getKnowledgeName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); } + + //将vo类转换为实体类 ConvertUtil convertUtil=new ConvertUtil(); Knowledge knowledge = convertUtil.VoToEntity(knowledgeVo, Knowledge.class); @@ -150,7 +155,7 @@ public class KnowledgeServiceImpl extends ServiceImpl //将目录id封装到实体类 knowledge.setDirId(directory.getId()); knowledge.setKnowledgeUpdatetime(new Date()); - int update = knowledgeMapper.updateById(knowledge); + int update = knowledgeMapper.updateByIdInfo(knowledge); return update; } @@ -177,6 +182,10 @@ public class KnowledgeServiceImpl extends ServiceImpl if (directory.getDirName().isEmpty()){ throw new ServiceException("400","目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()){ throw new ServiceException("400","图片不能为空"); } diff --git a/src/main/java/com/zhiyun/zhiyun03/serve/mapper/ServeMapper.java b/src/main/java/com/zhiyun/zhiyun03/serve/mapper/ServeMapper.java index bdfc7cb..1239f15 100644 --- a/src/main/java/com/zhiyun/zhiyun03/serve/mapper/ServeMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/serve/mapper/ServeMapper.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.serve.entity.Serve; import com.zhiyun.zhiyun03.serve.vo.ServeVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @@ -14,4 +15,6 @@ public interface ServeMapper extends BaseMapper { int selectByName(String serveName); int updateDownloadById(Serve serve); + + int findByNameAndId(@Param("id") Integer id,@Param("serveName") String serveName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/serve/service/impl/ServeServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/serve/service/impl/ServeServiceImpl.java index 73ec1f9..d720760 100644 --- a/src/main/java/com/zhiyun/zhiyun03/serve/service/impl/ServeServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/serve/service/impl/ServeServiceImpl.java @@ -147,6 +147,12 @@ public class ServeServiceImpl extends ServiceImpl implements { throw new ServiceException("400","服务名不能为空"); } + // 校验名称是否重复 + int sum = serveMapper.findByNameAndId(vo.getId(),vo.getServeName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); + } //将vo值传给download Serve serve = new Serve(); @@ -174,6 +180,10 @@ public class ServeServiceImpl extends ServiceImpl implements { throw new ServiceException("400","目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()) { throw new ServiceException("400","请选择一个icon"); diff --git a/src/main/java/com/zhiyun/zhiyun03/textual/mapper/TextualMapper.java b/src/main/java/com/zhiyun/zhiyun03/textual/mapper/TextualMapper.java index 284e9fe..2896580 100644 --- a/src/main/java/com/zhiyun/zhiyun03/textual/mapper/TextualMapper.java +++ b/src/main/java/com/zhiyun/zhiyun03/textual/mapper/TextualMapper.java @@ -4,10 +4,13 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zhiyun.zhiyun03.textual.entity.Textual; import com.zhiyun.zhiyun03.textual.vo.TextualVo; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface TextualMapper extends BaseMapper { List queryTextual(); + + int findByNameAndId(@Param("id") Integer id, @Param("textualName") String textualName); } diff --git a/src/main/java/com/zhiyun/zhiyun03/textual/service/impl/TextualServiceImpl.java b/src/main/java/com/zhiyun/zhiyun03/textual/service/impl/TextualServiceImpl.java index 1a55c49..3f521d3 100644 --- a/src/main/java/com/zhiyun/zhiyun03/textual/service/impl/TextualServiceImpl.java +++ b/src/main/java/com/zhiyun/zhiyun03/textual/service/impl/TextualServiceImpl.java @@ -131,8 +131,11 @@ public class TextualServiceImpl extends ServiceImpl impl if (textualVo.getDirName().isEmpty()){ throw new ServiceException("400","归属目录不能为空"); } - if (textualVo.getTextualImg().isEmpty()){ - throw new ServiceException("400","学术图片不能为空"); + // 校验名称是否重复 + int sum = textualMapper.findByNameAndId(textualVo.getId(),textualVo.getTextualName()); + if (sum>0) + { + throw new ServiceException("300","课程名已存在"); } //将vo类转换为实体类 ConvertUtil convertUtil=new ConvertUtil(); @@ -180,6 +183,10 @@ public class TextualServiceImpl extends ServiceImpl impl if (directory.getDirName().isEmpty()){ throw new ServiceException("400","目录名称不能为空"); } + if (directory.getDirName().length()>6) + { + throw new ServiceException("400","目录名超出限制长度"); + } if (directory.getDirIcon().isEmpty()){ throw new ServiceException("400","图片不能为空"); } diff --git a/src/main/resources/mapper/AcademicMapper.xml b/src/main/resources/mapper/AcademicMapper.xml index 3c6aaf9..140af7b 100644 --- a/src/main/resources/mapper/AcademicMapper.xml +++ b/src/main/resources/mapper/AcademicMapper.xml @@ -1,6 +1,38 @@ + + update academic + + + academic_name = #{academicName}, + + + academic_brief = #{academicBrief}, + + + academic_url = #{academicUrl}, + + + dir_id = #{dirId}, + + + academic_img = #{academicImg}, + + + academic_addtime = #{academicAddtime}, + + + academic_updatetime = #{academicUpdatetime}, + + + + + id = #{id} + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/ApplicationMapper.xml b/src/main/resources/mapper/ApplicationMapper.xml index 6511217..0a37091 100644 --- a/src/main/resources/mapper/ApplicationMapper.xml +++ b/src/main/resources/mapper/ApplicationMapper.xml @@ -16,4 +16,7 @@ (select * from directory) as d on c.dir_id = d.id + \ No newline at end of file diff --git a/src/main/resources/mapper/CourseMapper.xml b/src/main/resources/mapper/CourseMapper.xml index 42f0718..509b1c2 100644 --- a/src/main/resources/mapper/CourseMapper.xml +++ b/src/main/resources/mapper/CourseMapper.xml @@ -82,5 +82,9 @@ where course_name = #{courseName} + + \ No newline at end of file diff --git a/src/main/resources/mapper/DownloadMapper.xml b/src/main/resources/mapper/DownloadMapper.xml index ac27d56..bd39b88 100644 --- a/src/main/resources/mapper/DownloadMapper.xml +++ b/src/main/resources/mapper/DownloadMapper.xml @@ -16,7 +16,7 @@ dir_id=#{dirId}, - + download_img=#{downloadImg} @@ -43,4 +43,7 @@ select count(1) from download where download_name =#{downloadName} + \ No newline at end of file diff --git a/src/main/resources/mapper/GameMapper.xml b/src/main/resources/mapper/GameMapper.xml index 3374eee..27a88b4 100644 --- a/src/main/resources/mapper/GameMapper.xml +++ b/src/main/resources/mapper/GameMapper.xml @@ -1,6 +1,43 @@ + + update game + + + game_name = #{gameName}, + + + game_brief = #{gameBrief}, + + + game_url = #{gameUrl}, + + + dir_id = #{dirId}, + + + game_img = #{gameImg}, + + + start_time = #{startTime}, + + + end_time = #{endTime}, + + + game_addtime = #{gameAddtime}, + + + game_updatetime = #{gameUpdatetime}, + + + + + id = #{id} + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/InviteMapper.xml b/src/main/resources/mapper/InviteMapper.xml index 790fe6f..47f83bb 100644 --- a/src/main/resources/mapper/InviteMapper.xml +++ b/src/main/resources/mapper/InviteMapper.xml @@ -34,4 +34,7 @@ + \ No newline at end of file diff --git a/src/main/resources/mapper/KnowledgeMapper.xml b/src/main/resources/mapper/KnowledgeMapper.xml index d6dac1b..d21bf1b 100644 --- a/src/main/resources/mapper/KnowledgeMapper.xml +++ b/src/main/resources/mapper/KnowledgeMapper.xml @@ -1,6 +1,44 @@ + + update knowledge + + + knowledge_name = #{knowledgeName}, + + + knowledge_brief = #{knowledgeBrief}, + + + knowledge_url = #{knowledgeUrl}, + + + dir_id = #{dirId}, + + + knowledge_img = #{knowledgeImg}, + + + knowledge_addtime = #{knowledgeAddtime}, + + + knowledge_updatetime = #{knowledgeUpdatetime}, + + + + + + id = #{id} + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/ServeMapper.xml b/src/main/resources/mapper/ServeMapper.xml index dca1f1f..5aca0fc 100644 --- a/src/main/resources/mapper/ServeMapper.xml +++ b/src/main/resources/mapper/ServeMapper.xml @@ -17,7 +17,7 @@ dir_id=#{dirId}, - + serve_img=#{serveImg} @@ -26,8 +26,6 @@ id = #{id} - - select count(1) from serve where serve_name =#{serveName} + diff --git a/src/main/resources/mapper/TextualMapper.xml b/src/main/resources/mapper/TextualMapper.xml index 5d317d0..1d623ca 100644 --- a/src/main/resources/mapper/TextualMapper.xml +++ b/src/main/resources/mapper/TextualMapper.xml @@ -14,4 +14,7 @@ (select * from directory) as d on c.dir_id = d.id + \ No newline at end of file diff --git a/src/main/resources/static/layui-v2.6.8/academicList.html b/src/main/resources/static/layui-v2.6.8/academicList.html index b7f17b3..a065d76 100644 --- a/src/main/resources/static/layui-v2.6.8/academicList.html +++ b/src/main/resources/static/layui-v2.6.8/academicList.html @@ -134,6 +134,7 @@ $("#academicUrl").val(data.academicUrl); $("#dirName").val(data.dirName); $("#academicImg").val(data.academicImg); + //渲染页面 layui.form.render(); }, @@ -372,43 +373,43 @@
- 图片1 -
-
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 + 图片1
@@ -591,6 +592,7 @@ +
@@ -606,7 +608,6 @@
- diff --git a/src/main/resources/static/layui-v2.6.8/applicationList.html b/src/main/resources/static/layui-v2.6.8/applicationList.html index 7ac3c78..132d7a3 100644 --- a/src/main/resources/static/layui-v2.6.8/applicationList.html +++ b/src/main/resources/static/layui-v2.6.8/applicationList.html @@ -207,6 +207,7 @@ if(data.appIcon === src) { const parentEl = $(this).parent('.swiper-slide') parentEl.addClass('active') + appIcon = $(this).attr('src') } }) @@ -294,6 +295,170 @@
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+ + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
@@ -417,43 +582,43 @@
- 图片1 -
-
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 + 图片1
@@ -661,113 +826,196 @@
- +
- +
- +
- +
- +
- +
- +
- +
- +
+
- +
- +
- +
+
- +
- +
- +
- + +
+ + + +
+ +
+
+
- +
- +
- + +
+
+ +
+ +
+
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
diff --git a/src/main/resources/static/layui-v2.6.8/courseList.html b/src/main/resources/static/layui-v2.6.8/courseList.html index 2539f0a..45c796d 100644 --- a/src/main/resources/static/layui-v2.6.8/courseList.html +++ b/src/main/resources/static/layui-v2.6.8/courseList.html @@ -201,6 +201,7 @@ if(data.courseIcon === src) { const parentEl = $(this).parent('.swiper-slide') parentEl.addClass('active') + courseIcon = $(this).attr('src') } }) $(".icon-swiper").on('click', '.swiper-slide>img', function (event) { @@ -284,6 +285,170 @@
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+ + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
@@ -405,43 +570,43 @@
- 图片1 -
-
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 + 图片1
@@ -642,113 +807,196 @@
- +
- +
- +
- +
- +
- +
- +
- +
- +
+
- +
- +
- +
+
- +
- +
- +
- + +
+ + + +
+ +
+
+
- +
- +
- + +
+
+ +
+ +
+
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
diff --git a/src/main/resources/static/layui-v2.6.8/downloadList.html b/src/main/resources/static/layui-v2.6.8/downloadList.html index 68d7e27..220a054 100644 --- a/src/main/resources/static/layui-v2.6.8/downloadList.html +++ b/src/main/resources/static/layui-v2.6.8/downloadList.html @@ -407,43 +407,43 @@
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 -
-
- 图片1 + 图片1
diff --git a/src/main/resources/static/layui-v2.6.8/gameList.html b/src/main/resources/static/layui-v2.6.8/gameList.html index 5fed227..76feba9 100644 --- a/src/main/resources/static/layui-v2.6.8/gameList.html +++ b/src/main/resources/static/layui-v2.6.8/gameList.html @@ -166,15 +166,13 @@ $("#startTime").val(data.startTime); $("#endTime").val(data.endTime); $("#gameUrl").val(data.gameUrl); - $("#dirName").val(data.dirName); $("#gameImg").val(data.gameImg); + $("#dirName").val(data.dirName); //渲染页面 layui.form.render(); }, btn: ['提交', '取消'] , yes: function (index, layero) { - - //修改操作 $.post("http://localhost:8080/game/updateGame", $("#updateGame").serialize(), function (data) { @@ -223,11 +221,24 @@ //日期范围 laydate.render({ elem: '#test7' + ,format: 'yyyy-MM-dd' //设置开始日期、日期日期的 input 选择器 //数组格式为 2.6.6 开始新增,之前版本直接配置 true 或任意分割字符即可 , range: ['#test-startDate-1', '#test-endDate-1'] }); - + // 赋值 + laydate.render({ + elem: '#test-startDate-1' + ,value: data.startTime + ,format: 'yyyy-MM-dd' + ,isInitValue: true + }); + laydate.render({ + elem: '#test-endDate-1' + ,value: data.endTime + ,format: 'yyyy-MM-dd' + ,isInitValue: true + }); }); layui.use(['upload', 'element', 'layer'], function(){ @@ -243,7 +254,6 @@ ,done: function(res){ layer.msg('上传成功'); layui.$('#uploadDemoView').removeClass('layui-hide').find('img').attr('src', res.data); - console.log(res) } }); }); @@ -303,6 +313,7 @@ +
@@ -314,10 +325,8 @@ 上传成功后渲染
- - @@ -389,43 +398,43 @@
- 图片1 -
-
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 + 图片1
diff --git a/src/main/resources/static/layui-v2.6.8/images/01.png b/src/main/resources/static/layui-v2.6.8/images/01.png deleted file mode 100644 index 994e5c4..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/01.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/02.png b/src/main/resources/static/layui-v2.6.8/images/02.png deleted file mode 100644 index f29cb16..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/02.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/03.png b/src/main/resources/static/layui-v2.6.8/images/03.png deleted file mode 100644 index 3ff0fc9..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/03.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/04.png b/src/main/resources/static/layui-v2.6.8/images/04.png deleted file mode 100644 index b771bd7..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/04.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/05.png b/src/main/resources/static/layui-v2.6.8/images/05.png deleted file mode 100644 index 8a73677..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/05.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/06.png b/src/main/resources/static/layui-v2.6.8/images/06.png deleted file mode 100644 index 3db982e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/06.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/07.png b/src/main/resources/static/layui-v2.6.8/images/07.png deleted file mode 100644 index b7e1934..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/07.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/08.png b/src/main/resources/static/layui-v2.6.8/images/08.png deleted file mode 100644 index 4ce2812..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/08.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/09.png b/src/main/resources/static/layui-v2.6.8/images/09.png deleted file mode 100644 index 54630e9..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/09.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/10.png b/src/main/resources/static/layui-v2.6.8/images/10.png deleted file mode 100644 index d76d117..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/10.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/100.png b/src/main/resources/static/layui-v2.6.8/images/100.png deleted file mode 100644 index 0d30bb1..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/100.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/101.png b/src/main/resources/static/layui-v2.6.8/images/101.png deleted file mode 100644 index 724b320..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/101.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/102.png b/src/main/resources/static/layui-v2.6.8/images/102.png deleted file mode 100644 index 313bd33..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/102.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/103.png b/src/main/resources/static/layui-v2.6.8/images/103.png deleted file mode 100644 index bde3aca..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/103.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/104.png b/src/main/resources/static/layui-v2.6.8/images/104.png deleted file mode 100644 index b92ffd3..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/104.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/105.png b/src/main/resources/static/layui-v2.6.8/images/105.png deleted file mode 100644 index 8b82c9b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/105.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/106.png b/src/main/resources/static/layui-v2.6.8/images/106.png deleted file mode 100644 index 0fef03e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/106.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/107.png b/src/main/resources/static/layui-v2.6.8/images/107.png deleted file mode 100644 index dd72d3c..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/107.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/108.png b/src/main/resources/static/layui-v2.6.8/images/108.png deleted file mode 100644 index 1180d44..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/108.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/109.png b/src/main/resources/static/layui-v2.6.8/images/109.png deleted file mode 100644 index f58be73..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/109.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/11.png b/src/main/resources/static/layui-v2.6.8/images/11.png deleted file mode 100644 index 035b7b7..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/11.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/110.png b/src/main/resources/static/layui-v2.6.8/images/110.png deleted file mode 100644 index 872b43b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/110.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/111.png b/src/main/resources/static/layui-v2.6.8/images/111.png deleted file mode 100644 index 90f990e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/111.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/112.png b/src/main/resources/static/layui-v2.6.8/images/112.png deleted file mode 100644 index 4cf6db1..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/112.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/113.png b/src/main/resources/static/layui-v2.6.8/images/113.png deleted file mode 100644 index 7a20c69..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/113.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/114.png b/src/main/resources/static/layui-v2.6.8/images/114.png deleted file mode 100644 index 0bb2f6b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/114.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/115.png b/src/main/resources/static/layui-v2.6.8/images/115.png deleted file mode 100644 index 718ac45..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/115.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/116.png b/src/main/resources/static/layui-v2.6.8/images/116.png deleted file mode 100644 index 6de50dc..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/116.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/117.png b/src/main/resources/static/layui-v2.6.8/images/117.png deleted file mode 100644 index ffc5c07..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/117.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/118.png b/src/main/resources/static/layui-v2.6.8/images/118.png deleted file mode 100644 index d3bbcce..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/118.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/119.png b/src/main/resources/static/layui-v2.6.8/images/119.png deleted file mode 100644 index c16cb19..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/119.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/12.png b/src/main/resources/static/layui-v2.6.8/images/12.png deleted file mode 100644 index 837b45b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/12.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/120.png b/src/main/resources/static/layui-v2.6.8/images/120.png deleted file mode 100644 index 3bb71d2..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/120.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/121.png b/src/main/resources/static/layui-v2.6.8/images/121.png deleted file mode 100644 index 3aea99b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/121.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/122.png b/src/main/resources/static/layui-v2.6.8/images/122.png deleted file mode 100644 index a4b1ae0..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/122.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/123.png b/src/main/resources/static/layui-v2.6.8/images/123.png deleted file mode 100644 index 52fd367..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/123.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/124.png b/src/main/resources/static/layui-v2.6.8/images/124.png deleted file mode 100644 index f85e521..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/124.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/125.png b/src/main/resources/static/layui-v2.6.8/images/125.png deleted file mode 100644 index 591133b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/125.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/126.png b/src/main/resources/static/layui-v2.6.8/images/126.png deleted file mode 100644 index e22204b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/126.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/127.png b/src/main/resources/static/layui-v2.6.8/images/127.png deleted file mode 100644 index 5325106..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/127.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/128.png b/src/main/resources/static/layui-v2.6.8/images/128.png deleted file mode 100644 index ba90f2e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/128.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/129.png b/src/main/resources/static/layui-v2.6.8/images/129.png deleted file mode 100644 index 2b25dfd..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/129.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/13.png b/src/main/resources/static/layui-v2.6.8/images/13.png deleted file mode 100644 index c2edf98..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/13.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/130.png b/src/main/resources/static/layui-v2.6.8/images/130.png deleted file mode 100644 index 97c5b0f..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/130.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/131.png b/src/main/resources/static/layui-v2.6.8/images/131.png deleted file mode 100644 index bc299c7..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/131.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/132.png b/src/main/resources/static/layui-v2.6.8/images/132.png deleted file mode 100644 index 591133b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/132.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/133.png b/src/main/resources/static/layui-v2.6.8/images/133.png deleted file mode 100644 index 52fd367..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/133.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/134.png b/src/main/resources/static/layui-v2.6.8/images/134.png deleted file mode 100644 index 1b044d9..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/134.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/135.png b/src/main/resources/static/layui-v2.6.8/images/135.png deleted file mode 100644 index 1330626..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/135.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/136.png b/src/main/resources/static/layui-v2.6.8/images/136.png deleted file mode 100644 index 475a921..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/136.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/137.png b/src/main/resources/static/layui-v2.6.8/images/137.png deleted file mode 100644 index c16cb19..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/137.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/138.png b/src/main/resources/static/layui-v2.6.8/images/138.png deleted file mode 100644 index d758d24..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/138.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/139.png b/src/main/resources/static/layui-v2.6.8/images/139.png deleted file mode 100644 index 1071f0c..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/139.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/14.png b/src/main/resources/static/layui-v2.6.8/images/14.png deleted file mode 100644 index 14a5841..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/14.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/140.png b/src/main/resources/static/layui-v2.6.8/images/140.png deleted file mode 100644 index 6bcc1f8..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/140.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/141.png b/src/main/resources/static/layui-v2.6.8/images/141.png deleted file mode 100644 index cf9b4dc..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/141.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/142.png b/src/main/resources/static/layui-v2.6.8/images/142.png deleted file mode 100644 index 6e45328..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/142.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/143.png b/src/main/resources/static/layui-v2.6.8/images/143.png deleted file mode 100644 index db0e0b0..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/143.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/144.png b/src/main/resources/static/layui-v2.6.8/images/144.png deleted file mode 100644 index 26137ce..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/144.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/145.png b/src/main/resources/static/layui-v2.6.8/images/145.png deleted file mode 100644 index 257a7c5..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/145.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/146.png b/src/main/resources/static/layui-v2.6.8/images/146.png deleted file mode 100644 index 43d4c49..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/146.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/147.png b/src/main/resources/static/layui-v2.6.8/images/147.png deleted file mode 100644 index 8f61512..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/147.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/148.png b/src/main/resources/static/layui-v2.6.8/images/148.png deleted file mode 100644 index f69cbae..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/148.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/149.png b/src/main/resources/static/layui-v2.6.8/images/149.png deleted file mode 100644 index 73523d8..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/149.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/15.png b/src/main/resources/static/layui-v2.6.8/images/15.png deleted file mode 100644 index d58b434..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/15.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/150.png b/src/main/resources/static/layui-v2.6.8/images/150.png deleted file mode 100644 index 13b7cd4..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/150.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/151.png b/src/main/resources/static/layui-v2.6.8/images/151.png deleted file mode 100644 index 63b903b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/151.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/152.png b/src/main/resources/static/layui-v2.6.8/images/152.png deleted file mode 100644 index f9f5ab5..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/152.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/153.png b/src/main/resources/static/layui-v2.6.8/images/153.png deleted file mode 100644 index a4bde82..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/153.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/154.png b/src/main/resources/static/layui-v2.6.8/images/154.png deleted file mode 100644 index 632fdc4..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/154.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/155.png b/src/main/resources/static/layui-v2.6.8/images/155.png deleted file mode 100644 index 5d1d13e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/155.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/156.png b/src/main/resources/static/layui-v2.6.8/images/156.png deleted file mode 100644 index 8f3bf52..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/156.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/157.png b/src/main/resources/static/layui-v2.6.8/images/157.png deleted file mode 100644 index 0d30bb1..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/157.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/158.png b/src/main/resources/static/layui-v2.6.8/images/158.png deleted file mode 100644 index 724b320..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/158.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/159.png b/src/main/resources/static/layui-v2.6.8/images/159.png deleted file mode 100644 index 93f473c..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/159.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/16.png b/src/main/resources/static/layui-v2.6.8/images/16.png deleted file mode 100644 index 00fc004..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/16.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/160.png b/src/main/resources/static/layui-v2.6.8/images/160.png deleted file mode 100644 index 97cd02d..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/160.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/161.png b/src/main/resources/static/layui-v2.6.8/images/161.png deleted file mode 100644 index 44013dd..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/161.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/162.png b/src/main/resources/static/layui-v2.6.8/images/162.png deleted file mode 100644 index e6ba180..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/162.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/163.png b/src/main/resources/static/layui-v2.6.8/images/163.png deleted file mode 100644 index 24028f4..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/163.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/164.png b/src/main/resources/static/layui-v2.6.8/images/164.png deleted file mode 100644 index f9198a7..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/164.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/165.png b/src/main/resources/static/layui-v2.6.8/images/165.png deleted file mode 100644 index 39c443a..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/165.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/166.png b/src/main/resources/static/layui-v2.6.8/images/166.png deleted file mode 100644 index e8a66eb..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/166.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/167.png b/src/main/resources/static/layui-v2.6.8/images/167.png deleted file mode 100644 index 5d250ed..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/167.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/168.png b/src/main/resources/static/layui-v2.6.8/images/168.png deleted file mode 100644 index e6f1338..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/168.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/169.png b/src/main/resources/static/layui-v2.6.8/images/169.png deleted file mode 100644 index 36e58c4..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/169.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/17.png b/src/main/resources/static/layui-v2.6.8/images/17.png deleted file mode 100644 index b10c4d9..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/17.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/170.png b/src/main/resources/static/layui-v2.6.8/images/170.png deleted file mode 100644 index 470874c..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/170.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/171.png b/src/main/resources/static/layui-v2.6.8/images/171.png deleted file mode 100644 index 9771bc2..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/171.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/172.png b/src/main/resources/static/layui-v2.6.8/images/172.png deleted file mode 100644 index 2289f51..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/172.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/173.png b/src/main/resources/static/layui-v2.6.8/images/173.png deleted file mode 100644 index eb58e9f..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/173.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/174.png b/src/main/resources/static/layui-v2.6.8/images/174.png deleted file mode 100644 index 02bf1b7..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/174.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/175.png b/src/main/resources/static/layui-v2.6.8/images/175.png deleted file mode 100644 index 34fedbf..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/175.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/176.png b/src/main/resources/static/layui-v2.6.8/images/176.png deleted file mode 100644 index 1b98665..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/176.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/177.png b/src/main/resources/static/layui-v2.6.8/images/177.png deleted file mode 100644 index 5f97d6b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/177.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/178.png b/src/main/resources/static/layui-v2.6.8/images/178.png deleted file mode 100644 index 77a5e02..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/178.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/179.png b/src/main/resources/static/layui-v2.6.8/images/179.png deleted file mode 100644 index 16ea12e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/179.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/18.png b/src/main/resources/static/layui-v2.6.8/images/18.png deleted file mode 100644 index 513a248..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/18.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/180.png b/src/main/resources/static/layui-v2.6.8/images/180.png deleted file mode 100644 index 93d7621..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/180.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/181.png b/src/main/resources/static/layui-v2.6.8/images/181.png deleted file mode 100644 index d98cd9c..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/181.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/182.png b/src/main/resources/static/layui-v2.6.8/images/182.png deleted file mode 100644 index 9d7c487..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/182.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/19.png b/src/main/resources/static/layui-v2.6.8/images/19.png deleted file mode 100644 index 276d758..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/19.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/20.png b/src/main/resources/static/layui-v2.6.8/images/20.png deleted file mode 100644 index 53745fb..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/20.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/21.png b/src/main/resources/static/layui-v2.6.8/images/21.png deleted file mode 100644 index 6987796..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/21.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/22.png b/src/main/resources/static/layui-v2.6.8/images/22.png deleted file mode 100644 index 62e9129..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/22.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/23.png b/src/main/resources/static/layui-v2.6.8/images/23.png deleted file mode 100644 index 872b43b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/23.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/24.png b/src/main/resources/static/layui-v2.6.8/images/24.png deleted file mode 100644 index 90f990e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/24.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/25.png b/src/main/resources/static/layui-v2.6.8/images/25.png deleted file mode 100644 index 1410e0f..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/25.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/26.png b/src/main/resources/static/layui-v2.6.8/images/26.png deleted file mode 100644 index 43b4315..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/26.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/27.png b/src/main/resources/static/layui-v2.6.8/images/27.png deleted file mode 100644 index 5a8d44b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/27.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/28.png b/src/main/resources/static/layui-v2.6.8/images/28.png deleted file mode 100644 index 3798983..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/28.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/29.png b/src/main/resources/static/layui-v2.6.8/images/29.png deleted file mode 100644 index c4bf062..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/29.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/30.png b/src/main/resources/static/layui-v2.6.8/images/30.png deleted file mode 100644 index 5b4a2b1..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/30.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/31.png b/src/main/resources/static/layui-v2.6.8/images/31.png deleted file mode 100644 index d5a16e5..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/31.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/32.png b/src/main/resources/static/layui-v2.6.8/images/32.png deleted file mode 100644 index 37e83bb..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/32.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/33.png b/src/main/resources/static/layui-v2.6.8/images/33.png deleted file mode 100644 index b75bd21..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/33.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/34.png b/src/main/resources/static/layui-v2.6.8/images/34.png deleted file mode 100644 index 216167f..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/34.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/35.png b/src/main/resources/static/layui-v2.6.8/images/35.png deleted file mode 100644 index e44dcda..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/35.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/36.png b/src/main/resources/static/layui-v2.6.8/images/36.png deleted file mode 100644 index 66d4f99..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/36.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/37.png b/src/main/resources/static/layui-v2.6.8/images/37.png deleted file mode 100644 index afe5aca..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/37.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/38.png b/src/main/resources/static/layui-v2.6.8/images/38.png deleted file mode 100644 index cc58c94..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/38.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/39.png b/src/main/resources/static/layui-v2.6.8/images/39.png deleted file mode 100644 index 030986c..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/39.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/40.png b/src/main/resources/static/layui-v2.6.8/images/40.png deleted file mode 100644 index d4a5d99..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/40.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/41.png b/src/main/resources/static/layui-v2.6.8/images/41.png deleted file mode 100644 index 3045713..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/41.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/42.png b/src/main/resources/static/layui-v2.6.8/images/42.png deleted file mode 100644 index f32d746..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/42.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/43.png b/src/main/resources/static/layui-v2.6.8/images/43.png deleted file mode 100644 index a7f4d5b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/43.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/44.png b/src/main/resources/static/layui-v2.6.8/images/44.png deleted file mode 100644 index 96ad5ae..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/44.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/45.png b/src/main/resources/static/layui-v2.6.8/images/45.png deleted file mode 100644 index abaa9b6..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/45.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/46.png b/src/main/resources/static/layui-v2.6.8/images/46.png deleted file mode 100644 index 21d8026..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/46.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/47.png b/src/main/resources/static/layui-v2.6.8/images/47.png deleted file mode 100644 index df6ebb6..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/47.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/48.png b/src/main/resources/static/layui-v2.6.8/images/48.png deleted file mode 100644 index fca8633..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/48.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/49.png b/src/main/resources/static/layui-v2.6.8/images/49.png deleted file mode 100644 index 45ba54e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/49.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/50.png b/src/main/resources/static/layui-v2.6.8/images/50.png deleted file mode 100644 index ab0ffa6..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/50.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/51.png b/src/main/resources/static/layui-v2.6.8/images/51.png deleted file mode 100644 index fae95f8..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/51.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/52.png b/src/main/resources/static/layui-v2.6.8/images/52.png deleted file mode 100644 index 1908600..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/52.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/53.png b/src/main/resources/static/layui-v2.6.8/images/53.png deleted file mode 100644 index 83aecf9..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/53.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/54.png b/src/main/resources/static/layui-v2.6.8/images/54.png deleted file mode 100644 index a719535..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/54.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/55.png b/src/main/resources/static/layui-v2.6.8/images/55.png deleted file mode 100644 index fcb7d57..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/55.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/56.png b/src/main/resources/static/layui-v2.6.8/images/56.png deleted file mode 100644 index 8348131..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/56.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/57.png b/src/main/resources/static/layui-v2.6.8/images/57.png deleted file mode 100644 index 48b3b89..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/57.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/58.png b/src/main/resources/static/layui-v2.6.8/images/58.png deleted file mode 100644 index 400b4b0..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/58.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/59.png b/src/main/resources/static/layui-v2.6.8/images/59.png deleted file mode 100644 index 4bc42f8..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/59.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/60.png b/src/main/resources/static/layui-v2.6.8/images/60.png deleted file mode 100644 index f27775d..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/60.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/61.png b/src/main/resources/static/layui-v2.6.8/images/61.png deleted file mode 100644 index 73dccf6..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/61.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/62.png b/src/main/resources/static/layui-v2.6.8/images/62.png deleted file mode 100644 index 642d979..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/62.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/63.png b/src/main/resources/static/layui-v2.6.8/images/63.png deleted file mode 100644 index 3c26474..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/63.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/64.png b/src/main/resources/static/layui-v2.6.8/images/64.png deleted file mode 100644 index a832627..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/64.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/65.png b/src/main/resources/static/layui-v2.6.8/images/65.png deleted file mode 100644 index 517d0ff..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/65.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/66.png b/src/main/resources/static/layui-v2.6.8/images/66.png deleted file mode 100644 index c6ff7c3..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/66.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/67.png b/src/main/resources/static/layui-v2.6.8/images/67.png deleted file mode 100644 index 0459c5a..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/67.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/68.png b/src/main/resources/static/layui-v2.6.8/images/68.png deleted file mode 100644 index d286e75..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/68.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/69.png b/src/main/resources/static/layui-v2.6.8/images/69.png deleted file mode 100644 index cf0539d..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/69.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/70.png b/src/main/resources/static/layui-v2.6.8/images/70.png deleted file mode 100644 index e2cc812..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/70.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/71.png b/src/main/resources/static/layui-v2.6.8/images/71.png deleted file mode 100644 index e3b862a..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/71.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/72.png b/src/main/resources/static/layui-v2.6.8/images/72.png deleted file mode 100644 index ae15584..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/72.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/73.png b/src/main/resources/static/layui-v2.6.8/images/73.png deleted file mode 100644 index 91e4f42..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/73.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/74.png b/src/main/resources/static/layui-v2.6.8/images/74.png deleted file mode 100644 index f0060ae..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/74.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/75.png b/src/main/resources/static/layui-v2.6.8/images/75.png deleted file mode 100644 index c8f3d9c..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/75.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/76.png b/src/main/resources/static/layui-v2.6.8/images/76.png deleted file mode 100644 index 3202e06..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/76.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/77.png b/src/main/resources/static/layui-v2.6.8/images/77.png deleted file mode 100644 index e06a7e9..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/77.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/78.png b/src/main/resources/static/layui-v2.6.8/images/78.png deleted file mode 100644 index 5565caa..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/78.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/79.png b/src/main/resources/static/layui-v2.6.8/images/79.png deleted file mode 100644 index 45cc594..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/79.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/80.png b/src/main/resources/static/layui-v2.6.8/images/80.png deleted file mode 100644 index c4601df..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/80.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/81.png b/src/main/resources/static/layui-v2.6.8/images/81.png deleted file mode 100644 index 21e79c2..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/81.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/82.png b/src/main/resources/static/layui-v2.6.8/images/82.png deleted file mode 100644 index 11a52e5..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/82.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/83.png b/src/main/resources/static/layui-v2.6.8/images/83.png deleted file mode 100644 index d9d8e98..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/83.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/84.png b/src/main/resources/static/layui-v2.6.8/images/84.png deleted file mode 100644 index f456f06..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/84.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/85.png b/src/main/resources/static/layui-v2.6.8/images/85.png deleted file mode 100644 index 66d4b25..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/85.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/86.png b/src/main/resources/static/layui-v2.6.8/images/86.png deleted file mode 100644 index c4ac513..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/86.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/87.png b/src/main/resources/static/layui-v2.6.8/images/87.png deleted file mode 100644 index 3e3e50d..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/87.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/88.png b/src/main/resources/static/layui-v2.6.8/images/88.png deleted file mode 100644 index 969258f..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/88.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/89.png b/src/main/resources/static/layui-v2.6.8/images/89.png deleted file mode 100644 index 4a36139..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/89.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/90.png b/src/main/resources/static/layui-v2.6.8/images/90.png deleted file mode 100644 index 21ed899..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/90.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/91.png b/src/main/resources/static/layui-v2.6.8/images/91.png deleted file mode 100644 index 55efd1b..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/91.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/92.png b/src/main/resources/static/layui-v2.6.8/images/92.png deleted file mode 100644 index 20520bf..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/92.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/93.png b/src/main/resources/static/layui-v2.6.8/images/93.png deleted file mode 100644 index 0f74682..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/93.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/94.png b/src/main/resources/static/layui-v2.6.8/images/94.png deleted file mode 100644 index 16e1816..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/94.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/95.png b/src/main/resources/static/layui-v2.6.8/images/95.png deleted file mode 100644 index 27b0870..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/95.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/96.png b/src/main/resources/static/layui-v2.6.8/images/96.png deleted file mode 100644 index a4bde82..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/96.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/97.png b/src/main/resources/static/layui-v2.6.8/images/97.png deleted file mode 100644 index 632fdc4..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/97.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/98.png b/src/main/resources/static/layui-v2.6.8/images/98.png deleted file mode 100644 index 5d1d13e..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/98.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/images/99.png b/src/main/resources/static/layui-v2.6.8/images/99.png deleted file mode 100644 index 8f3bf52..0000000 Binary files a/src/main/resources/static/layui-v2.6.8/images/99.png and /dev/null differ diff --git a/src/main/resources/static/layui-v2.6.8/inviteList.html b/src/main/resources/static/layui-v2.6.8/inviteList.html index b647e97..143b63b 100644 --- a/src/main/resources/static/layui-v2.6.8/inviteList.html +++ b/src/main/resources/static/layui-v2.6.8/inviteList.html @@ -375,43 +375,43 @@
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 -
-
- 图片1 + 图片1
diff --git a/src/main/resources/static/layui-v2.6.8/knowledgeList.html b/src/main/resources/static/layui-v2.6.8/knowledgeList.html index 9a04689..aa7de0e 100644 --- a/src/main/resources/static/layui-v2.6.8/knowledgeList.html +++ b/src/main/resources/static/layui-v2.6.8/knowledgeList.html @@ -355,43 +355,43 @@
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 -
-
- 图片1 + 图片1
diff --git a/src/main/resources/static/layui-v2.6.8/serveList.html b/src/main/resources/static/layui-v2.6.8/serveList.html index bf99f31..c160d51 100644 --- a/src/main/resources/static/layui-v2.6.8/serveList.html +++ b/src/main/resources/static/layui-v2.6.8/serveList.html @@ -358,43 +358,43 @@
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 -
-
- 图片1 + 图片1
diff --git a/src/main/resources/static/layui-v2.6.8/textualList.html b/src/main/resources/static/layui-v2.6.8/textualList.html index 91132be..dfa02d4 100644 --- a/src/main/resources/static/layui-v2.6.8/textualList.html +++ b/src/main/resources/static/layui-v2.6.8/textualList.html @@ -201,6 +201,7 @@ if(data.textualImg === src) { const parentEl = $(this).parent('.swiper-slide') parentEl.addClass('active') + textualImg = $(this).attr('src') } }) @@ -278,6 +279,170 @@
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+ + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
@@ -401,43 +566,43 @@
- 图片1 -
-
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
- 图片1 + 图片1
+ + +
- 图片1 + 图片1
- 图片1 + 图片1
@@ -662,6 +827,170 @@
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+ + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +