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/typeList.html |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/clothesType/typeList.html b/src/main/resources/templates/febs/views/modules/clothesType/typeList.html
index 69e3714..190cf0d 100644
--- a/src/main/resources/templates/febs/views/modules/clothesType/typeList.html
+++ b/src/main/resources/templates/febs/views/modules/clothesType/typeList.html
@@ -57,8 +57,8 @@
         <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="artSet:view" lay-event="artSet">工艺配置</button>
         <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="sizeSet:view" lay-event="sizeSet">尺码配置</button>
         <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="clothSet:view" lay-event="clothSet">布料配置</button>
-        <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="patternSet:view" lay-event="patternSet">图案文字配置</button>
-        <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="locationSet:view" lay-event="locationSet">图案位置配置</button>
+        <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="patternSet:view" lay-event="patternSet">正面图案配置</button>
+        <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" shiro:hasPermission="locationSet:view" lay-event="locationSet">反面图案配置</button>
     </div>
 </script>
 
@@ -335,7 +335,7 @@
                     febs.alert.warn('每次操作只能操作一行数据');
                     return;
                 }
-                febs.modal.open('图案文字配置', 'modules/clothesType/patternSet/' + checkData[0].id, {
+                febs.modal.open('正面图案配置', 'modules/clothesType/patternSet/' + checkData[0].id, {
                     btn: ['提交', '取消'],
                     area:['100%','100%'],
                     yes: function (index, layero) {
@@ -353,7 +353,7 @@
                     febs.alert.warn('每次操作只能操作一行数据');
                     return;
                 }
-                febs.modal.open('图案位置配置', 'modules/clothesType/locationSet/' + checkData[0].id, {
+                febs.modal.open('反面图案配置', 'modules/clothesType/locationSet/' + checkData[0].id, {
                     btn: ['提交', '取消'],
                     area:['100%','100%'],
                     yes: function (index, layero) {
@@ -382,8 +382,8 @@
                     {field: 'state', title: '允许上线', templet: '#stateSwitch', minWidth: 130,align:'center'},
                     {field: 'clothState', title: '允许选择布料', templet: '#clothStateSwitch', minWidth: 130,align:'center'},
                     {field: 'artState', title: '允许选择工艺', templet: '#artStateSwitch', minWidth: 130,align:'center'},
-                    {field: 'patternState', title: '允许选择图案', templet: '#patternStateSwitch', minWidth: 130,align:'center'},
-                    {field: 'locationState', title: '允许选择图案位置', templet: '#locationStateSwitch', minWidth: 180,align:'center'},
+                    {field: 'patternState', title: '允许选择正面图案', templet: '#patternStateSwitch', minWidth: 130,align:'center'},
+                    {field: 'locationState', title: '允许选择反面图案', templet: '#locationStateSwitch', minWidth: 180,align:'center'},
                     {field: 'sizeState', title: '允许选择尺码', templet: '#sizeStateSwitch', minWidth: 130,align:'center'},
                     {field: 'image',title: '小图标',
                         templet: function (d) {

--
Gitblit v1.9.1