| | |
| | | <button class="layui-btn layui-btn-sm layui-btn-primary febs-button-green-plain" shiro:hasPermission="productList:add" lay-event="productAdd">新增</button> |
| | | <button class="layui-btn layui-btn-sm layui-btn-primary febs-button-green-plain" shiro:hasPermission="productList:pointSet" lay-event="pointSet">知识点配置</button> |
| | | <button class="layui-btn layui-btn-sm layui-btn-primary febs-button-green-plain" shiro:hasPermission="productList:productRoleSet" lay-event="productRoleSet">AI陪练配置</button> |
| | | <button class="layui-btn layui-btn-sm layui-btn-primary febs-button-green-plain" shiro:hasPermission="productList:productQuestionSet" lay-event="productQuestionSet">AI题目配置</button> |
| | | </div> |
| | | </script> |
| | | |
| | |
| | | } |
| | | }); |
| | | } |
| | | |
| | | if (layEvent === 'productQuestionSet') { |
| | | var checkData = table.checkStatus('productTable').data; |
| | | if (checkData.length > 1 || checkData.length === 0) { |
| | | febs.alert.warn('每次操作只能操作一行数据'); |
| | | return; |
| | | } |
| | | febs.modal.open('AI题目配置', 'modules/ai/product/productQuestionSet/' + checkData[0].id, { |
| | | btn: ['提交', '取消'], |
| | | area:['100%','100%'], |
| | | yes: function (index, layero) { |
| | | $('#productQuestion-set').find('#submit').trigger('click'); |
| | | }, |
| | | btn2: function () { |
| | | layer.closeAll(); |
| | | } |
| | | }); |
| | | } |
| | | }); |
| | | |
| | | function initproductTable() { |