From 75d8b0ad39a7eb04f72ef8654dbb895322f07cfd Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Tue, 21 Oct 2025 13:41:42 +0800
Subject: [PATCH] feat(ai): 新增会员答题分页及详情查询功能 - 在 AiMemberAnswerMapper 中新增 getAnswerPage 方法及对应 XML 查询语句 - 新增 ApiMemberAnswerPageDto 和 ApiMemberAnswerPageVo 用于分页查询参数和返回结果 - 在 AiMemberAnswerService 及其实现类中添加 getAnswerPage 方法 - 在 AiMemberService 及其实现类中新增 answerPage 和 answerInfo 接口实现 - 新增 ApiMemberAnswerInfoDto 和 ApiMemberAnswerInfoVo 用于答题详情接口参数和响应 - 在 ApiMemberController 中增加 /answerPage 和 /answerInfo两个 POST 接口 - 优化 AiMemberTeamPracticeVo,增加 memberUuid 字段 - 统一导入包路径,简化代码结构

---
 src/main/resources/templates/febs/views/modules/clothesType/patternList.html |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/clothesType/patternList.html b/src/main/resources/templates/febs/views/modules/clothesType/patternList.html
index 5134a83..f210610 100644
--- a/src/main/resources/templates/febs/views/modules/clothesType/patternList.html
+++ b/src/main/resources/templates/febs/views/modules/clothesType/patternList.html
@@ -1,4 +1,4 @@
-<div class="layui-fluid layui-anim febs-anim" id="febs-pattern" lay-title="图案管理">
+<div class="layui-fluid layui-anim febs-anim" id="febs-pattern" lay-title="正面图案管理">
     <div class="layui-row febs-container">
         <div class="layui-col-md12">
             <div class="layui-card">
@@ -52,16 +52,16 @@
 <script type="text/html" id="patternOption">
     <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="patternInfo:view" lay-event="patternInfoEvent">编辑</button>
 </script>
-<script type="text/html" id="patternTypeOption">
-    {{#
-    var type = {
-    1: {title: '文字', color: 'green'},
-    2: {title: '图案', color: 'blue'},
-    3: {title: '文字和图案', color: 'red'},
-    }[d.type];
-    }}
-    <span class="layui-badge febs-bg-{{type.color}}">{{ type.title }}</span>
-</script>
+<!--<script type="text/html" id="patternTypeOption">-->
+<!--    {{#-->
+<!--    var type = {-->
+<!--    1: {title: '文字', color: 'green'},-->
+<!--    2: {title: '图案', color: 'blue'},-->
+<!--    3: {title: '文字和图案', color: 'red'},-->
+<!--    }[d.type];-->
+<!--    }}-->
+<!--    <span class="layui-badge febs-bg-{{type.color}}">{{ type.title }}</span>-->
+<!--</script>-->
 
 
 <!-- 表格操作栏 end -->
@@ -156,7 +156,7 @@
                     {field: 'code', title: '编码', minWidth: 150,align:'center'},
                     {field: 'orderNum', title: '序号', minWidth: 100,align:'center'},
                     {field: 'price', title: '价格', minWidth: 150,align:'center'},
-                    {title: '图案类型', templet: '#patternTypeOption', minWidth: 150,align:'center'},
+                    // {title: '图案类型', templet: '#patternTypeOption', minWidth: 150,align:'center'},
                     {field: 'image',title: '小图标',
                         templet: function (d) {
                             return '<a lay-event="seePatternImage">' +

--
Gitblit v1.9.1