Compare commits
No commits in common. "10218685ccb255521c3e07e4e4b86654174785ae" and "877f6b604605f1922e7dbd4ec27c0986f72529f4" have entirely different histories.
10218685cc
...
877f6b6046
@ -1,182 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.controller;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.net.URLDecoder;
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
|
||||||
import org.jeecg.common.api.vo.Result;
|
|
||||||
import org.jeecg.common.system.query.QueryGenerator;
|
|
||||||
import org.jeecg.common.system.query.QueryRuleEnum;
|
|
||||||
import org.jeecg.common.util.oConvertUtils;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChat;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolChatService;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
|
|
||||||
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
||||||
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ImportParams;
|
|
||||||
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
||||||
import org.jeecg.common.system.base.controller.JeecgController;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
|
||||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
|
||||||
import com.alibaba.fastjson.JSON;
|
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
|
||||||
import org.jeecg.common.aspect.annotation.AutoLog;
|
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
||||||
/**
|
|
||||||
* @Description: 会话
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Tag(name="会话")
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/aiol/aiolChat")
|
|
||||||
@Slf4j
|
|
||||||
public class AiolChatController extends JeecgController<AiolChat, IAiolChatService> {
|
|
||||||
@Autowired
|
|
||||||
private IAiolChatService aiolChatService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分页列表查询
|
|
||||||
*
|
|
||||||
* @param aiolChat
|
|
||||||
* @param pageNo
|
|
||||||
* @param pageSize
|
|
||||||
* @param req
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "会话-分页列表查询")
|
|
||||||
@Operation(summary="会话-分页列表查询")
|
|
||||||
@GetMapping(value = "/list")
|
|
||||||
public Result<IPage<AiolChat>> queryPageList(AiolChat aiolChat,
|
|
||||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
||||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
||||||
HttpServletRequest req) {
|
|
||||||
|
|
||||||
|
|
||||||
QueryWrapper<AiolChat> queryWrapper = QueryGenerator.initQueryWrapper(aiolChat, req.getParameterMap());
|
|
||||||
Page<AiolChat> page = new Page<AiolChat>(pageNo, pageSize);
|
|
||||||
IPage<AiolChat> pageList = aiolChatService.page(page, queryWrapper);
|
|
||||||
return Result.OK(pageList);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加
|
|
||||||
*
|
|
||||||
* @param aiolChat
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话-添加")
|
|
||||||
@Operation(summary="会话-添加")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat:add")
|
|
||||||
@PostMapping(value = "/add")
|
|
||||||
public Result<String> add(@RequestBody AiolChat aiolChat) {
|
|
||||||
aiolChatService.save(aiolChat);
|
|
||||||
|
|
||||||
return Result.OK("添加成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑
|
|
||||||
*
|
|
||||||
* @param aiolChat
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话-编辑")
|
|
||||||
@Operation(summary="会话-编辑")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat:edit")
|
|
||||||
@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
||||||
public Result<String> edit(@RequestBody AiolChat aiolChat) {
|
|
||||||
aiolChatService.updateById(aiolChat);
|
|
||||||
return Result.OK("编辑成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id删除
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话-通过id删除")
|
|
||||||
@Operation(summary="会话-通过id删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat:delete")
|
|
||||||
@DeleteMapping(value = "/delete")
|
|
||||||
public Result<String> delete(@RequestParam(name="id",required=true) String id) {
|
|
||||||
aiolChatService.removeById(id);
|
|
||||||
return Result.OK("删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
*
|
|
||||||
* @param ids
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话-批量删除")
|
|
||||||
@Operation(summary="会话-批量删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat:deleteBatch")
|
|
||||||
@DeleteMapping(value = "/deleteBatch")
|
|
||||||
public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
||||||
this.aiolChatService.removeByIds(Arrays.asList(ids.split(",")));
|
|
||||||
return Result.OK("批量删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "会话-通过id查询")
|
|
||||||
@Operation(summary="会话-通过id查询")
|
|
||||||
@GetMapping(value = "/queryById")
|
|
||||||
public Result<AiolChat> queryById(@RequestParam(name="id",required=true) String id) {
|
|
||||||
AiolChat aiolChat = aiolChatService.getById(id);
|
|
||||||
if(aiolChat==null) {
|
|
||||||
return Result.error("未找到对应数据");
|
|
||||||
}
|
|
||||||
return Result.OK(aiolChat);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出excel
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param aiolChat
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_chat:exportXls")
|
|
||||||
@RequestMapping(value = "/exportXls")
|
|
||||||
public ModelAndView exportXls(HttpServletRequest request, AiolChat aiolChat) {
|
|
||||||
return super.exportXls(request, aiolChat, AiolChat.class, "会话");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过excel导入数据
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param response
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_chat:importExcel")
|
|
||||||
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
||||||
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
||||||
return super.importExcel(request, response, AiolChat.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,182 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.controller;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.net.URLDecoder;
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
|
||||||
import org.jeecg.common.api.vo.Result;
|
|
||||||
import org.jeecg.common.system.query.QueryGenerator;
|
|
||||||
import org.jeecg.common.system.query.QueryRuleEnum;
|
|
||||||
import org.jeecg.common.util.oConvertUtils;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMember;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolChatMemberService;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
|
|
||||||
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
||||||
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ImportParams;
|
|
||||||
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
||||||
import org.jeecg.common.system.base.controller.JeecgController;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
|
||||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
|
||||||
import com.alibaba.fastjson.JSON;
|
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
|
||||||
import org.jeecg.common.aspect.annotation.AutoLog;
|
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
||||||
/**
|
|
||||||
* @Description: 会话用户
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Tag(name="会话用户")
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/aiol/aiolChatMember")
|
|
||||||
@Slf4j
|
|
||||||
public class AiolChatMemberController extends JeecgController<AiolChatMember, IAiolChatMemberService> {
|
|
||||||
@Autowired
|
|
||||||
private IAiolChatMemberService aiolChatMemberService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分页列表查询
|
|
||||||
*
|
|
||||||
* @param aiolChatMember
|
|
||||||
* @param pageNo
|
|
||||||
* @param pageSize
|
|
||||||
* @param req
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "会话用户-分页列表查询")
|
|
||||||
@Operation(summary="会话用户-分页列表查询")
|
|
||||||
@GetMapping(value = "/list")
|
|
||||||
public Result<IPage<AiolChatMember>> queryPageList(AiolChatMember aiolChatMember,
|
|
||||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
||||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
||||||
HttpServletRequest req) {
|
|
||||||
|
|
||||||
|
|
||||||
QueryWrapper<AiolChatMember> queryWrapper = QueryGenerator.initQueryWrapper(aiolChatMember, req.getParameterMap());
|
|
||||||
Page<AiolChatMember> page = new Page<AiolChatMember>(pageNo, pageSize);
|
|
||||||
IPage<AiolChatMember> pageList = aiolChatMemberService.page(page, queryWrapper);
|
|
||||||
return Result.OK(pageList);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加
|
|
||||||
*
|
|
||||||
* @param aiolChatMember
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话用户-添加")
|
|
||||||
@Operation(summary="会话用户-添加")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_member:add")
|
|
||||||
@PostMapping(value = "/add")
|
|
||||||
public Result<String> add(@RequestBody AiolChatMember aiolChatMember) {
|
|
||||||
aiolChatMemberService.save(aiolChatMember);
|
|
||||||
|
|
||||||
return Result.OK("添加成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑
|
|
||||||
*
|
|
||||||
* @param aiolChatMember
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话用户-编辑")
|
|
||||||
@Operation(summary="会话用户-编辑")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_member:edit")
|
|
||||||
@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
||||||
public Result<String> edit(@RequestBody AiolChatMember aiolChatMember) {
|
|
||||||
aiolChatMemberService.updateById(aiolChatMember);
|
|
||||||
return Result.OK("编辑成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id删除
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话用户-通过id删除")
|
|
||||||
@Operation(summary="会话用户-通过id删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_member:delete")
|
|
||||||
@DeleteMapping(value = "/delete")
|
|
||||||
public Result<String> delete(@RequestParam(name="id",required=true) String id) {
|
|
||||||
aiolChatMemberService.removeById(id);
|
|
||||||
return Result.OK("删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
*
|
|
||||||
* @param ids
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话用户-批量删除")
|
|
||||||
@Operation(summary="会话用户-批量删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_member:deleteBatch")
|
|
||||||
@DeleteMapping(value = "/deleteBatch")
|
|
||||||
public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
||||||
this.aiolChatMemberService.removeByIds(Arrays.asList(ids.split(",")));
|
|
||||||
return Result.OK("批量删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "会话用户-通过id查询")
|
|
||||||
@Operation(summary="会话用户-通过id查询")
|
|
||||||
@GetMapping(value = "/queryById")
|
|
||||||
public Result<AiolChatMember> queryById(@RequestParam(name="id",required=true) String id) {
|
|
||||||
AiolChatMember aiolChatMember = aiolChatMemberService.getById(id);
|
|
||||||
if(aiolChatMember==null) {
|
|
||||||
return Result.error("未找到对应数据");
|
|
||||||
}
|
|
||||||
return Result.OK(aiolChatMember);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出excel
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param aiolChatMember
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_member:exportXls")
|
|
||||||
@RequestMapping(value = "/exportXls")
|
|
||||||
public ModelAndView exportXls(HttpServletRequest request, AiolChatMember aiolChatMember) {
|
|
||||||
return super.exportXls(request, aiolChatMember, AiolChatMember.class, "会话用户");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过excel导入数据
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param response
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_member:importExcel")
|
|
||||||
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
||||||
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
||||||
return super.importExcel(request, response, AiolChatMember.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,182 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.controller;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.net.URLDecoder;
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
|
||||||
import org.jeecg.common.api.vo.Result;
|
|
||||||
import org.jeecg.common.system.query.QueryGenerator;
|
|
||||||
import org.jeecg.common.system.query.QueryRuleEnum;
|
|
||||||
import org.jeecg.common.util.oConvertUtils;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMessage;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolChatMessageService;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
|
|
||||||
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
||||||
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ImportParams;
|
|
||||||
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
||||||
import org.jeecg.common.system.base.controller.JeecgController;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
|
||||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
|
||||||
import com.alibaba.fastjson.JSON;
|
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
|
||||||
import org.jeecg.common.aspect.annotation.AutoLog;
|
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
||||||
/**
|
|
||||||
* @Description: 会话消息
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Tag(name="会话消息")
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/aiol/aiolChatMessage")
|
|
||||||
@Slf4j
|
|
||||||
public class AiolChatMessageController extends JeecgController<AiolChatMessage, IAiolChatMessageService> {
|
|
||||||
@Autowired
|
|
||||||
private IAiolChatMessageService aiolChatMessageService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分页列表查询
|
|
||||||
*
|
|
||||||
* @param aiolChatMessage
|
|
||||||
* @param pageNo
|
|
||||||
* @param pageSize
|
|
||||||
* @param req
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "会话消息-分页列表查询")
|
|
||||||
@Operation(summary="会话消息-分页列表查询")
|
|
||||||
@GetMapping(value = "/list")
|
|
||||||
public Result<IPage<AiolChatMessage>> queryPageList(AiolChatMessage aiolChatMessage,
|
|
||||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
||||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
||||||
HttpServletRequest req) {
|
|
||||||
|
|
||||||
|
|
||||||
QueryWrapper<AiolChatMessage> queryWrapper = QueryGenerator.initQueryWrapper(aiolChatMessage, req.getParameterMap());
|
|
||||||
Page<AiolChatMessage> page = new Page<AiolChatMessage>(pageNo, pageSize);
|
|
||||||
IPage<AiolChatMessage> pageList = aiolChatMessageService.page(page, queryWrapper);
|
|
||||||
return Result.OK(pageList);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加
|
|
||||||
*
|
|
||||||
* @param aiolChatMessage
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话消息-添加")
|
|
||||||
@Operation(summary="会话消息-添加")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_message:add")
|
|
||||||
@PostMapping(value = "/add")
|
|
||||||
public Result<String> add(@RequestBody AiolChatMessage aiolChatMessage) {
|
|
||||||
aiolChatMessageService.save(aiolChatMessage);
|
|
||||||
|
|
||||||
return Result.OK("添加成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑
|
|
||||||
*
|
|
||||||
* @param aiolChatMessage
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话消息-编辑")
|
|
||||||
@Operation(summary="会话消息-编辑")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_message:edit")
|
|
||||||
@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
||||||
public Result<String> edit(@RequestBody AiolChatMessage aiolChatMessage) {
|
|
||||||
aiolChatMessageService.updateById(aiolChatMessage);
|
|
||||||
return Result.OK("编辑成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id删除
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话消息-通过id删除")
|
|
||||||
@Operation(summary="会话消息-通过id删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_message:delete")
|
|
||||||
@DeleteMapping(value = "/delete")
|
|
||||||
public Result<String> delete(@RequestParam(name="id",required=true) String id) {
|
|
||||||
aiolChatMessageService.removeById(id);
|
|
||||||
return Result.OK("删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
*
|
|
||||||
* @param ids
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "会话消息-批量删除")
|
|
||||||
@Operation(summary="会话消息-批量删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_message:deleteBatch")
|
|
||||||
@DeleteMapping(value = "/deleteBatch")
|
|
||||||
public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
||||||
this.aiolChatMessageService.removeByIds(Arrays.asList(ids.split(",")));
|
|
||||||
return Result.OK("批量删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "会话消息-通过id查询")
|
|
||||||
@Operation(summary="会话消息-通过id查询")
|
|
||||||
@GetMapping(value = "/queryById")
|
|
||||||
public Result<AiolChatMessage> queryById(@RequestParam(name="id",required=true) String id) {
|
|
||||||
AiolChatMessage aiolChatMessage = aiolChatMessageService.getById(id);
|
|
||||||
if(aiolChatMessage==null) {
|
|
||||||
return Result.error("未找到对应数据");
|
|
||||||
}
|
|
||||||
return Result.OK(aiolChatMessage);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出excel
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param aiolChatMessage
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_message:exportXls")
|
|
||||||
@RequestMapping(value = "/exportXls")
|
|
||||||
public ModelAndView exportXls(HttpServletRequest request, AiolChatMessage aiolChatMessage) {
|
|
||||||
return super.exportXls(request, aiolChatMessage, AiolChatMessage.class, "会话消息");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过excel导入数据
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param response
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_chat_message:importExcel")
|
|
||||||
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
||||||
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
||||||
return super.importExcel(request, response, AiolChatMessage.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -2,34 +2,46 @@ package org.jeecg.modules.aiol.controller;
|
|||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Date;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
|
import java.net.URLDecoder;
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import org.jeecg.common.api.vo.Result;
|
import org.jeecg.common.api.vo.Result;
|
||||||
import org.jeecg.common.system.query.QueryGenerator;
|
import org.jeecg.common.system.query.QueryGenerator;
|
||||||
|
import org.jeecg.common.system.query.QueryRuleEnum;
|
||||||
import org.jeecg.common.system.util.JwtUtil;
|
import org.jeecg.common.system.util.JwtUtil;
|
||||||
import org.jeecg.common.system.vo.LoginUser;
|
import org.jeecg.common.system.vo.LoginUser;
|
||||||
|
import org.jeecg.common.util.oConvertUtils;
|
||||||
import org.jeecg.modules.aiol.entity.AiolClass;
|
import org.jeecg.modules.aiol.entity.AiolClass;
|
||||||
import org.jeecg.modules.aiol.entity.AiolClassStudent;
|
import org.jeecg.modules.aiol.entity.AiolClassStudent;
|
||||||
import org.jeecg.modules.aiol.service.IAiolClassService;
|
import org.jeecg.modules.aiol.service.IAiolClassService;
|
||||||
import org.jeecg.modules.aiol.service.IAiolClassStudentService;
|
import org.jeecg.modules.aiol.service.IAiolClassStudentService;
|
||||||
import org.jeecg.modules.system.entity.SysUser;
|
import org.jeecg.modules.system.entity.SysUser;
|
||||||
import org.jeecg.modules.system.mapper.SysUserMapper;
|
import org.jeecg.modules.system.mapper.SysUserMapper;
|
||||||
import org.jeecg.modules.system.service.ISysUserService;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
|
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
||||||
|
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
||||||
|
import org.jeecgframework.poi.excel.entity.ExportParams;
|
||||||
|
import org.jeecgframework.poi.excel.entity.ImportParams;
|
||||||
|
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
||||||
import org.jeecg.common.system.api.ISysBaseAPI;
|
import org.jeecg.common.system.api.ISysBaseAPI;
|
||||||
import org.jeecg.common.system.base.controller.JeecgController;
|
import org.jeecg.common.system.base.controller.JeecgController;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
import org.springframework.web.servlet.ModelAndView;
|
||||||
|
import com.alibaba.fastjson.JSON;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
import org.jeecg.common.aspect.annotation.AutoLog;
|
import org.jeecg.common.aspect.annotation.AutoLog;
|
||||||
@ -54,8 +66,6 @@ public class AiolClassController extends JeecgController<AiolClass, IAiolClassSe
|
|||||||
private ISysBaseAPI sysBaseApi;
|
private ISysBaseAPI sysBaseApi;
|
||||||
@Autowired
|
@Autowired
|
||||||
private SysUserMapper sysUserMapper;
|
private SysUserMapper sysUserMapper;
|
||||||
@Autowired
|
|
||||||
private ISysUserService sysUserService;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分页列表查询
|
* 分页列表查询
|
||||||
@ -315,124 +325,4 @@ public class AiolClassController extends JeecgController<AiolClass, IAiolClassSe
|
|||||||
return Result.error("移除学生失败: " + e.getMessage());
|
return Result.error("移除学生失败: " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 导入学生到班级(通过Excel)
|
|
||||||
*
|
|
||||||
* @param classId 班级ID
|
|
||||||
* @param request HTTP请求对象
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "班级学生-导入学生")
|
|
||||||
@Operation(summary = "导入学生到班级", description = "通过Excel文件导入学生到指定班级,如果学生不存在则自动创建")
|
|
||||||
@PostMapping(value = "/{classId}/import_students_excel")
|
|
||||||
public Result<Map<String, Object>> importStudentsToClassByExcel(
|
|
||||||
@PathVariable("classId") String classId,
|
|
||||||
HttpServletRequest request) {
|
|
||||||
|
|
||||||
try {
|
|
||||||
// 1. 获取当前登录用户信息
|
|
||||||
String token = request.getHeader(CommonConstant.X_ACCESS_TOKEN);
|
|
||||||
String username = JwtUtil.getUsername(token);
|
|
||||||
LoginUser sysUser = sysBaseApi.getUserByName(username);
|
|
||||||
|
|
||||||
if (sysUser == null) {
|
|
||||||
return Result.error("用户未登录或登录已过期");
|
|
||||||
}
|
|
||||||
|
|
||||||
// 2. 模拟Excel数据(暂时不实现Excel解析,直接使用模拟数据)
|
|
||||||
List<Map<String, String>> studentDataList = new ArrayList<>();
|
|
||||||
|
|
||||||
// 模拟数据示例
|
|
||||||
Map<String, String> student1 = new HashMap<>();
|
|
||||||
student1.put("studentNumber", "2024001");
|
|
||||||
student1.put("realName", "张三");
|
|
||||||
studentDataList.add(student1);
|
|
||||||
|
|
||||||
Map<String, String> student2 = new HashMap<>();
|
|
||||||
student2.put("studentNumber", "2024002");
|
|
||||||
student2.put("realName", "李四");
|
|
||||||
studentDataList.add(student2);
|
|
||||||
|
|
||||||
// 3. 处理学生数据
|
|
||||||
int successCount = 0;
|
|
||||||
int failCount = 0;
|
|
||||||
List<String> errorMessages = new ArrayList<>();
|
|
||||||
List<String> createdStudentIds = new ArrayList<>();
|
|
||||||
|
|
||||||
for (Map<String, String> studentData : studentDataList) {
|
|
||||||
try {
|
|
||||||
String studentNumber = studentData.get("studentNumber");
|
|
||||||
String realName = studentData.get("realName");
|
|
||||||
|
|
||||||
// 检查学生是否已存在
|
|
||||||
SysUser existingStudent = sysUserService.getUserByName(studentNumber);
|
|
||||||
String studentId;
|
|
||||||
|
|
||||||
if (existingStudent != null) {
|
|
||||||
// 学生已存在,直接使用现有学生ID
|
|
||||||
studentId = existingStudent.getId();
|
|
||||||
log.info("学生已存在,使用现有学生: 学号={}, 姓名={}", studentNumber, realName);
|
|
||||||
} else {
|
|
||||||
// 学生不存在,创建新学生
|
|
||||||
SysUser newStudent = sysUserService.createStudentUser(studentNumber, realName, null);
|
|
||||||
studentId = newStudent.getId();
|
|
||||||
createdStudentIds.add(studentId);
|
|
||||||
log.info("创建新学生: 学号={}, 姓名={}, ID={}", studentNumber, realName, studentId);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 检查学生是否已在班级中
|
|
||||||
QueryWrapper<AiolClassStudent> checkWrapper = new QueryWrapper<>();
|
|
||||||
checkWrapper.eq("class_id", classId)
|
|
||||||
.eq("student_id", studentId);
|
|
||||||
|
|
||||||
AiolClassStudent existingRelation = aiolClassStudentService.getOne(checkWrapper);
|
|
||||||
if (existingRelation != null) {
|
|
||||||
log.info("学生已在班级中: 学号={}, 班级ID={}", studentNumber, classId);
|
|
||||||
continue; // 跳过已存在的学生
|
|
||||||
}
|
|
||||||
|
|
||||||
// 创建班级学生关联
|
|
||||||
AiolClassStudent classStudent = new AiolClassStudent();
|
|
||||||
classStudent.setClassId(classId);
|
|
||||||
classStudent.setStudentId(studentId);
|
|
||||||
classStudent.setCreateBy(sysUser.getUsername());
|
|
||||||
classStudent.setCreateTime(new Date());
|
|
||||||
|
|
||||||
boolean saved = aiolClassStudentService.save(classStudent);
|
|
||||||
if (saved) {
|
|
||||||
successCount++;
|
|
||||||
log.info("成功将学生添加到班级: 学号={}, 班级ID={}", studentNumber, classId);
|
|
||||||
} else {
|
|
||||||
failCount++;
|
|
||||||
errorMessages.add("保存学生 " + studentNumber + " 到班级失败");
|
|
||||||
}
|
|
||||||
|
|
||||||
} catch (Exception e) {
|
|
||||||
failCount++;
|
|
||||||
String errorMsg = "处理学生 " + studentData.get("studentNumber") + " 失败: " + e.getMessage();
|
|
||||||
errorMessages.add(errorMsg);
|
|
||||||
log.error(errorMsg, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 4. 构建返回结果
|
|
||||||
Map<String, Object> result = new HashMap<>();
|
|
||||||
result.put("totalCount", studentDataList.size());
|
|
||||||
result.put("successCount", successCount);
|
|
||||||
result.put("failCount", failCount);
|
|
||||||
result.put("createdStudentCount", createdStudentIds.size());
|
|
||||||
result.put("errorMessages", errorMessages);
|
|
||||||
result.put("createdStudentIds", createdStudentIds);
|
|
||||||
|
|
||||||
log.info("导入学生完成: 班级ID={}, 总数={}, 成功={}, 失败={}, 新创建学生={}",
|
|
||||||
classId, studentDataList.size(), successCount, failCount, createdStudentIds.size());
|
|
||||||
|
|
||||||
return Result.OK(result);
|
|
||||||
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("导入学生到班级失败: classId={}, error={}", classId, e.getMessage(), e);
|
|
||||||
return Result.error("导入学生失败: " + e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,182 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.controller;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.net.URLDecoder;
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
|
||||||
import org.jeecg.common.api.vo.Result;
|
|
||||||
import org.jeecg.common.system.query.QueryGenerator;
|
|
||||||
import org.jeecg.common.system.query.QueryRuleEnum;
|
|
||||||
import org.jeecg.common.util.oConvertUtils;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolUserFollow;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolUserFollowService;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
|
|
||||||
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
||||||
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
||||||
import org.jeecgframework.poi.excel.entity.ImportParams;
|
|
||||||
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
||||||
import org.jeecg.common.system.base.controller.JeecgController;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
|
||||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
|
||||||
import com.alibaba.fastjson.JSON;
|
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
|
||||||
import org.jeecg.common.aspect.annotation.AutoLog;
|
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
||||||
/**
|
|
||||||
* @Description: 关注关系
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Tag(name="关注关系")
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/aiol/aiolUserFollow")
|
|
||||||
@Slf4j
|
|
||||||
public class AiolUserFollowController extends JeecgController<AiolUserFollow, IAiolUserFollowService> {
|
|
||||||
@Autowired
|
|
||||||
private IAiolUserFollowService aiolUserFollowService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分页列表查询
|
|
||||||
*
|
|
||||||
* @param aiolUserFollow
|
|
||||||
* @param pageNo
|
|
||||||
* @param pageSize
|
|
||||||
* @param req
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "关注关系-分页列表查询")
|
|
||||||
@Operation(summary="关注关系-分页列表查询")
|
|
||||||
@GetMapping(value = "/list")
|
|
||||||
public Result<IPage<AiolUserFollow>> queryPageList(AiolUserFollow aiolUserFollow,
|
|
||||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
||||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
||||||
HttpServletRequest req) {
|
|
||||||
|
|
||||||
|
|
||||||
QueryWrapper<AiolUserFollow> queryWrapper = QueryGenerator.initQueryWrapper(aiolUserFollow, req.getParameterMap());
|
|
||||||
Page<AiolUserFollow> page = new Page<AiolUserFollow>(pageNo, pageSize);
|
|
||||||
IPage<AiolUserFollow> pageList = aiolUserFollowService.page(page, queryWrapper);
|
|
||||||
return Result.OK(pageList);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加
|
|
||||||
*
|
|
||||||
* @param aiolUserFollow
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "关注关系-添加")
|
|
||||||
@Operation(summary="关注关系-添加")
|
|
||||||
@RequiresPermissions("aiol:aiol_user_follow:add")
|
|
||||||
@PostMapping(value = "/add")
|
|
||||||
public Result<String> add(@RequestBody AiolUserFollow aiolUserFollow) {
|
|
||||||
aiolUserFollowService.save(aiolUserFollow);
|
|
||||||
|
|
||||||
return Result.OK("添加成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑
|
|
||||||
*
|
|
||||||
* @param aiolUserFollow
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "关注关系-编辑")
|
|
||||||
@Operation(summary="关注关系-编辑")
|
|
||||||
@RequiresPermissions("aiol:aiol_user_follow:edit")
|
|
||||||
@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
||||||
public Result<String> edit(@RequestBody AiolUserFollow aiolUserFollow) {
|
|
||||||
aiolUserFollowService.updateById(aiolUserFollow);
|
|
||||||
return Result.OK("编辑成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id删除
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "关注关系-通过id删除")
|
|
||||||
@Operation(summary="关注关系-通过id删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_user_follow:delete")
|
|
||||||
@DeleteMapping(value = "/delete")
|
|
||||||
public Result<String> delete(@RequestParam(name="id",required=true) String id) {
|
|
||||||
aiolUserFollowService.removeById(id);
|
|
||||||
return Result.OK("删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
*
|
|
||||||
* @param ids
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@AutoLog(value = "关注关系-批量删除")
|
|
||||||
@Operation(summary="关注关系-批量删除")
|
|
||||||
@RequiresPermissions("aiol:aiol_user_follow:deleteBatch")
|
|
||||||
@DeleteMapping(value = "/deleteBatch")
|
|
||||||
public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
||||||
this.aiolUserFollowService.removeByIds(Arrays.asList(ids.split(",")));
|
|
||||||
return Result.OK("批量删除成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询
|
|
||||||
*
|
|
||||||
* @param id
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
//@AutoLog(value = "关注关系-通过id查询")
|
|
||||||
@Operation(summary="关注关系-通过id查询")
|
|
||||||
@GetMapping(value = "/queryById")
|
|
||||||
public Result<AiolUserFollow> queryById(@RequestParam(name="id",required=true) String id) {
|
|
||||||
AiolUserFollow aiolUserFollow = aiolUserFollowService.getById(id);
|
|
||||||
if(aiolUserFollow==null) {
|
|
||||||
return Result.error("未找到对应数据");
|
|
||||||
}
|
|
||||||
return Result.OK(aiolUserFollow);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出excel
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param aiolUserFollow
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_user_follow:exportXls")
|
|
||||||
@RequestMapping(value = "/exportXls")
|
|
||||||
public ModelAndView exportXls(HttpServletRequest request, AiolUserFollow aiolUserFollow) {
|
|
||||||
return super.exportXls(request, aiolUserFollow, AiolUserFollow.class, "关注关系");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过excel导入数据
|
|
||||||
*
|
|
||||||
* @param request
|
|
||||||
* @param response
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@RequiresPermissions("aiol:aiol_user_follow:importExcel")
|
|
||||||
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
||||||
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
||||||
return super.importExcel(request, response, AiolUserFollow.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.entity;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
||||||
import org.jeecg.common.constant.ProvinceCityArea;
|
|
||||||
import org.jeecg.common.util.SpringContextUtils;
|
|
||||||
import lombok.Data;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
|
||||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
||||||
import org.jeecg.common.aspect.annotation.Dict;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@TableName("aiol_chat")
|
|
||||||
@Accessors(chain = true)
|
|
||||||
@EqualsAndHashCode(callSuper = false)
|
|
||||||
@Schema(description="会话")
|
|
||||||
public class AiolChat implements Serializable {
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
/**主键*/
|
|
||||||
@TableId(type = IdType.ASSIGN_ID)
|
|
||||||
@Schema(description = "主键")
|
|
||||||
private java.lang.String id;
|
|
||||||
/**会话类型*/
|
|
||||||
@Excel(name = "会话类型", width = 15)
|
|
||||||
@Schema(description = "会话类型")
|
|
||||||
private java.lang.Integer type;
|
|
||||||
/**群聊名称*/
|
|
||||||
@Excel(name = "群聊名称", width = 15)
|
|
||||||
@Schema(description = "群聊名称")
|
|
||||||
private java.lang.String name;
|
|
||||||
/**群聊头像*/
|
|
||||||
@Excel(name = "群聊头像", width = 15)
|
|
||||||
@Schema(description = "群聊头像")
|
|
||||||
private java.lang.String avatar;
|
|
||||||
/**关联id*/
|
|
||||||
@Excel(name = "关联id", width = 15)
|
|
||||||
@Schema(description = "关联id")
|
|
||||||
private java.lang.String refId;
|
|
||||||
/**是否全员禁言*/
|
|
||||||
@Excel(name = "是否全员禁言", width = 15)
|
|
||||||
@Schema(description = "是否全员禁言")
|
|
||||||
private java.lang.Integer izAllMuted;
|
|
||||||
/**是否显示教师标签*/
|
|
||||||
@Excel(name = "是否显示教师标签", width = 15)
|
|
||||||
@Schema(description = "是否显示教师标签")
|
|
||||||
private java.lang.Integer showLabel;
|
|
||||||
/**创建人*/
|
|
||||||
@Schema(description = "创建人")
|
|
||||||
private java.lang.String createBy;
|
|
||||||
/**创建日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "创建日期")
|
|
||||||
private java.util.Date createTime;
|
|
||||||
/**更新人*/
|
|
||||||
@Schema(description = "更新人")
|
|
||||||
private java.lang.String updateBy;
|
|
||||||
/**更新日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "更新日期")
|
|
||||||
private java.util.Date updateTime;
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.entity;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
||||||
import org.jeecg.common.constant.ProvinceCityArea;
|
|
||||||
import org.jeecg.common.util.SpringContextUtils;
|
|
||||||
import lombok.Data;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
|
||||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
||||||
import org.jeecg.common.aspect.annotation.Dict;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话用户
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@TableName("aiol_chat_member")
|
|
||||||
@Accessors(chain = true)
|
|
||||||
@EqualsAndHashCode(callSuper = false)
|
|
||||||
@Schema(description="会话用户")
|
|
||||||
public class AiolChatMember implements Serializable {
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
/**主键*/
|
|
||||||
@TableId(type = IdType.ASSIGN_ID)
|
|
||||||
@Schema(description = "主键")
|
|
||||||
private java.lang.String id;
|
|
||||||
/**会话id*/
|
|
||||||
@Excel(name = "会话id", width = 15)
|
|
||||||
@Schema(description = "会话id")
|
|
||||||
private java.lang.String chatId;
|
|
||||||
/**用户id*/
|
|
||||||
@Excel(name = "用户id", width = 15)
|
|
||||||
@Schema(description = "用户id")
|
|
||||||
private java.lang.String userId;
|
|
||||||
/**成员角色*/
|
|
||||||
@Excel(name = "成员角色", width = 15)
|
|
||||||
@Schema(description = "成员角色")
|
|
||||||
private java.lang.Integer role;
|
|
||||||
/**是否禁言*/
|
|
||||||
@Excel(name = "是否禁言", width = 15)
|
|
||||||
@Schema(description = "是否禁言")
|
|
||||||
private java.lang.Integer izMuted;
|
|
||||||
/**是否免打扰*/
|
|
||||||
@Excel(name = "是否免打扰", width = 15)
|
|
||||||
@Schema(description = "是否免打扰")
|
|
||||||
private java.lang.Integer izNotDisturb;
|
|
||||||
/**最后已读消息id*/
|
|
||||||
@Excel(name = "最后已读消息id", width = 15)
|
|
||||||
@Schema(description = "最后已读消息id")
|
|
||||||
private java.lang.Integer lastReadMsgId;
|
|
||||||
/**创建人*/
|
|
||||||
@Schema(description = "创建人")
|
|
||||||
private java.lang.String createBy;
|
|
||||||
/**创建日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "创建日期")
|
|
||||||
private java.util.Date createTime;
|
|
||||||
/**更新人*/
|
|
||||||
@Schema(description = "更新人")
|
|
||||||
private java.lang.String updateBy;
|
|
||||||
/**更新日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "更新日期")
|
|
||||||
private java.util.Date updateTime;
|
|
||||||
}
|
|
@ -1,88 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.entity;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
||||||
import org.jeecg.common.constant.ProvinceCityArea;
|
|
||||||
import org.jeecg.common.util.SpringContextUtils;
|
|
||||||
import lombok.Data;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
|
||||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
||||||
import org.jeecg.common.aspect.annotation.Dict;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话消息
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@TableName("aiol_chat_message")
|
|
||||||
@Accessors(chain = true)
|
|
||||||
@EqualsAndHashCode(callSuper = false)
|
|
||||||
@Schema(description="会话消息")
|
|
||||||
public class AiolChatMessage implements Serializable {
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
/**主键*/
|
|
||||||
@TableId(type = IdType.ASSIGN_ID)
|
|
||||||
@Schema(description = "主键")
|
|
||||||
private java.lang.String id;
|
|
||||||
/**会话id*/
|
|
||||||
@Excel(name = "会话id", width = 15)
|
|
||||||
@Schema(description = "会话id")
|
|
||||||
private java.lang.String chatId;
|
|
||||||
/**发送者id*/
|
|
||||||
@Excel(name = "发送者id", width = 15)
|
|
||||||
@Schema(description = "发送者id")
|
|
||||||
private java.lang.String senderId;
|
|
||||||
/**内容*/
|
|
||||||
@Excel(name = "内容", width = 15)
|
|
||||||
@Schema(description = "内容")
|
|
||||||
private java.lang.String content;
|
|
||||||
/**消息类型*/
|
|
||||||
@Excel(name = "消息类型", width = 15)
|
|
||||||
@Schema(description = "消息类型")
|
|
||||||
private java.lang.Integer messageType;
|
|
||||||
/**状态*/
|
|
||||||
@Excel(name = "状态", width = 15)
|
|
||||||
@Schema(description = "状态")
|
|
||||||
private java.lang.Integer status;
|
|
||||||
/**文件url*/
|
|
||||||
@Excel(name = "文件url", width = 15)
|
|
||||||
@Schema(description = "文件url")
|
|
||||||
private java.lang.String fileUrl;
|
|
||||||
/**文件名*/
|
|
||||||
@Excel(name = "文件名", width = 15)
|
|
||||||
@Schema(description = "文件名")
|
|
||||||
private java.lang.String fileName;
|
|
||||||
/**文件大小*/
|
|
||||||
@Excel(name = "文件大小", width = 15)
|
|
||||||
@Schema(description = "文件大小")
|
|
||||||
private java.lang.String fileSize;
|
|
||||||
/**创建人*/
|
|
||||||
@Schema(description = "创建人")
|
|
||||||
private java.lang.String createBy;
|
|
||||||
/**创建日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "创建日期")
|
|
||||||
private java.util.Date createTime;
|
|
||||||
/**更新人*/
|
|
||||||
@Schema(description = "更新人")
|
|
||||||
private java.lang.String updateBy;
|
|
||||||
/**更新日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "更新日期")
|
|
||||||
private java.util.Date updateTime;
|
|
||||||
}
|
|
@ -20,22 +20,22 @@ import lombok.EqualsAndHashCode;
|
|||||||
import lombok.experimental.Accessors;
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Description: aiol_class
|
* @Description: 班级
|
||||||
* @Author: jeecg-boot
|
* @Author: jeecg-boot
|
||||||
* @Date: 2025-09-11
|
* @Date: 2025-09-04
|
||||||
* @Version: V1.0
|
* @Version: V1.0
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@TableName("aiol_class")
|
@TableName("aiol_class")
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@Schema(description="aiol_class")
|
@Schema(description="班级")
|
||||||
public class AiolClass implements Serializable {
|
public class AiolClass implements Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**id*/
|
/**主键*/
|
||||||
@TableId(type = IdType.ASSIGN_ID)
|
@TableId(type = IdType.ASSIGN_ID)
|
||||||
@Schema(description = "id")
|
@Schema(description = "主键")
|
||||||
private java.lang.String id;
|
private java.lang.String id;
|
||||||
/**班级名*/
|
/**班级名*/
|
||||||
@Excel(name = "班级名", width = 15)
|
@Excel(name = "班级名", width = 15)
|
||||||
@ -45,10 +45,6 @@ public class AiolClass implements Serializable {
|
|||||||
@Excel(name = "课程id", width = 15)
|
@Excel(name = "课程id", width = 15)
|
||||||
@Schema(description = "课程id")
|
@Schema(description = "课程id")
|
||||||
private java.lang.String courseId;
|
private java.lang.String courseId;
|
||||||
/**邀请码*/
|
|
||||||
@Excel(name = "邀请码", width = 15)
|
|
||||||
@Schema(description = "邀请码")
|
|
||||||
private java.lang.String inviteCode;
|
|
||||||
/**创建人*/
|
/**创建人*/
|
||||||
@Schema(description = "创建人")
|
@Schema(description = "创建人")
|
||||||
private java.lang.String createBy;
|
private java.lang.String createBy;
|
||||||
|
@ -22,7 +22,7 @@ import lombok.experimental.Accessors;
|
|||||||
/**
|
/**
|
||||||
* @Description: 课程
|
* @Description: 课程
|
||||||
* @Author: jeecg-boot
|
* @Author: jeecg-boot
|
||||||
* @Date: 2025-09-11
|
* @Date: 2025-09-02
|
||||||
* @Version: V1.0
|
* @Version: V1.0
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@ -125,18 +125,6 @@ public class AiolCourse implements Serializable {
|
|||||||
@Excel(name = "是否ai伴学模式", width = 15)
|
@Excel(name = "是否ai伴学模式", width = 15)
|
||||||
@Schema(description = "是否ai伴学模式")
|
@Schema(description = "是否ai伴学模式")
|
||||||
private java.lang.Integer izAi;
|
private java.lang.Integer izAi;
|
||||||
/**离开页面是否暂停视频播放*/
|
|
||||||
@Excel(name = "离开页面是否暂停视频播放", width = 15)
|
|
||||||
@Schema(description = "离开页面是否暂停视频播放")
|
|
||||||
private java.lang.Integer pauseExit;
|
|
||||||
/**是否允许倍速播放*/
|
|
||||||
@Excel(name = "是否允许倍速播放", width = 15)
|
|
||||||
@Schema(description = "是否允许倍速播放")
|
|
||||||
private java.lang.Integer allowSpeed;
|
|
||||||
/**是否显示字幕*/
|
|
||||||
@Excel(name = "是否显示字幕", width = 15)
|
|
||||||
@Schema(description = "是否显示字幕")
|
|
||||||
private java.lang.Integer showSubtitle;
|
|
||||||
/**创建人*/
|
/**创建人*/
|
||||||
@Schema(description = "创建人")
|
@Schema(description = "创建人")
|
||||||
private java.lang.String createBy;
|
private java.lang.String createBy;
|
||||||
|
@ -1,64 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.entity;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
||||||
import org.jeecg.common.constant.ProvinceCityArea;
|
|
||||||
import org.jeecg.common.util.SpringContextUtils;
|
|
||||||
import lombok.Data;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
|
||||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
||||||
import org.jeecg.common.aspect.annotation.Dict;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 关注关系
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@TableName("aiol_user_follow")
|
|
||||||
@Accessors(chain = true)
|
|
||||||
@EqualsAndHashCode(callSuper = false)
|
|
||||||
@Schema(description="关注关系")
|
|
||||||
public class AiolUserFollow implements Serializable {
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
/**主键*/
|
|
||||||
@TableId(type = IdType.ASSIGN_ID)
|
|
||||||
@Schema(description = "主键")
|
|
||||||
private java.lang.String id;
|
|
||||||
/**关注者id*/
|
|
||||||
@Excel(name = "关注者id", width = 15)
|
|
||||||
@Schema(description = "关注者id")
|
|
||||||
private java.lang.String followerId;
|
|
||||||
/**被关注者id*/
|
|
||||||
@Excel(name = "被关注者id", width = 15)
|
|
||||||
@Schema(description = "被关注者id")
|
|
||||||
private java.lang.String followedId;
|
|
||||||
/**创建人*/
|
|
||||||
@Schema(description = "创建人")
|
|
||||||
private java.lang.String createBy;
|
|
||||||
/**创建日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "创建日期")
|
|
||||||
private java.util.Date createTime;
|
|
||||||
/**更新人*/
|
|
||||||
@Schema(description = "更新人")
|
|
||||||
private java.lang.String updateBy;
|
|
||||||
/**更新日期*/
|
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
||||||
@Schema(description = "更新日期")
|
|
||||||
private java.util.Date updateTime;
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.mapper;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.apache.ibatis.annotations.Param;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChat;
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface AiolChatMapper extends BaseMapper<AiolChat> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.mapper;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.apache.ibatis.annotations.Param;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMember;
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话用户
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface AiolChatMemberMapper extends BaseMapper<AiolChatMember> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.mapper;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.apache.ibatis.annotations.Param;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMessage;
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话消息
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface AiolChatMessageMapper extends BaseMapper<AiolChatMessage> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.mapper;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.apache.ibatis.annotations.Param;
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolUserFollow;
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 关注关系
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface AiolUserFollowMapper extends BaseMapper<AiolUserFollow> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
||||||
<mapper namespace="org.jeecg.modules.aiol.mapper.AiolChatMapper">
|
|
||||||
|
|
||||||
</mapper>
|
|
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
||||||
<mapper namespace="org.jeecg.modules.aiol.mapper.AiolChatMemberMapper">
|
|
||||||
|
|
||||||
</mapper>
|
|
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
||||||
<mapper namespace="org.jeecg.modules.aiol.mapper.AiolChatMessageMapper">
|
|
||||||
|
|
||||||
</mapper>
|
|
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
||||||
<mapper namespace="org.jeecg.modules.aiol.mapper.AiolUserFollowMapper">
|
|
||||||
|
|
||||||
</mapper>
|
|
@ -1,14 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMember;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话用户
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface IAiolChatMemberService extends IService<AiolChatMember> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMessage;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话消息
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface IAiolChatMessageService extends IService<AiolChatMessage> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChat;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface IAiolChatService extends IService<AiolChat> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolUserFollow;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 关注关系
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
public interface IAiolUserFollowService extends IService<AiolUserFollow> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service.impl;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMember;
|
|
||||||
import org.jeecg.modules.aiol.mapper.AiolChatMemberMapper;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolChatMemberService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话用户
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class AiolChatMemberServiceImpl extends ServiceImpl<AiolChatMemberMapper, AiolChatMember> implements IAiolChatMemberService {
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service.impl;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChatMessage;
|
|
||||||
import org.jeecg.modules.aiol.mapper.AiolChatMessageMapper;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolChatMessageService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话消息
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class AiolChatMessageServiceImpl extends ServiceImpl<AiolChatMessageMapper, AiolChatMessage> implements IAiolChatMessageService {
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service.impl;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolChat;
|
|
||||||
import org.jeecg.modules.aiol.mapper.AiolChatMapper;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolChatService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 会话
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class AiolChatServiceImpl extends ServiceImpl<AiolChatMapper, AiolChat> implements IAiolChatService {
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package org.jeecg.modules.aiol.service.impl;
|
|
||||||
|
|
||||||
import org.jeecg.modules.aiol.entity.AiolUserFollow;
|
|
||||||
import org.jeecg.modules.aiol.mapper.AiolUserFollowMapper;
|
|
||||||
import org.jeecg.modules.aiol.service.IAiolUserFollowService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: 关注关系
|
|
||||||
* @Author: jeecg-boot
|
|
||||||
* @Date: 2025-09-11
|
|
||||||
* @Version: V1.0
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class AiolUserFollowServiceImpl extends ServiceImpl<AiolUserFollowMapper, AiolUserFollow> implements IAiolUserFollowService {
|
|
||||||
|
|
||||||
}
|
|
@ -1,113 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack :backRouterName="backRouteName">
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">会话</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--表单区域-->
|
|
||||||
<view>
|
|
||||||
<form>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">会话类型:</text></view>
|
|
||||||
<input type="number" placeholder="请输入会话类型" v-model="model.type"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">群聊名称:</text></view>
|
|
||||||
<input placeholder="请输入群聊名称" v-model="model.name"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">群聊头像:</text></view>
|
|
||||||
<input placeholder="请输入群聊头像" v-model="model.avatar"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">关联id:</text></view>
|
|
||||||
<input placeholder="请输入关联id" v-model="model.refId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">是否全员禁言:</text></view>
|
|
||||||
<input type="number" placeholder="请输入是否全员禁言" v-model="model.izAllMuted"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">是否显示教师标签:</text></view>
|
|
||||||
<input type="number" placeholder="请输入是否显示教师标签" v-model="model.showLabel"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="padding">
|
|
||||||
<button class="cu-btn block bg-blue margin-tb-sm lg" @click="onSubmit">
|
|
||||||
<text v-if="loading" class="cuIcon-loading2 cuIconfont-spin"></text>提交
|
|
||||||
</button>
|
|
||||||
</view>
|
|
||||||
</form>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import myDate from '@/components/my-componets/my-date.vue'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "AiolChatForm",
|
|
||||||
components:{ myDate },
|
|
||||||
props:{
|
|
||||||
formData:{
|
|
||||||
type:Object,
|
|
||||||
default:()=>{},
|
|
||||||
required:false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data(){
|
|
||||||
return {
|
|
||||||
CustomBar: this.CustomBar,
|
|
||||||
NavBarColor: this.NavBarColor,
|
|
||||||
loading:false,
|
|
||||||
model: {},
|
|
||||||
backRouteName:'index',
|
|
||||||
url: {
|
|
||||||
queryById: "/aiol/aiolChat/queryById",
|
|
||||||
add: "/aiol/aiolChat/add",
|
|
||||||
edit: "/aiol/aiolChat/edit",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created(){
|
|
||||||
this.initFormData();
|
|
||||||
},
|
|
||||||
methods:{
|
|
||||||
initFormData(){
|
|
||||||
if(this.formData){
|
|
||||||
let dataId = this.formData.dataId;
|
|
||||||
this.$http.get(this.url.queryById,{params:{id:dataId}}).then((res)=>{
|
|
||||||
if(res.data.success){
|
|
||||||
console.log("表单数据",res);
|
|
||||||
this.model = res.data.result;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onSubmit() {
|
|
||||||
let myForm = {...this.model};
|
|
||||||
this.loading = true;
|
|
||||||
let url = myForm.id?this.url.edit:this.url.add;
|
|
||||||
this.$http.post(url,myForm).then(res=>{
|
|
||||||
console.log("res",res)
|
|
||||||
this.loading = false
|
|
||||||
this.$Router.push({name:this.backRouteName})
|
|
||||||
}).catch(()=>{
|
|
||||||
this.loading = false
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,44 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack>
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">会话</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--滚动加载列表-->
|
|
||||||
<mescroll-body ref="mescrollRef" bottom="88" @init="mescrollInit" :up="upOption" :down="downOption" @down="downCallback" @up="upCallback">
|
|
||||||
<view class="cu-list menu">
|
|
||||||
<view class="cu-item" v-for="(item,index) in list" :key="index" @click="goHome">
|
|
||||||
<view class="flex" style="width:100%">
|
|
||||||
<text class="text-lg" style="color: #000;">
|
|
||||||
{{ item.createBy}}
|
|
||||||
</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</mescroll-body>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
|
|
||||||
import Mixin from "@/common/mixin/Mixin.js";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: '会话',
|
|
||||||
mixins: [MescrollMixin,Mixin],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
CustomBar:this.CustomBar,
|
|
||||||
NavBarColor:this.NavBarColor,
|
|
||||||
url: "/aiol/aiolChat/list",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
goHome(){
|
|
||||||
this.$Router.push({name: "index"})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack :backRouterName="backRouteName">
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">会话用户</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--表单区域-->
|
|
||||||
<view>
|
|
||||||
<form>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">会话id:</text></view>
|
|
||||||
<input placeholder="请输入会话id" v-model="model.chatId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">用户id:</text></view>
|
|
||||||
<input placeholder="请输入用户id" v-model="model.userId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">成员角色:</text></view>
|
|
||||||
<input type="number" placeholder="请输入成员角色" v-model="model.role"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">是否禁言:</text></view>
|
|
||||||
<input type="number" placeholder="请输入是否禁言" v-model="model.izMuted"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">是否免打扰:</text></view>
|
|
||||||
<input type="number" placeholder="请输入是否免打扰" v-model="model.izNotDisturb"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">最后已读消息id:</text></view>
|
|
||||||
<input type="number" placeholder="请输入最后已读消息id" v-model="model.lastReadMsgId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="padding">
|
|
||||||
<button class="cu-btn block bg-blue margin-tb-sm lg" @click="onSubmit">
|
|
||||||
<text v-if="loading" class="cuIcon-loading2 cuIconfont-spin"></text>提交
|
|
||||||
</button>
|
|
||||||
</view>
|
|
||||||
</form>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import myDate from '@/components/my-componets/my-date.vue'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "AiolChatMemberForm",
|
|
||||||
components:{ myDate },
|
|
||||||
props:{
|
|
||||||
formData:{
|
|
||||||
type:Object,
|
|
||||||
default:()=>{},
|
|
||||||
required:false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data(){
|
|
||||||
return {
|
|
||||||
CustomBar: this.CustomBar,
|
|
||||||
NavBarColor: this.NavBarColor,
|
|
||||||
loading:false,
|
|
||||||
model: {},
|
|
||||||
backRouteName:'index',
|
|
||||||
url: {
|
|
||||||
queryById: "/aiol/aiolChatMember/queryById",
|
|
||||||
add: "/aiol/aiolChatMember/add",
|
|
||||||
edit: "/aiol/aiolChatMember/edit",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created(){
|
|
||||||
this.initFormData();
|
|
||||||
},
|
|
||||||
methods:{
|
|
||||||
initFormData(){
|
|
||||||
if(this.formData){
|
|
||||||
let dataId = this.formData.dataId;
|
|
||||||
this.$http.get(this.url.queryById,{params:{id:dataId}}).then((res)=>{
|
|
||||||
if(res.data.success){
|
|
||||||
console.log("表单数据",res);
|
|
||||||
this.model = res.data.result;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onSubmit() {
|
|
||||||
let myForm = {...this.model};
|
|
||||||
this.loading = true;
|
|
||||||
let url = myForm.id?this.url.edit:this.url.add;
|
|
||||||
this.$http.post(url,myForm).then(res=>{
|
|
||||||
console.log("res",res)
|
|
||||||
this.loading = false
|
|
||||||
this.$Router.push({name:this.backRouteName})
|
|
||||||
}).catch(()=>{
|
|
||||||
this.loading = false
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,44 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack>
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">会话用户</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--滚动加载列表-->
|
|
||||||
<mescroll-body ref="mescrollRef" bottom="88" @init="mescrollInit" :up="upOption" :down="downOption" @down="downCallback" @up="upCallback">
|
|
||||||
<view class="cu-list menu">
|
|
||||||
<view class="cu-item" v-for="(item,index) in list" :key="index" @click="goHome">
|
|
||||||
<view class="flex" style="width:100%">
|
|
||||||
<text class="text-lg" style="color: #000;">
|
|
||||||
{{ item.createBy}}
|
|
||||||
</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</mescroll-body>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
|
|
||||||
import Mixin from "@/common/mixin/Mixin.js";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: '会话用户',
|
|
||||||
mixins: [MescrollMixin,Mixin],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
CustomBar:this.CustomBar,
|
|
||||||
NavBarColor:this.NavBarColor,
|
|
||||||
url: "/aiol/aiolChatMember/list",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
goHome(){
|
|
||||||
this.$Router.push({name: "index"})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack :backRouterName="backRouteName">
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">会话消息</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--表单区域-->
|
|
||||||
<view>
|
|
||||||
<form>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">会话id:</text></view>
|
|
||||||
<input placeholder="请输入会话id" v-model="model.chatId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">发送者id:</text></view>
|
|
||||||
<input placeholder="请输入发送者id" v-model="model.senderId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">内容:</text></view>
|
|
||||||
<input placeholder="请输入内容" v-model="model.content"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">消息类型:</text></view>
|
|
||||||
<input type="number" placeholder="请输入消息类型" v-model="model.messageType"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">状态:</text></view>
|
|
||||||
<input type="number" placeholder="请输入状态" v-model="model.status"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">文件url:</text></view>
|
|
||||||
<input placeholder="请输入文件url" v-model="model.fileUrl"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">文件名:</text></view>
|
|
||||||
<input placeholder="请输入文件名" v-model="model.fileName"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">文件大小:</text></view>
|
|
||||||
<input placeholder="请输入文件大小" v-model="model.fileSize"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="padding">
|
|
||||||
<button class="cu-btn block bg-blue margin-tb-sm lg" @click="onSubmit">
|
|
||||||
<text v-if="loading" class="cuIcon-loading2 cuIconfont-spin"></text>提交
|
|
||||||
</button>
|
|
||||||
</view>
|
|
||||||
</form>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import myDate from '@/components/my-componets/my-date.vue'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "AiolChatMessageForm",
|
|
||||||
components:{ myDate },
|
|
||||||
props:{
|
|
||||||
formData:{
|
|
||||||
type:Object,
|
|
||||||
default:()=>{},
|
|
||||||
required:false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data(){
|
|
||||||
return {
|
|
||||||
CustomBar: this.CustomBar,
|
|
||||||
NavBarColor: this.NavBarColor,
|
|
||||||
loading:false,
|
|
||||||
model: {},
|
|
||||||
backRouteName:'index',
|
|
||||||
url: {
|
|
||||||
queryById: "/aiol/aiolChatMessage/queryById",
|
|
||||||
add: "/aiol/aiolChatMessage/add",
|
|
||||||
edit: "/aiol/aiolChatMessage/edit",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created(){
|
|
||||||
this.initFormData();
|
|
||||||
},
|
|
||||||
methods:{
|
|
||||||
initFormData(){
|
|
||||||
if(this.formData){
|
|
||||||
let dataId = this.formData.dataId;
|
|
||||||
this.$http.get(this.url.queryById,{params:{id:dataId}}).then((res)=>{
|
|
||||||
if(res.data.success){
|
|
||||||
console.log("表单数据",res);
|
|
||||||
this.model = res.data.result;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onSubmit() {
|
|
||||||
let myForm = {...this.model};
|
|
||||||
this.loading = true;
|
|
||||||
let url = myForm.id?this.url.edit:this.url.add;
|
|
||||||
this.$http.post(url,myForm).then(res=>{
|
|
||||||
console.log("res",res)
|
|
||||||
this.loading = false
|
|
||||||
this.$Router.push({name:this.backRouteName})
|
|
||||||
}).catch(()=>{
|
|
||||||
this.loading = false
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,44 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack>
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">会话消息</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--滚动加载列表-->
|
|
||||||
<mescroll-body ref="mescrollRef" bottom="88" @init="mescrollInit" :up="upOption" :down="downOption" @down="downCallback" @up="upCallback">
|
|
||||||
<view class="cu-list menu">
|
|
||||||
<view class="cu-item" v-for="(item,index) in list" :key="index" @click="goHome">
|
|
||||||
<view class="flex" style="width:100%">
|
|
||||||
<text class="text-lg" style="color: #000;">
|
|
||||||
{{ item.createBy}}
|
|
||||||
</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</mescroll-body>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
|
|
||||||
import Mixin from "@/common/mixin/Mixin.js";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: '会话消息',
|
|
||||||
mixins: [MescrollMixin,Mixin],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
CustomBar:this.CustomBar,
|
|
||||||
NavBarColor:this.NavBarColor,
|
|
||||||
url: "/aiol/aiolChatMessage/list",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
goHome(){
|
|
||||||
this.$Router.push({name: "index"})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
@ -1,89 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack :backRouterName="backRouteName">
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">关注关系</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--表单区域-->
|
|
||||||
<view>
|
|
||||||
<form>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">关注者id:</text></view>
|
|
||||||
<input placeholder="请输入关注者id" v-model="model.followerId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="cu-form-group">
|
|
||||||
<view class="flex align-center">
|
|
||||||
<view class="title"><text space="ensp">被关注者id:</text></view>
|
|
||||||
<input placeholder="请输入被关注者id" v-model="model.followedId"/>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="padding">
|
|
||||||
<button class="cu-btn block bg-blue margin-tb-sm lg" @click="onSubmit">
|
|
||||||
<text v-if="loading" class="cuIcon-loading2 cuIconfont-spin"></text>提交
|
|
||||||
</button>
|
|
||||||
</view>
|
|
||||||
</form>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import myDate from '@/components/my-componets/my-date.vue'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "AiolUserFollowForm",
|
|
||||||
components:{ myDate },
|
|
||||||
props:{
|
|
||||||
formData:{
|
|
||||||
type:Object,
|
|
||||||
default:()=>{},
|
|
||||||
required:false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data(){
|
|
||||||
return {
|
|
||||||
CustomBar: this.CustomBar,
|
|
||||||
NavBarColor: this.NavBarColor,
|
|
||||||
loading:false,
|
|
||||||
model: {},
|
|
||||||
backRouteName:'index',
|
|
||||||
url: {
|
|
||||||
queryById: "/aiol/aiolUserFollow/queryById",
|
|
||||||
add: "/aiol/aiolUserFollow/add",
|
|
||||||
edit: "/aiol/aiolUserFollow/edit",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created(){
|
|
||||||
this.initFormData();
|
|
||||||
},
|
|
||||||
methods:{
|
|
||||||
initFormData(){
|
|
||||||
if(this.formData){
|
|
||||||
let dataId = this.formData.dataId;
|
|
||||||
this.$http.get(this.url.queryById,{params:{id:dataId}}).then((res)=>{
|
|
||||||
if(res.data.success){
|
|
||||||
console.log("表单数据",res);
|
|
||||||
this.model = res.data.result;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onSubmit() {
|
|
||||||
let myForm = {...this.model};
|
|
||||||
this.loading = true;
|
|
||||||
let url = myForm.id?this.url.edit:this.url.add;
|
|
||||||
this.$http.post(url,myForm).then(res=>{
|
|
||||||
console.log("res",res)
|
|
||||||
this.loading = false
|
|
||||||
this.$Router.push({name:this.backRouteName})
|
|
||||||
}).catch(()=>{
|
|
||||||
this.loading = false
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,44 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view>
|
|
||||||
<!--标题和返回-->
|
|
||||||
<cu-custom :bgColor="NavBarColor" isBack>
|
|
||||||
<block slot="backText">返回</block>
|
|
||||||
<block slot="content">关注关系</block>
|
|
||||||
</cu-custom>
|
|
||||||
<!--滚动加载列表-->
|
|
||||||
<mescroll-body ref="mescrollRef" bottom="88" @init="mescrollInit" :up="upOption" :down="downOption" @down="downCallback" @up="upCallback">
|
|
||||||
<view class="cu-list menu">
|
|
||||||
<view class="cu-item" v-for="(item,index) in list" :key="index" @click="goHome">
|
|
||||||
<view class="flex" style="width:100%">
|
|
||||||
<text class="text-lg" style="color: #000;">
|
|
||||||
{{ item.createBy}}
|
|
||||||
</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</mescroll-body>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
|
|
||||||
import Mixin from "@/common/mixin/Mixin.js";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: '关注关系',
|
|
||||||
mixins: [MescrollMixin,Mixin],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
CustomBar:this.CustomBar,
|
|
||||||
NavBarColor:this.NavBarColor,
|
|
||||||
url: "/aiol/aiolUserFollow/list",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
goHome(){
|
|
||||||
this.$Router.push({name: "index"})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
|||||||
import { render } from '@/common/renderUtils';
|
|
||||||
//列表数据
|
|
||||||
export const columns = [
|
|
||||||
{
|
|
||||||
title: '会话类型',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'type'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '群聊名称',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'name'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '群聊头像',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'avatar'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '关联id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'refId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否全员禁言',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izAllMuted'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否显示教师标签',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'showLabel'
|
|
||||||
},
|
|
||||||
];
|
|
@ -1,277 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
navigationBarTitleText: '会话',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout :navTitle="navTitle" :backRouteName="backRouteName">
|
|
||||||
<scroll-view class="scrollArea" scroll-y>
|
|
||||||
<view class="form-container">
|
|
||||||
<wd-form ref="form" :model="myFormData">
|
|
||||||
<wd-cell-group border>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['type']"
|
|
||||||
:label="get4Label('会话类型')"
|
|
||||||
name='type'
|
|
||||||
prop='type'
|
|
||||||
placeholder="请选择会话类型"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['name']"
|
|
||||||
:label="get4Label('群聊名称')"
|
|
||||||
name='name'
|
|
||||||
prop='name'
|
|
||||||
placeholder="请选择群聊名称"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['avatar']"
|
|
||||||
:label="get4Label('群聊头像')"
|
|
||||||
name='avatar'
|
|
||||||
prop='avatar'
|
|
||||||
placeholder="请选择群聊头像"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['refId']"
|
|
||||||
:label="get4Label('关联id')"
|
|
||||||
name='refId'
|
|
||||||
prop='refId'
|
|
||||||
placeholder="请选择关联id"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['izAllMuted']"
|
|
||||||
:label="get4Label('是否全员禁言')"
|
|
||||||
name='izAllMuted'
|
|
||||||
prop='izAllMuted'
|
|
||||||
placeholder="请选择是否全员禁言"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['showLabel']"
|
|
||||||
:label="get4Label('是否显示教师标签')"
|
|
||||||
name='showLabel'
|
|
||||||
prop='showLabel'
|
|
||||||
placeholder="请选择是否显示教师标签"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
</wd-cell-group>
|
|
||||||
</wd-form>
|
|
||||||
</view>
|
|
||||||
</scroll-view>
|
|
||||||
<view class="footer">
|
|
||||||
<wd-button :disabled="loading" block :loading="loading" @click="handleSubmit">提交</wd-button>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { onLoad } from '@dcloudio/uni-app'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import { useToast } from 'wot-design-uni'
|
|
||||||
import { useRouter } from '@/plugin/uni-mini-router'
|
|
||||||
import { ref, onMounted, computed,reactive } from 'vue'
|
|
||||||
import OnlineImage from '@/components/online/view/online-image.vue'
|
|
||||||
import OnlineFile from '@/components/online/view/online-file.vue'
|
|
||||||
import OnlineFileCustom from '@/components/online/view/online-file-custom.vue'
|
|
||||||
import OnlineSelect from '@/components/online/view/online-select.vue'
|
|
||||||
import OnlineTime from '@/components/online/view/online-time.vue'
|
|
||||||
import OnlineDate from '@/components/online/view/online-date.vue'
|
|
||||||
import OnlineRadio from '@/components/online/view/online-radio.vue'
|
|
||||||
import OnlineCheckbox from '@/components/online/view/online-checkbox.vue'
|
|
||||||
import OnlineMulti from '@/components/online/view/online-multi.vue'
|
|
||||||
import OnlinePopupLinkRecord from '@/components/online/view/online-popup-link-record.vue'
|
|
||||||
import OnlinePca from '@/components/online/view/online-pca.vue'
|
|
||||||
import SelectDept from '@/components/SelectDept/SelectDept.vue'
|
|
||||||
import SelectUser from '@/components/SelectUser/SelectUser.vue'
|
|
||||||
import {duplicateCheck} from "@/service/api";
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolChatForm',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
const toast = useToast()
|
|
||||||
const router = useRouter()
|
|
||||||
const form = ref(null)
|
|
||||||
// 定义响应式数据
|
|
||||||
const myFormData = reactive({})
|
|
||||||
const loading = ref(false)
|
|
||||||
const navTitle = ref('新增')
|
|
||||||
const dataId = ref('')
|
|
||||||
const backRouteName = ref('AiolChatList')
|
|
||||||
// 定义 initForm 方法
|
|
||||||
const initForm = (item) => {
|
|
||||||
console.log('initForm item', item)
|
|
||||||
if(item?.dataId){
|
|
||||||
dataId.value = item.dataId;
|
|
||||||
navTitle.value = item.dataId?'编辑':'新增';
|
|
||||||
initData();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 初始化数据
|
|
||||||
const initData = () => {
|
|
||||||
http.get("/aiol/aiolChat/queryById",{id:dataId.value}).then((res) => {
|
|
||||||
if (res.success) {
|
|
||||||
let obj = res.result
|
|
||||||
Object.assign(myFormData, { ...obj })
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单加载失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const handleSuccess = () => {
|
|
||||||
uni.$emit('refreshList');
|
|
||||||
router.back()
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 校验唯一
|
|
||||||
* @param values
|
|
||||||
* @returns {boolean}
|
|
||||||
*/
|
|
||||||
async function fieldCheck(values: any) {
|
|
||||||
const onlyField = [
|
|
||||||
];
|
|
||||||
for (const field of onlyField) {
|
|
||||||
if (values[field]) {
|
|
||||||
// 仅校验有值的字段
|
|
||||||
const res: any = await duplicateCheck({
|
|
||||||
tableName: 'aiol_chat',
|
|
||||||
fieldName: field, // 使用处理后的字段名
|
|
||||||
fieldVal: values[field],
|
|
||||||
dataId: values.id,
|
|
||||||
});
|
|
||||||
if (!res.success) {
|
|
||||||
toast.warning(res.message);
|
|
||||||
return true; // 校验失败
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false; // 校验通过
|
|
||||||
}
|
|
||||||
// 提交表单
|
|
||||||
const handleSubmit = async () => {
|
|
||||||
// 判断字段必填和正则
|
|
||||||
if (await fieldCheck(myFormData)) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let url = dataId.value?'/aiol/aiolChat/edit':'/aiol/aiolChat/add';
|
|
||||||
form.value
|
|
||||||
.validate()
|
|
||||||
.then(({ valid, errors }) => {
|
|
||||||
if (valid) {
|
|
||||||
loading.value = true;
|
|
||||||
http.post(url,myFormData).then((res) => {
|
|
||||||
loading.value = false;
|
|
||||||
if (res.success) {
|
|
||||||
toast.success('保存成功');
|
|
||||||
handleSuccess()
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单保存失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch((error) => {
|
|
||||||
console.log(error, 'error')
|
|
||||||
loading.value = false;
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 标题
|
|
||||||
const get4Label = computed(() => {
|
|
||||||
return (label) => {
|
|
||||||
return label && label.length > 4 ? label.substring(0, 4) : label;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// 标题
|
|
||||||
const getFormSchema = computed(() => {
|
|
||||||
return (dictTable,dictCode,dictText) => {
|
|
||||||
return {
|
|
||||||
dictCode,
|
|
||||||
dictTable,
|
|
||||||
dictText
|
|
||||||
};
|
|
||||||
}
|
|
||||||
})
|
|
||||||
/**
|
|
||||||
* 获取日期控件的扩展类型
|
|
||||||
* @param picker
|
|
||||||
* @returns {string}
|
|
||||||
*/
|
|
||||||
const getDateExtendType = (picker: string) => {
|
|
||||||
let mapField = {
|
|
||||||
month: 'year-month',
|
|
||||||
year: 'year',
|
|
||||||
quarter: 'quarter',
|
|
||||||
week: 'week',
|
|
||||||
day: 'date',
|
|
||||||
}
|
|
||||||
return picker && mapField[picker]
|
|
||||||
? mapField[picker]
|
|
||||||
: 'date'
|
|
||||||
}
|
|
||||||
//设置pop返回值
|
|
||||||
const setFieldsValue = (data) => {
|
|
||||||
Object.assign(myFormData, {...data })
|
|
||||||
}
|
|
||||||
// onLoad 生命周期钩子
|
|
||||||
onLoad((option) => {
|
|
||||||
initForm(option)
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.footer {
|
|
||||||
width: 100%;
|
|
||||||
padding: 10px 20px;
|
|
||||||
padding-bottom: calc(constant(safe-area-inset-bottom) + 10px);
|
|
||||||
padding-bottom: calc(env(safe-area-inset-bottom) + 10px);
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__label) {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__value) {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,148 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationBarTitleText: '会话',
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout navTitle="会话" backRouteName="index" routeMethod="pushTab">
|
|
||||||
<view class="wrap">
|
|
||||||
<z-paging
|
|
||||||
ref="paging"
|
|
||||||
:fixed="false"
|
|
||||||
v-model="dataList"
|
|
||||||
@query="queryList"
|
|
||||||
:default-page-size="15"
|
|
||||||
>
|
|
||||||
<template v-for="item in dataList" :key="item.id">
|
|
||||||
<wd-swipe-action>
|
|
||||||
<view class="list" @click="handleEdit(item)">
|
|
||||||
<template v-for="(cItem, cIndex) in columns" :key="cIndex">
|
|
||||||
<view v-if="cIndex < 3" class="box" :style="getBoxStyle">
|
|
||||||
<view class="field ellipsis">{{ cItem.title }}</view>
|
|
||||||
<view class="value cu-text-grey">{{ item[cItem.dataIndex] }}</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</view>
|
|
||||||
<template #right>
|
|
||||||
<view class="action">
|
|
||||||
<view class="button" @click="handleAction('del', item)">删除</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</wd-swipe-action>
|
|
||||||
</template>
|
|
||||||
</z-paging>
|
|
||||||
<view class="add u-iconfont u-icon-add" @click="handleAdd"></view>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
|
||||||
import { ref, onMounted, computed } from 'vue'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import usePageList from '@/hooks/usePageList'
|
|
||||||
import {columns} from './AiolChatData';
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolChatList',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
//分页加载配置
|
|
||||||
let { toast, router, paging, dataList, queryList } = usePageList('/aiol/aiolChat/list');
|
|
||||||
|
|
||||||
//样式
|
|
||||||
const getBoxStyle = computed(() => {
|
|
||||||
return { width: "calc(33% - 5px)" }
|
|
||||||
})
|
|
||||||
|
|
||||||
// 其他操作
|
|
||||||
const handleAction = (val, item) => {
|
|
||||||
if (val == 'del') {
|
|
||||||
http.delete("/aiol/aiolChat/delete?id="+item.id,{id:item.id}).then((res) => {
|
|
||||||
toast.success('删除成功~')
|
|
||||||
paging.value.reload()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// go 新增页
|
|
||||||
const handleAdd = () => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolChatForm'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//go 编辑页
|
|
||||||
const handleEdit = (record) => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolChatForm',
|
|
||||||
params: {dataId: record.id},
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
// 监听刷新列表事件
|
|
||||||
uni.$on('refreshList', () => {
|
|
||||||
queryList(1,10)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.wrap {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
:deep(.wd-swipe-action) {
|
|
||||||
margin-top: 10px;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.list {
|
|
||||||
padding: 10px 10px;
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
.box {
|
|
||||||
width: 33%;
|
|
||||||
.field {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.action {
|
|
||||||
width: 60px;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
.button {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex: 1;
|
|
||||||
height: 100%;
|
|
||||||
color: #fff;
|
|
||||||
&:first-child {
|
|
||||||
background-color: #fa4350;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.add {
|
|
||||||
height: 70upx;
|
|
||||||
width: 70upx;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 70upx;
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 80upx;
|
|
||||||
right: 30upx;
|
|
||||||
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,34 +0,0 @@
|
|||||||
import { render } from '@/common/renderUtils';
|
|
||||||
//列表数据
|
|
||||||
export const columns = [
|
|
||||||
{
|
|
||||||
title: '会话id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'chatId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '用户id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'userId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '成员角色',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'role'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否禁言',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izMuted'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否免打扰',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izNotDisturb'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '最后已读消息id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'lastReadMsgId'
|
|
||||||
},
|
|
||||||
];
|
|
@ -1,278 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
navigationBarTitleText: '会话用户',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout :navTitle="navTitle" :backRouteName="backRouteName">
|
|
||||||
<scroll-view class="scrollArea" scroll-y>
|
|
||||||
<view class="form-container">
|
|
||||||
<wd-form ref="form" :model="myFormData">
|
|
||||||
<wd-cell-group border>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['chatId']"
|
|
||||||
:label="get4Label('会话id')"
|
|
||||||
name='chatId'
|
|
||||||
prop='chatId'
|
|
||||||
placeholder="请选择会话id"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['userId']"
|
|
||||||
:label="get4Label('用户id')"
|
|
||||||
name='userId'
|
|
||||||
prop='userId'
|
|
||||||
placeholder="请选择用户id"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['role']"
|
|
||||||
:label="get4Label('成员角色')"
|
|
||||||
name='role'
|
|
||||||
prop='role'
|
|
||||||
placeholder="请选择成员角色"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['izMuted']"
|
|
||||||
:label="get4Label('是否禁言')"
|
|
||||||
name='izMuted'
|
|
||||||
prop='izMuted'
|
|
||||||
placeholder="请选择是否禁言"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['izNotDisturb']"
|
|
||||||
:label="get4Label('是否免打扰')"
|
|
||||||
name='izNotDisturb'
|
|
||||||
prop='izNotDisturb'
|
|
||||||
placeholder="请选择是否免打扰"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['lastReadMsgId']"
|
|
||||||
:label="get4Label('最后已读消息id')"
|
|
||||||
name='lastReadMsgId'
|
|
||||||
prop='lastReadMsgId'
|
|
||||||
placeholder="请选择最后已读消息id"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
</wd-cell-group>
|
|
||||||
</wd-form>
|
|
||||||
</view>
|
|
||||||
</scroll-view>
|
|
||||||
<view class="footer">
|
|
||||||
<wd-button :disabled="loading" block :loading="loading" @click="handleSubmit">提交</wd-button>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { onLoad } from '@dcloudio/uni-app'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import { useToast } from 'wot-design-uni'
|
|
||||||
import { useRouter } from '@/plugin/uni-mini-router'
|
|
||||||
import { ref, onMounted, computed,reactive } from 'vue'
|
|
||||||
import OnlineImage from '@/components/online/view/online-image.vue'
|
|
||||||
import OnlineFile from '@/components/online/view/online-file.vue'
|
|
||||||
import OnlineFileCustom from '@/components/online/view/online-file-custom.vue'
|
|
||||||
import OnlineSelect from '@/components/online/view/online-select.vue'
|
|
||||||
import OnlineTime from '@/components/online/view/online-time.vue'
|
|
||||||
import OnlineDate from '@/components/online/view/online-date.vue'
|
|
||||||
import OnlineRadio from '@/components/online/view/online-radio.vue'
|
|
||||||
import OnlineCheckbox from '@/components/online/view/online-checkbox.vue'
|
|
||||||
import OnlineMulti from '@/components/online/view/online-multi.vue'
|
|
||||||
import OnlinePopupLinkRecord from '@/components/online/view/online-popup-link-record.vue'
|
|
||||||
import OnlinePca from '@/components/online/view/online-pca.vue'
|
|
||||||
import SelectDept from '@/components/SelectDept/SelectDept.vue'
|
|
||||||
import SelectUser from '@/components/SelectUser/SelectUser.vue'
|
|
||||||
import {duplicateCheck} from "@/service/api";
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolChatMemberForm',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
const toast = useToast()
|
|
||||||
const router = useRouter()
|
|
||||||
const form = ref(null)
|
|
||||||
// 定义响应式数据
|
|
||||||
const myFormData = reactive({})
|
|
||||||
const loading = ref(false)
|
|
||||||
const navTitle = ref('新增')
|
|
||||||
const dataId = ref('')
|
|
||||||
const backRouteName = ref('AiolChatMemberList')
|
|
||||||
// 定义 initForm 方法
|
|
||||||
const initForm = (item) => {
|
|
||||||
console.log('initForm item', item)
|
|
||||||
if(item?.dataId){
|
|
||||||
dataId.value = item.dataId;
|
|
||||||
navTitle.value = item.dataId?'编辑':'新增';
|
|
||||||
initData();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 初始化数据
|
|
||||||
const initData = () => {
|
|
||||||
http.get("/aiol/aiolChatMember/queryById",{id:dataId.value}).then((res) => {
|
|
||||||
if (res.success) {
|
|
||||||
let obj = res.result
|
|
||||||
Object.assign(myFormData, { ...obj })
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单加载失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const handleSuccess = () => {
|
|
||||||
uni.$emit('refreshList');
|
|
||||||
router.back()
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 校验唯一
|
|
||||||
* @param values
|
|
||||||
* @returns {boolean}
|
|
||||||
*/
|
|
||||||
async function fieldCheck(values: any) {
|
|
||||||
const onlyField = [
|
|
||||||
];
|
|
||||||
for (const field of onlyField) {
|
|
||||||
if (values[field]) {
|
|
||||||
// 仅校验有值的字段
|
|
||||||
const res: any = await duplicateCheck({
|
|
||||||
tableName: 'aiol_chat_member',
|
|
||||||
fieldName: field, // 使用处理后的字段名
|
|
||||||
fieldVal: values[field],
|
|
||||||
dataId: values.id,
|
|
||||||
});
|
|
||||||
if (!res.success) {
|
|
||||||
toast.warning(res.message);
|
|
||||||
return true; // 校验失败
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false; // 校验通过
|
|
||||||
}
|
|
||||||
// 提交表单
|
|
||||||
const handleSubmit = async () => {
|
|
||||||
// 判断字段必填和正则
|
|
||||||
if (await fieldCheck(myFormData)) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let url = dataId.value?'/aiol/aiolChatMember/edit':'/aiol/aiolChatMember/add';
|
|
||||||
form.value
|
|
||||||
.validate()
|
|
||||||
.then(({ valid, errors }) => {
|
|
||||||
if (valid) {
|
|
||||||
loading.value = true;
|
|
||||||
http.post(url,myFormData).then((res) => {
|
|
||||||
loading.value = false;
|
|
||||||
if (res.success) {
|
|
||||||
toast.success('保存成功');
|
|
||||||
handleSuccess()
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单保存失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch((error) => {
|
|
||||||
console.log(error, 'error')
|
|
||||||
loading.value = false;
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 标题
|
|
||||||
const get4Label = computed(() => {
|
|
||||||
return (label) => {
|
|
||||||
return label && label.length > 4 ? label.substring(0, 4) : label;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// 标题
|
|
||||||
const getFormSchema = computed(() => {
|
|
||||||
return (dictTable,dictCode,dictText) => {
|
|
||||||
return {
|
|
||||||
dictCode,
|
|
||||||
dictTable,
|
|
||||||
dictText
|
|
||||||
};
|
|
||||||
}
|
|
||||||
})
|
|
||||||
/**
|
|
||||||
* 获取日期控件的扩展类型
|
|
||||||
* @param picker
|
|
||||||
* @returns {string}
|
|
||||||
*/
|
|
||||||
const getDateExtendType = (picker: string) => {
|
|
||||||
let mapField = {
|
|
||||||
month: 'year-month',
|
|
||||||
year: 'year',
|
|
||||||
quarter: 'quarter',
|
|
||||||
week: 'week',
|
|
||||||
day: 'date',
|
|
||||||
}
|
|
||||||
return picker && mapField[picker]
|
|
||||||
? mapField[picker]
|
|
||||||
: 'date'
|
|
||||||
}
|
|
||||||
//设置pop返回值
|
|
||||||
const setFieldsValue = (data) => {
|
|
||||||
Object.assign(myFormData, {...data })
|
|
||||||
}
|
|
||||||
// onLoad 生命周期钩子
|
|
||||||
onLoad((option) => {
|
|
||||||
initForm(option)
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.footer {
|
|
||||||
width: 100%;
|
|
||||||
padding: 10px 20px;
|
|
||||||
padding-bottom: calc(constant(safe-area-inset-bottom) + 10px);
|
|
||||||
padding-bottom: calc(env(safe-area-inset-bottom) + 10px);
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__label) {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__value) {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,148 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationBarTitleText: '会话用户',
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout navTitle="会话用户" backRouteName="index" routeMethod="pushTab">
|
|
||||||
<view class="wrap">
|
|
||||||
<z-paging
|
|
||||||
ref="paging"
|
|
||||||
:fixed="false"
|
|
||||||
v-model="dataList"
|
|
||||||
@query="queryList"
|
|
||||||
:default-page-size="15"
|
|
||||||
>
|
|
||||||
<template v-for="item in dataList" :key="item.id">
|
|
||||||
<wd-swipe-action>
|
|
||||||
<view class="list" @click="handleEdit(item)">
|
|
||||||
<template v-for="(cItem, cIndex) in columns" :key="cIndex">
|
|
||||||
<view v-if="cIndex < 3" class="box" :style="getBoxStyle">
|
|
||||||
<view class="field ellipsis">{{ cItem.title }}</view>
|
|
||||||
<view class="value cu-text-grey">{{ item[cItem.dataIndex] }}</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</view>
|
|
||||||
<template #right>
|
|
||||||
<view class="action">
|
|
||||||
<view class="button" @click="handleAction('del', item)">删除</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</wd-swipe-action>
|
|
||||||
</template>
|
|
||||||
</z-paging>
|
|
||||||
<view class="add u-iconfont u-icon-add" @click="handleAdd"></view>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
|
||||||
import { ref, onMounted, computed } from 'vue'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import usePageList from '@/hooks/usePageList'
|
|
||||||
import {columns} from './AiolChatMemberData';
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolChatMemberList',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
//分页加载配置
|
|
||||||
let { toast, router, paging, dataList, queryList } = usePageList('/aiol/aiolChatMember/list');
|
|
||||||
|
|
||||||
//样式
|
|
||||||
const getBoxStyle = computed(() => {
|
|
||||||
return { width: "calc(33% - 5px)" }
|
|
||||||
})
|
|
||||||
|
|
||||||
// 其他操作
|
|
||||||
const handleAction = (val, item) => {
|
|
||||||
if (val == 'del') {
|
|
||||||
http.delete("/aiol/aiolChatMember/delete?id="+item.id,{id:item.id}).then((res) => {
|
|
||||||
toast.success('删除成功~')
|
|
||||||
paging.value.reload()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// go 新增页
|
|
||||||
const handleAdd = () => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolChatMemberForm'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//go 编辑页
|
|
||||||
const handleEdit = (record) => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolChatMemberForm',
|
|
||||||
params: {dataId: record.id},
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
// 监听刷新列表事件
|
|
||||||
uni.$on('refreshList', () => {
|
|
||||||
queryList(1,10)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.wrap {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
:deep(.wd-swipe-action) {
|
|
||||||
margin-top: 10px;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.list {
|
|
||||||
padding: 10px 10px;
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
.box {
|
|
||||||
width: 33%;
|
|
||||||
.field {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.action {
|
|
||||||
width: 60px;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
.button {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex: 1;
|
|
||||||
height: 100%;
|
|
||||||
color: #fff;
|
|
||||||
&:first-child {
|
|
||||||
background-color: #fa4350;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.add {
|
|
||||||
height: 70upx;
|
|
||||||
width: 70upx;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 70upx;
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 80upx;
|
|
||||||
right: 30upx;
|
|
||||||
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,44 +0,0 @@
|
|||||||
import { render } from '@/common/renderUtils';
|
|
||||||
//列表数据
|
|
||||||
export const columns = [
|
|
||||||
{
|
|
||||||
title: '会话id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'chatId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '发送者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'senderId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '内容',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'content'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '消息类型',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'messageType'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '状态',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'status'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件url',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileUrl'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件名',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileName'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件大小',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileSize'
|
|
||||||
},
|
|
||||||
];
|
|
@ -1,302 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
navigationBarTitleText: '会话消息',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout :navTitle="navTitle" :backRouteName="backRouteName">
|
|
||||||
<scroll-view class="scrollArea" scroll-y>
|
|
||||||
<view class="form-container">
|
|
||||||
<wd-form ref="form" :model="myFormData">
|
|
||||||
<wd-cell-group border>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['chatId']"
|
|
||||||
:label="get4Label('会话id')"
|
|
||||||
name='chatId'
|
|
||||||
prop='chatId'
|
|
||||||
placeholder="请选择会话id"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['senderId']"
|
|
||||||
:label="get4Label('发送者id')"
|
|
||||||
name='senderId'
|
|
||||||
prop='senderId'
|
|
||||||
placeholder="请选择发送者id"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['content']"
|
|
||||||
:label="get4Label('内容')"
|
|
||||||
name='content'
|
|
||||||
prop='content'
|
|
||||||
placeholder="请选择内容"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['messageType']"
|
|
||||||
:label="get4Label('消息类型')"
|
|
||||||
name='messageType'
|
|
||||||
prop='messageType'
|
|
||||||
placeholder="请选择消息类型"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['status']"
|
|
||||||
:label="get4Label('状态')"
|
|
||||||
name='status'
|
|
||||||
prop='status'
|
|
||||||
placeholder="请选择状态"
|
|
||||||
inputMode="numeric"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['fileUrl']"
|
|
||||||
:label="get4Label('文件url')"
|
|
||||||
name='fileUrl'
|
|
||||||
prop='fileUrl'
|
|
||||||
placeholder="请选择文件url"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['fileName']"
|
|
||||||
:label="get4Label('文件名')"
|
|
||||||
name='fileName'
|
|
||||||
prop='fileName'
|
|
||||||
placeholder="请选择文件名"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['fileSize']"
|
|
||||||
:label="get4Label('文件大小')"
|
|
||||||
name='fileSize'
|
|
||||||
prop='fileSize'
|
|
||||||
placeholder="请选择文件大小"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
</wd-cell-group>
|
|
||||||
</wd-form>
|
|
||||||
</view>
|
|
||||||
</scroll-view>
|
|
||||||
<view class="footer">
|
|
||||||
<wd-button :disabled="loading" block :loading="loading" @click="handleSubmit">提交</wd-button>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { onLoad } from '@dcloudio/uni-app'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import { useToast } from 'wot-design-uni'
|
|
||||||
import { useRouter } from '@/plugin/uni-mini-router'
|
|
||||||
import { ref, onMounted, computed,reactive } from 'vue'
|
|
||||||
import OnlineImage from '@/components/online/view/online-image.vue'
|
|
||||||
import OnlineFile from '@/components/online/view/online-file.vue'
|
|
||||||
import OnlineFileCustom from '@/components/online/view/online-file-custom.vue'
|
|
||||||
import OnlineSelect from '@/components/online/view/online-select.vue'
|
|
||||||
import OnlineTime from '@/components/online/view/online-time.vue'
|
|
||||||
import OnlineDate from '@/components/online/view/online-date.vue'
|
|
||||||
import OnlineRadio from '@/components/online/view/online-radio.vue'
|
|
||||||
import OnlineCheckbox from '@/components/online/view/online-checkbox.vue'
|
|
||||||
import OnlineMulti from '@/components/online/view/online-multi.vue'
|
|
||||||
import OnlinePopupLinkRecord from '@/components/online/view/online-popup-link-record.vue'
|
|
||||||
import OnlinePca from '@/components/online/view/online-pca.vue'
|
|
||||||
import SelectDept from '@/components/SelectDept/SelectDept.vue'
|
|
||||||
import SelectUser from '@/components/SelectUser/SelectUser.vue'
|
|
||||||
import {duplicateCheck} from "@/service/api";
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolChatMessageForm',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
const toast = useToast()
|
|
||||||
const router = useRouter()
|
|
||||||
const form = ref(null)
|
|
||||||
// 定义响应式数据
|
|
||||||
const myFormData = reactive({})
|
|
||||||
const loading = ref(false)
|
|
||||||
const navTitle = ref('新增')
|
|
||||||
const dataId = ref('')
|
|
||||||
const backRouteName = ref('AiolChatMessageList')
|
|
||||||
// 定义 initForm 方法
|
|
||||||
const initForm = (item) => {
|
|
||||||
console.log('initForm item', item)
|
|
||||||
if(item?.dataId){
|
|
||||||
dataId.value = item.dataId;
|
|
||||||
navTitle.value = item.dataId?'编辑':'新增';
|
|
||||||
initData();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 初始化数据
|
|
||||||
const initData = () => {
|
|
||||||
http.get("/aiol/aiolChatMessage/queryById",{id:dataId.value}).then((res) => {
|
|
||||||
if (res.success) {
|
|
||||||
let obj = res.result
|
|
||||||
Object.assign(myFormData, { ...obj })
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单加载失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const handleSuccess = () => {
|
|
||||||
uni.$emit('refreshList');
|
|
||||||
router.back()
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 校验唯一
|
|
||||||
* @param values
|
|
||||||
* @returns {boolean}
|
|
||||||
*/
|
|
||||||
async function fieldCheck(values: any) {
|
|
||||||
const onlyField = [
|
|
||||||
];
|
|
||||||
for (const field of onlyField) {
|
|
||||||
if (values[field]) {
|
|
||||||
// 仅校验有值的字段
|
|
||||||
const res: any = await duplicateCheck({
|
|
||||||
tableName: 'aiol_chat_message',
|
|
||||||
fieldName: field, // 使用处理后的字段名
|
|
||||||
fieldVal: values[field],
|
|
||||||
dataId: values.id,
|
|
||||||
});
|
|
||||||
if (!res.success) {
|
|
||||||
toast.warning(res.message);
|
|
||||||
return true; // 校验失败
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false; // 校验通过
|
|
||||||
}
|
|
||||||
// 提交表单
|
|
||||||
const handleSubmit = async () => {
|
|
||||||
// 判断字段必填和正则
|
|
||||||
if (await fieldCheck(myFormData)) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let url = dataId.value?'/aiol/aiolChatMessage/edit':'/aiol/aiolChatMessage/add';
|
|
||||||
form.value
|
|
||||||
.validate()
|
|
||||||
.then(({ valid, errors }) => {
|
|
||||||
if (valid) {
|
|
||||||
loading.value = true;
|
|
||||||
http.post(url,myFormData).then((res) => {
|
|
||||||
loading.value = false;
|
|
||||||
if (res.success) {
|
|
||||||
toast.success('保存成功');
|
|
||||||
handleSuccess()
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单保存失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch((error) => {
|
|
||||||
console.log(error, 'error')
|
|
||||||
loading.value = false;
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 标题
|
|
||||||
const get4Label = computed(() => {
|
|
||||||
return (label) => {
|
|
||||||
return label && label.length > 4 ? label.substring(0, 4) : label;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// 标题
|
|
||||||
const getFormSchema = computed(() => {
|
|
||||||
return (dictTable,dictCode,dictText) => {
|
|
||||||
return {
|
|
||||||
dictCode,
|
|
||||||
dictTable,
|
|
||||||
dictText
|
|
||||||
};
|
|
||||||
}
|
|
||||||
})
|
|
||||||
/**
|
|
||||||
* 获取日期控件的扩展类型
|
|
||||||
* @param picker
|
|
||||||
* @returns {string}
|
|
||||||
*/
|
|
||||||
const getDateExtendType = (picker: string) => {
|
|
||||||
let mapField = {
|
|
||||||
month: 'year-month',
|
|
||||||
year: 'year',
|
|
||||||
quarter: 'quarter',
|
|
||||||
week: 'week',
|
|
||||||
day: 'date',
|
|
||||||
}
|
|
||||||
return picker && mapField[picker]
|
|
||||||
? mapField[picker]
|
|
||||||
: 'date'
|
|
||||||
}
|
|
||||||
//设置pop返回值
|
|
||||||
const setFieldsValue = (data) => {
|
|
||||||
Object.assign(myFormData, {...data })
|
|
||||||
}
|
|
||||||
// onLoad 生命周期钩子
|
|
||||||
onLoad((option) => {
|
|
||||||
initForm(option)
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.footer {
|
|
||||||
width: 100%;
|
|
||||||
padding: 10px 20px;
|
|
||||||
padding-bottom: calc(constant(safe-area-inset-bottom) + 10px);
|
|
||||||
padding-bottom: calc(env(safe-area-inset-bottom) + 10px);
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__label) {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__value) {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,148 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationBarTitleText: '会话消息',
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout navTitle="会话消息" backRouteName="index" routeMethod="pushTab">
|
|
||||||
<view class="wrap">
|
|
||||||
<z-paging
|
|
||||||
ref="paging"
|
|
||||||
:fixed="false"
|
|
||||||
v-model="dataList"
|
|
||||||
@query="queryList"
|
|
||||||
:default-page-size="15"
|
|
||||||
>
|
|
||||||
<template v-for="item in dataList" :key="item.id">
|
|
||||||
<wd-swipe-action>
|
|
||||||
<view class="list" @click="handleEdit(item)">
|
|
||||||
<template v-for="(cItem, cIndex) in columns" :key="cIndex">
|
|
||||||
<view v-if="cIndex < 3" class="box" :style="getBoxStyle">
|
|
||||||
<view class="field ellipsis">{{ cItem.title }}</view>
|
|
||||||
<view class="value cu-text-grey">{{ item[cItem.dataIndex] }}</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</view>
|
|
||||||
<template #right>
|
|
||||||
<view class="action">
|
|
||||||
<view class="button" @click="handleAction('del', item)">删除</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</wd-swipe-action>
|
|
||||||
</template>
|
|
||||||
</z-paging>
|
|
||||||
<view class="add u-iconfont u-icon-add" @click="handleAdd"></view>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
|
||||||
import { ref, onMounted, computed } from 'vue'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import usePageList from '@/hooks/usePageList'
|
|
||||||
import {columns} from './AiolChatMessageData';
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolChatMessageList',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
//分页加载配置
|
|
||||||
let { toast, router, paging, dataList, queryList } = usePageList('/aiol/aiolChatMessage/list');
|
|
||||||
|
|
||||||
//样式
|
|
||||||
const getBoxStyle = computed(() => {
|
|
||||||
return { width: "calc(33% - 5px)" }
|
|
||||||
})
|
|
||||||
|
|
||||||
// 其他操作
|
|
||||||
const handleAction = (val, item) => {
|
|
||||||
if (val == 'del') {
|
|
||||||
http.delete("/aiol/aiolChatMessage/delete?id="+item.id,{id:item.id}).then((res) => {
|
|
||||||
toast.success('删除成功~')
|
|
||||||
paging.value.reload()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// go 新增页
|
|
||||||
const handleAdd = () => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolChatMessageForm'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//go 编辑页
|
|
||||||
const handleEdit = (record) => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolChatMessageForm',
|
|
||||||
params: {dataId: record.id},
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
// 监听刷新列表事件
|
|
||||||
uni.$on('refreshList', () => {
|
|
||||||
queryList(1,10)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.wrap {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
:deep(.wd-swipe-action) {
|
|
||||||
margin-top: 10px;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.list {
|
|
||||||
padding: 10px 10px;
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
.box {
|
|
||||||
width: 33%;
|
|
||||||
.field {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.action {
|
|
||||||
width: 60px;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
.button {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex: 1;
|
|
||||||
height: 100%;
|
|
||||||
color: #fff;
|
|
||||||
&:first-child {
|
|
||||||
background-color: #fa4350;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.add {
|
|
||||||
height: 70upx;
|
|
||||||
width: 70upx;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 70upx;
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 80upx;
|
|
||||||
right: 30upx;
|
|
||||||
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,14 +0,0 @@
|
|||||||
import { render } from '@/common/renderUtils';
|
|
||||||
//列表数据
|
|
||||||
export const columns = [
|
|
||||||
{
|
|
||||||
title: '关注者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'followerId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '被关注者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'followedId'
|
|
||||||
},
|
|
||||||
];
|
|
@ -1,222 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
navigationBarTitleText: '关注关系',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout :navTitle="navTitle" :backRouteName="backRouteName">
|
|
||||||
<scroll-view class="scrollArea" scroll-y>
|
|
||||||
<view class="form-container">
|
|
||||||
<wd-form ref="form" :model="myFormData">
|
|
||||||
<wd-cell-group border>
|
|
||||||
<view class="{ 'mt-14px': 0 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['followerId']"
|
|
||||||
:label="get4Label('关注者id')"
|
|
||||||
name='followerId'
|
|
||||||
prop='followerId'
|
|
||||||
placeholder="请选择关注者id"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
<view class="{ 'mt-14px': 1 == 0 }">
|
|
||||||
<wd-input
|
|
||||||
label-width="100px"
|
|
||||||
v-model="myFormData['followedId']"
|
|
||||||
:label="get4Label('被关注者id')"
|
|
||||||
name='followedId'
|
|
||||||
prop='followedId'
|
|
||||||
placeholder="请选择被关注者id"
|
|
||||||
:rules="[
|
|
||||||
]"
|
|
||||||
clearable
|
|
||||||
/>
|
|
||||||
</view>
|
|
||||||
</wd-cell-group>
|
|
||||||
</wd-form>
|
|
||||||
</view>
|
|
||||||
</scroll-view>
|
|
||||||
<view class="footer">
|
|
||||||
<wd-button :disabled="loading" block :loading="loading" @click="handleSubmit">提交</wd-button>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { onLoad } from '@dcloudio/uni-app'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import { useToast } from 'wot-design-uni'
|
|
||||||
import { useRouter } from '@/plugin/uni-mini-router'
|
|
||||||
import { ref, onMounted, computed,reactive } from 'vue'
|
|
||||||
import OnlineImage from '@/components/online/view/online-image.vue'
|
|
||||||
import OnlineFile from '@/components/online/view/online-file.vue'
|
|
||||||
import OnlineFileCustom from '@/components/online/view/online-file-custom.vue'
|
|
||||||
import OnlineSelect from '@/components/online/view/online-select.vue'
|
|
||||||
import OnlineTime from '@/components/online/view/online-time.vue'
|
|
||||||
import OnlineDate from '@/components/online/view/online-date.vue'
|
|
||||||
import OnlineRadio from '@/components/online/view/online-radio.vue'
|
|
||||||
import OnlineCheckbox from '@/components/online/view/online-checkbox.vue'
|
|
||||||
import OnlineMulti from '@/components/online/view/online-multi.vue'
|
|
||||||
import OnlinePopupLinkRecord from '@/components/online/view/online-popup-link-record.vue'
|
|
||||||
import OnlinePca from '@/components/online/view/online-pca.vue'
|
|
||||||
import SelectDept from '@/components/SelectDept/SelectDept.vue'
|
|
||||||
import SelectUser from '@/components/SelectUser/SelectUser.vue'
|
|
||||||
import {duplicateCheck} from "@/service/api";
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolUserFollowForm',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
const toast = useToast()
|
|
||||||
const router = useRouter()
|
|
||||||
const form = ref(null)
|
|
||||||
// 定义响应式数据
|
|
||||||
const myFormData = reactive({})
|
|
||||||
const loading = ref(false)
|
|
||||||
const navTitle = ref('新增')
|
|
||||||
const dataId = ref('')
|
|
||||||
const backRouteName = ref('AiolUserFollowList')
|
|
||||||
// 定义 initForm 方法
|
|
||||||
const initForm = (item) => {
|
|
||||||
console.log('initForm item', item)
|
|
||||||
if(item?.dataId){
|
|
||||||
dataId.value = item.dataId;
|
|
||||||
navTitle.value = item.dataId?'编辑':'新增';
|
|
||||||
initData();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 初始化数据
|
|
||||||
const initData = () => {
|
|
||||||
http.get("/aiol/aiolUserFollow/queryById",{id:dataId.value}).then((res) => {
|
|
||||||
if (res.success) {
|
|
||||||
let obj = res.result
|
|
||||||
Object.assign(myFormData, { ...obj })
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单加载失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const handleSuccess = () => {
|
|
||||||
uni.$emit('refreshList');
|
|
||||||
router.back()
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 校验唯一
|
|
||||||
* @param values
|
|
||||||
* @returns {boolean}
|
|
||||||
*/
|
|
||||||
async function fieldCheck(values: any) {
|
|
||||||
const onlyField = [
|
|
||||||
];
|
|
||||||
for (const field of onlyField) {
|
|
||||||
if (values[field]) {
|
|
||||||
// 仅校验有值的字段
|
|
||||||
const res: any = await duplicateCheck({
|
|
||||||
tableName: 'aiol_user_follow',
|
|
||||||
fieldName: field, // 使用处理后的字段名
|
|
||||||
fieldVal: values[field],
|
|
||||||
dataId: values.id,
|
|
||||||
});
|
|
||||||
if (!res.success) {
|
|
||||||
toast.warning(res.message);
|
|
||||||
return true; // 校验失败
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false; // 校验通过
|
|
||||||
}
|
|
||||||
// 提交表单
|
|
||||||
const handleSubmit = async () => {
|
|
||||||
// 判断字段必填和正则
|
|
||||||
if (await fieldCheck(myFormData)) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let url = dataId.value?'/aiol/aiolUserFollow/edit':'/aiol/aiolUserFollow/add';
|
|
||||||
form.value
|
|
||||||
.validate()
|
|
||||||
.then(({ valid, errors }) => {
|
|
||||||
if (valid) {
|
|
||||||
loading.value = true;
|
|
||||||
http.post(url,myFormData).then((res) => {
|
|
||||||
loading.value = false;
|
|
||||||
if (res.success) {
|
|
||||||
toast.success('保存成功');
|
|
||||||
handleSuccess()
|
|
||||||
}else{
|
|
||||||
toast.error(res?.message || '表单保存失败!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch((error) => {
|
|
||||||
console.log(error, 'error')
|
|
||||||
loading.value = false;
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 标题
|
|
||||||
const get4Label = computed(() => {
|
|
||||||
return (label) => {
|
|
||||||
return label && label.length > 4 ? label.substring(0, 4) : label;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// 标题
|
|
||||||
const getFormSchema = computed(() => {
|
|
||||||
return (dictTable,dictCode,dictText) => {
|
|
||||||
return {
|
|
||||||
dictCode,
|
|
||||||
dictTable,
|
|
||||||
dictText
|
|
||||||
};
|
|
||||||
}
|
|
||||||
})
|
|
||||||
/**
|
|
||||||
* 获取日期控件的扩展类型
|
|
||||||
* @param picker
|
|
||||||
* @returns {string}
|
|
||||||
*/
|
|
||||||
const getDateExtendType = (picker: string) => {
|
|
||||||
let mapField = {
|
|
||||||
month: 'year-month',
|
|
||||||
year: 'year',
|
|
||||||
quarter: 'quarter',
|
|
||||||
week: 'week',
|
|
||||||
day: 'date',
|
|
||||||
}
|
|
||||||
return picker && mapField[picker]
|
|
||||||
? mapField[picker]
|
|
||||||
: 'date'
|
|
||||||
}
|
|
||||||
//设置pop返回值
|
|
||||||
const setFieldsValue = (data) => {
|
|
||||||
Object.assign(myFormData, {...data })
|
|
||||||
}
|
|
||||||
// onLoad 生命周期钩子
|
|
||||||
onLoad((option) => {
|
|
||||||
initForm(option)
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.footer {
|
|
||||||
width: 100%;
|
|
||||||
padding: 10px 20px;
|
|
||||||
padding-bottom: calc(constant(safe-area-inset-bottom) + 10px);
|
|
||||||
padding-bottom: calc(env(safe-area-inset-bottom) + 10px);
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__label) {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
:deep(.wd-cell__value) {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,148 +0,0 @@
|
|||||||
<route lang="json5" type="page">
|
|
||||||
{
|
|
||||||
layout: 'default',
|
|
||||||
style: {
|
|
||||||
navigationBarTitleText: '关注关系',
|
|
||||||
navigationStyle: 'custom',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</route>
|
|
||||||
<template>
|
|
||||||
<PageLayout navTitle="关注关系" backRouteName="index" routeMethod="pushTab">
|
|
||||||
<view class="wrap">
|
|
||||||
<z-paging
|
|
||||||
ref="paging"
|
|
||||||
:fixed="false"
|
|
||||||
v-model="dataList"
|
|
||||||
@query="queryList"
|
|
||||||
:default-page-size="15"
|
|
||||||
>
|
|
||||||
<template v-for="item in dataList" :key="item.id">
|
|
||||||
<wd-swipe-action>
|
|
||||||
<view class="list" @click="handleEdit(item)">
|
|
||||||
<template v-for="(cItem, cIndex) in columns" :key="cIndex">
|
|
||||||
<view v-if="cIndex < 3" class="box" :style="getBoxStyle">
|
|
||||||
<view class="field ellipsis">{{ cItem.title }}</view>
|
|
||||||
<view class="value cu-text-grey">{{ item[cItem.dataIndex] }}</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</view>
|
|
||||||
<template #right>
|
|
||||||
<view class="action">
|
|
||||||
<view class="button" @click="handleAction('del', item)">删除</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
</wd-swipe-action>
|
|
||||||
</template>
|
|
||||||
</z-paging>
|
|
||||||
<view class="add u-iconfont u-icon-add" @click="handleAdd"></view>
|
|
||||||
</view>
|
|
||||||
</PageLayout>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
|
||||||
import { ref, onMounted, computed } from 'vue'
|
|
||||||
import { http } from '@/utils/http'
|
|
||||||
import usePageList from '@/hooks/usePageList'
|
|
||||||
import {columns} from './AiolUserFollowData';
|
|
||||||
defineOptions({
|
|
||||||
name: 'AiolUserFollowList',
|
|
||||||
options: {
|
|
||||||
styleIsolation: 'shared',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
//分页加载配置
|
|
||||||
let { toast, router, paging, dataList, queryList } = usePageList('/aiol/aiolUserFollow/list');
|
|
||||||
|
|
||||||
//样式
|
|
||||||
const getBoxStyle = computed(() => {
|
|
||||||
return { width: "calc(33% - 5px)" }
|
|
||||||
})
|
|
||||||
|
|
||||||
// 其他操作
|
|
||||||
const handleAction = (val, item) => {
|
|
||||||
if (val == 'del') {
|
|
||||||
http.delete("/aiol/aiolUserFollow/delete?id="+item.id,{id:item.id}).then((res) => {
|
|
||||||
toast.success('删除成功~')
|
|
||||||
paging.value.reload()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// go 新增页
|
|
||||||
const handleAdd = () => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolUserFollowForm'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//go 编辑页
|
|
||||||
const handleEdit = (record) => {
|
|
||||||
router.push({
|
|
||||||
name: 'AiolUserFollowForm',
|
|
||||||
params: {dataId: record.id},
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
// 监听刷新列表事件
|
|
||||||
uni.$on('refreshList', () => {
|
|
||||||
queryList(1,10)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.wrap {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
:deep(.wd-swipe-action) {
|
|
||||||
margin-top: 10px;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.list {
|
|
||||||
padding: 10px 10px;
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
.box {
|
|
||||||
width: 33%;
|
|
||||||
.field {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.action {
|
|
||||||
width: 60px;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
.button {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex: 1;
|
|
||||||
height: 100%;
|
|
||||||
color: #fff;
|
|
||||||
&:first-child {
|
|
||||||
background-color: #fa4350;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.add {
|
|
||||||
height: 70upx;
|
|
||||||
width: 70upx;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 70upx;
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 80upx;
|
|
||||||
right: 30upx;
|
|
||||||
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolChat/list',
|
|
||||||
save='/aiol/aiolChat/add',
|
|
||||||
edit='/aiol/aiolChat/edit',
|
|
||||||
deleteOne = '/aiol/aiolChat/delete',
|
|
||||||
deleteBatch = '/aiol/aiolChat/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolChat/importExcel',
|
|
||||||
exportXls = '/aiol/aiolChat/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '会话类型',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'type'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '群聊名称',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'name'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '群聊头像',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'avatar'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '关联id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'refId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否全员禁言',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izAllMuted'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否显示教师标签',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'showLabel'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '会话类型',
|
|
||||||
field: 'type',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '群聊名称',
|
|
||||||
field: 'name',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '群聊头像',
|
|
||||||
field: 'avatar',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '关联id',
|
|
||||||
field: 'refId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否全员禁言',
|
|
||||||
field: 'izAllMuted',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否显示教师标签',
|
|
||||||
field: 'showLabel',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
type: {title: '会话类型',order: 0,view: 'number', type: 'number',},
|
|
||||||
name: {title: '群聊名称',order: 1,view: 'text', type: 'string',},
|
|
||||||
avatar: {title: '群聊头像',order: 2,view: 'text', type: 'string',},
|
|
||||||
refId: {title: '关联id',order: 3,view: 'text', type: 'string',},
|
|
||||||
izAllMuted: {title: '是否全员禁言',order: 4,view: 'number', type: 'number',},
|
|
||||||
showLabel: {title: '是否显示教师标签',order: 5,view: 'number', type: 'number',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_chat:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_chat:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolChatModal @register="registerModal" @success="handleSuccess"></AiolChatModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolChat" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolChatModal from './components/AiolChatModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolChat.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolChat.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '会话',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"会话",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_chat:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_chat:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolChatMember/list',
|
|
||||||
save='/aiol/aiolChatMember/add',
|
|
||||||
edit='/aiol/aiolChatMember/edit',
|
|
||||||
deleteOne = '/aiol/aiolChatMember/delete',
|
|
||||||
deleteBatch = '/aiol/aiolChatMember/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolChatMember/importExcel',
|
|
||||||
exportXls = '/aiol/aiolChatMember/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '会话id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'chatId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '用户id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'userId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '成员角色',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'role'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否禁言',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izMuted'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否免打扰',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izNotDisturb'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '最后已读消息id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'lastReadMsgId'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '会话id',
|
|
||||||
field: 'chatId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '用户id',
|
|
||||||
field: 'userId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '成员角色',
|
|
||||||
field: 'role',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否禁言',
|
|
||||||
field: 'izMuted',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否免打扰',
|
|
||||||
field: 'izNotDisturb',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '最后已读消息id',
|
|
||||||
field: 'lastReadMsgId',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
chatId: {title: '会话id',order: 0,view: 'text', type: 'string',},
|
|
||||||
userId: {title: '用户id',order: 1,view: 'text', type: 'string',},
|
|
||||||
role: {title: '成员角色',order: 2,view: 'number', type: 'number',},
|
|
||||||
izMuted: {title: '是否禁言',order: 3,view: 'number', type: 'number',},
|
|
||||||
izNotDisturb: {title: '是否免打扰',order: 4,view: 'number', type: 'number',},
|
|
||||||
lastReadMsgId: {title: '最后已读消息id',order: 5,view: 'number', type: 'number',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_member:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_member:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_chat_member:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_chat_member:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolChatMemberModal @register="registerModal" @success="handleSuccess"></AiolChatMemberModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolChatMember" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolChatMemberModal from './components/AiolChatMemberModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolChatMember.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolChatMember.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '会话用户',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"会话用户",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_chat_member:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_chat_member:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolChatMessage/list',
|
|
||||||
save='/aiol/aiolChatMessage/add',
|
|
||||||
edit='/aiol/aiolChatMessage/edit',
|
|
||||||
deleteOne = '/aiol/aiolChatMessage/delete',
|
|
||||||
deleteBatch = '/aiol/aiolChatMessage/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolChatMessage/importExcel',
|
|
||||||
exportXls = '/aiol/aiolChatMessage/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,122 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '会话id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'chatId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '发送者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'senderId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '内容',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'content'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '消息类型',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'messageType'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '状态',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'status'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件url',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileUrl'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件名',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileName'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件大小',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileSize'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '会话id',
|
|
||||||
field: 'chatId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '发送者id',
|
|
||||||
field: 'senderId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '内容',
|
|
||||||
field: 'content',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '消息类型',
|
|
||||||
field: 'messageType',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '状态',
|
|
||||||
field: 'status',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '文件url',
|
|
||||||
field: 'fileUrl',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '文件名',
|
|
||||||
field: 'fileName',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '文件大小',
|
|
||||||
field: 'fileSize',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
chatId: {title: '会话id',order: 0,view: 'text', type: 'string',},
|
|
||||||
senderId: {title: '发送者id',order: 1,view: 'text', type: 'string',},
|
|
||||||
content: {title: '内容',order: 2,view: 'text', type: 'string',},
|
|
||||||
messageType: {title: '消息类型',order: 3,view: 'number', type: 'number',},
|
|
||||||
status: {title: '状态',order: 4,view: 'number', type: 'number',},
|
|
||||||
fileUrl: {title: '文件url',order: 5,view: 'text', type: 'string',},
|
|
||||||
fileName: {title: '文件名',order: 6,view: 'text', type: 'string',},
|
|
||||||
fileSize: {title: '文件大小',order: 7,view: 'text', type: 'string',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_message:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_message:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_chat_message:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_chat_message:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolChatMessageModal @register="registerModal" @success="handleSuccess"></AiolChatMessageModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolChatMessage" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolChatMessageModal from './components/AiolChatMessageModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolChatMessage.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolChatMessage.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '会话消息',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"会话消息",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_chat_message:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_chat_message:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolUserFollow/list',
|
|
||||||
save='/aiol/aiolUserFollow/add',
|
|
||||||
edit='/aiol/aiolUserFollow/edit',
|
|
||||||
deleteOne = '/aiol/aiolUserFollow/delete',
|
|
||||||
deleteBatch = '/aiol/aiolUserFollow/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolUserFollow/importExcel',
|
|
||||||
exportXls = '/aiol/aiolUserFollow/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,56 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '关注者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'followerId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '被关注者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'followedId'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '关注者id',
|
|
||||||
field: 'followerId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '被关注者id',
|
|
||||||
field: 'followedId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
followerId: {title: '关注者id',order: 0,view: 'text', type: 'string',},
|
|
||||||
followedId: {title: '被关注者id',order: 1,view: 'text', type: 'string',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_user_follow:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_user_follow:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_user_follow:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_user_follow:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolUserFollowModal @register="registerModal" @success="handleSuccess"></AiolUserFollowModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolUserFollow" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolUserFollowModal from './components/AiolUserFollowModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolUserFollow.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolUserFollow.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '关注关系',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"关注关系",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_user_follow:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_user_follow:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109026120430', NULL, '会话', '/aiol/aiolChatList', 'aiol/AiolChatList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120431', '2025091109026120430', '添加会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120432', '2025091109026120430', '编辑会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120433', '2025091109026120430', '删除会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120434', '2025091109026120430', '批量删除会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120435', '2025091109026120430', '导出excel_会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120436', '2025091109026120430', '导入excel_会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109026150480', NULL, '会话用户', '/aiol/aiolChatMemberList', 'aiol/AiolChatMemberList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150481', '2025091109026150480', '添加会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150482', '2025091109026150480', '编辑会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150483', '2025091109026150480', '删除会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150484', '2025091109026150480', '批量删除会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150485', '2025091109026150480', '导出excel_会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150486', '2025091109026150480', '导入excel_会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109021940530', NULL, '会话消息', '/aiol/aiolChatMessageList', 'aiol/AiolChatMessageList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940531', '2025091109021940530', '添加会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940532', '2025091109021940530', '编辑会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940533', '2025091109021940530', '删除会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940534', '2025091109021940530', '批量删除会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940535', '2025091109021940530', '导出excel_会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940536', '2025091109021940530', '导入excel_会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109029930370', NULL, '关注关系', '/aiol/aiolUserFollowList', 'aiol/AiolUserFollowList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930371', '2025091109029930370', '添加关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930372', '2025091109029930370', '编辑关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930373', '2025091109029930370', '删除关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930374', '2025091109029930370', '批量删除关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930375', '2025091109029930370', '导出excel_关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930376', '2025091109029930370', '导入excel_关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div style="min-height: 400px">
|
|
||||||
<BasicForm @register="registerForm"></BasicForm>
|
|
||||||
<div style="width: 100%;text-align: center" v-if="!formDisabled">
|
|
||||||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {computed, defineComponent} from 'vue';
|
|
||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { propTypes } from '/@/utils/propTypes';
|
|
||||||
import {getBpmFormSchema} from '../AiolChat.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChat.api';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "AiolChatForm",
|
|
||||||
components:{
|
|
||||||
BasicForm
|
|
||||||
},
|
|
||||||
props:{
|
|
||||||
formData: propTypes.object.def({}),
|
|
||||||
formBpm: propTypes.bool.def(true),
|
|
||||||
},
|
|
||||||
setup(props){
|
|
||||||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: getBpmFormSchema(props.formData),
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
|
|
||||||
const formDisabled = computed(()=>{
|
|
||||||
if(props.formData.disabled === false){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
let formData = {};
|
|
||||||
const queryByIdUrl = '/aiol/aiolChat/queryById';
|
|
||||||
async function initFormData(){
|
|
||||||
let params = {id: props.formData.dataId};
|
|
||||||
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
||||||
formData = {...data}
|
|
||||||
//设置表单的值
|
|
||||||
await setFieldsValue(formData);
|
|
||||||
//默认是禁用
|
|
||||||
await setProps({disabled: formDisabled.value})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function submitForm() {
|
|
||||||
let data = getFieldsValue();
|
|
||||||
let params = Object.assign({}, formData, data);
|
|
||||||
console.log('表单数据', params)
|
|
||||||
await saveOrUpdate(params, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
initFormData();
|
|
||||||
|
|
||||||
return {
|
|
||||||
registerForm,
|
|
||||||
formDisabled,
|
|
||||||
submitForm,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div style="min-height: 400px">
|
|
||||||
<BasicForm @register="registerForm"></BasicForm>
|
|
||||||
<div style="width: 100%;text-align: center" v-if="!formDisabled">
|
|
||||||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {computed, defineComponent} from 'vue';
|
|
||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { propTypes } from '/@/utils/propTypes';
|
|
||||||
import {getBpmFormSchema} from '../AiolChatMember.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMember.api';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "AiolChatMemberForm",
|
|
||||||
components:{
|
|
||||||
BasicForm
|
|
||||||
},
|
|
||||||
props:{
|
|
||||||
formData: propTypes.object.def({}),
|
|
||||||
formBpm: propTypes.bool.def(true),
|
|
||||||
},
|
|
||||||
setup(props){
|
|
||||||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: getBpmFormSchema(props.formData),
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
|
|
||||||
const formDisabled = computed(()=>{
|
|
||||||
if(props.formData.disabled === false){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
let formData = {};
|
|
||||||
const queryByIdUrl = '/aiol/aiolChatMember/queryById';
|
|
||||||
async function initFormData(){
|
|
||||||
let params = {id: props.formData.dataId};
|
|
||||||
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
||||||
formData = {...data}
|
|
||||||
//设置表单的值
|
|
||||||
await setFieldsValue(formData);
|
|
||||||
//默认是禁用
|
|
||||||
await setProps({disabled: formDisabled.value})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function submitForm() {
|
|
||||||
let data = getFieldsValue();
|
|
||||||
let params = Object.assign({}, formData, data);
|
|
||||||
console.log('表单数据', params)
|
|
||||||
await saveOrUpdate(params, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
initFormData();
|
|
||||||
|
|
||||||
return {
|
|
||||||
registerForm,
|
|
||||||
formDisabled,
|
|
||||||
submitForm,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
@ -1,99 +0,0 @@
|
|||||||
<template>
|
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
||||||
<BasicForm @register="registerForm" name="AiolChatMemberForm" />
|
|
||||||
</BasicModal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {ref, computed, unref, reactive} from 'vue';
|
|
||||||
import {BasicModal, useModalInner} from '/@/components/Modal';
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {formSchema} from '../AiolChatMember.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMember.api';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
// Emits声明
|
|
||||||
const emit = defineEmits(['register','success']);
|
|
||||||
const isUpdate = ref(true);
|
|
||||||
const isDetail = ref(false);
|
|
||||||
//表单配置
|
|
||||||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: formSchema,
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
//表单赋值
|
|
||||||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
||||||
//重置表单
|
|
||||||
await resetFields();
|
|
||||||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
||||||
isUpdate.value = !!data?.isUpdate;
|
|
||||||
isDetail.value = !!data?.showFooter;
|
|
||||||
if (unref(isUpdate)) {
|
|
||||||
//表单赋值
|
|
||||||
await setFieldsValue({
|
|
||||||
...data.record,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 隐藏底部时禁用整个表单
|
|
||||||
setProps({ disabled: !data?.showFooter })
|
|
||||||
});
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
//设置标题
|
|
||||||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
||||||
//表单提交事件
|
|
||||||
async function handleSubmit(v) {
|
|
||||||
try {
|
|
||||||
let values = await validate();
|
|
||||||
// 预处理日期数据
|
|
||||||
changeDateValue(values);
|
|
||||||
setModalProps({confirmLoading: true});
|
|
||||||
//提交表单
|
|
||||||
await saveOrUpdate(values, isUpdate.value);
|
|
||||||
//关闭弹窗
|
|
||||||
closeModal();
|
|
||||||
//刷新列表
|
|
||||||
emit('success');
|
|
||||||
} catch ({ errorFields }) {
|
|
||||||
if (errorFields) {
|
|
||||||
const firstField = errorFields[0];
|
|
||||||
if (firstField) {
|
|
||||||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Promise.reject(errorFields);
|
|
||||||
} finally {
|
|
||||||
setModalProps({confirmLoading: false});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理日期值
|
|
||||||
* @param formData 表单数据
|
|
||||||
*/
|
|
||||||
const changeDateValue = (formData) => {
|
|
||||||
if (formData && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (formData[key]) {
|
|
||||||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
/** 时间和数字输入框样式 */
|
|
||||||
:deep(.ant-input-number) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-calendar-picker) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div style="min-height: 400px">
|
|
||||||
<BasicForm @register="registerForm"></BasicForm>
|
|
||||||
<div style="width: 100%;text-align: center" v-if="!formDisabled">
|
|
||||||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {computed, defineComponent} from 'vue';
|
|
||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { propTypes } from '/@/utils/propTypes';
|
|
||||||
import {getBpmFormSchema} from '../AiolChatMessage.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMessage.api';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "AiolChatMessageForm",
|
|
||||||
components:{
|
|
||||||
BasicForm
|
|
||||||
},
|
|
||||||
props:{
|
|
||||||
formData: propTypes.object.def({}),
|
|
||||||
formBpm: propTypes.bool.def(true),
|
|
||||||
},
|
|
||||||
setup(props){
|
|
||||||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: getBpmFormSchema(props.formData),
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
|
|
||||||
const formDisabled = computed(()=>{
|
|
||||||
if(props.formData.disabled === false){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
let formData = {};
|
|
||||||
const queryByIdUrl = '/aiol/aiolChatMessage/queryById';
|
|
||||||
async function initFormData(){
|
|
||||||
let params = {id: props.formData.dataId};
|
|
||||||
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
||||||
formData = {...data}
|
|
||||||
//设置表单的值
|
|
||||||
await setFieldsValue(formData);
|
|
||||||
//默认是禁用
|
|
||||||
await setProps({disabled: formDisabled.value})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function submitForm() {
|
|
||||||
let data = getFieldsValue();
|
|
||||||
let params = Object.assign({}, formData, data);
|
|
||||||
console.log('表单数据', params)
|
|
||||||
await saveOrUpdate(params, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
initFormData();
|
|
||||||
|
|
||||||
return {
|
|
||||||
registerForm,
|
|
||||||
formDisabled,
|
|
||||||
submitForm,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
@ -1,99 +0,0 @@
|
|||||||
<template>
|
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
||||||
<BasicForm @register="registerForm" name="AiolChatMessageForm" />
|
|
||||||
</BasicModal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {ref, computed, unref, reactive} from 'vue';
|
|
||||||
import {BasicModal, useModalInner} from '/@/components/Modal';
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {formSchema} from '../AiolChatMessage.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMessage.api';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
// Emits声明
|
|
||||||
const emit = defineEmits(['register','success']);
|
|
||||||
const isUpdate = ref(true);
|
|
||||||
const isDetail = ref(false);
|
|
||||||
//表单配置
|
|
||||||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: formSchema,
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
//表单赋值
|
|
||||||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
||||||
//重置表单
|
|
||||||
await resetFields();
|
|
||||||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
||||||
isUpdate.value = !!data?.isUpdate;
|
|
||||||
isDetail.value = !!data?.showFooter;
|
|
||||||
if (unref(isUpdate)) {
|
|
||||||
//表单赋值
|
|
||||||
await setFieldsValue({
|
|
||||||
...data.record,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 隐藏底部时禁用整个表单
|
|
||||||
setProps({ disabled: !data?.showFooter })
|
|
||||||
});
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
//设置标题
|
|
||||||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
||||||
//表单提交事件
|
|
||||||
async function handleSubmit(v) {
|
|
||||||
try {
|
|
||||||
let values = await validate();
|
|
||||||
// 预处理日期数据
|
|
||||||
changeDateValue(values);
|
|
||||||
setModalProps({confirmLoading: true});
|
|
||||||
//提交表单
|
|
||||||
await saveOrUpdate(values, isUpdate.value);
|
|
||||||
//关闭弹窗
|
|
||||||
closeModal();
|
|
||||||
//刷新列表
|
|
||||||
emit('success');
|
|
||||||
} catch ({ errorFields }) {
|
|
||||||
if (errorFields) {
|
|
||||||
const firstField = errorFields[0];
|
|
||||||
if (firstField) {
|
|
||||||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Promise.reject(errorFields);
|
|
||||||
} finally {
|
|
||||||
setModalProps({confirmLoading: false});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理日期值
|
|
||||||
* @param formData 表单数据
|
|
||||||
*/
|
|
||||||
const changeDateValue = (formData) => {
|
|
||||||
if (formData && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (formData[key]) {
|
|
||||||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
/** 时间和数字输入框样式 */
|
|
||||||
:deep(.ant-input-number) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-calendar-picker) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,99 +0,0 @@
|
|||||||
<template>
|
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
||||||
<BasicForm @register="registerForm" name="AiolChatForm" />
|
|
||||||
</BasicModal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {ref, computed, unref, reactive} from 'vue';
|
|
||||||
import {BasicModal, useModalInner} from '/@/components/Modal';
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {formSchema} from '../AiolChat.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChat.api';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
// Emits声明
|
|
||||||
const emit = defineEmits(['register','success']);
|
|
||||||
const isUpdate = ref(true);
|
|
||||||
const isDetail = ref(false);
|
|
||||||
//表单配置
|
|
||||||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: formSchema,
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
//表单赋值
|
|
||||||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
||||||
//重置表单
|
|
||||||
await resetFields();
|
|
||||||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
||||||
isUpdate.value = !!data?.isUpdate;
|
|
||||||
isDetail.value = !!data?.showFooter;
|
|
||||||
if (unref(isUpdate)) {
|
|
||||||
//表单赋值
|
|
||||||
await setFieldsValue({
|
|
||||||
...data.record,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 隐藏底部时禁用整个表单
|
|
||||||
setProps({ disabled: !data?.showFooter })
|
|
||||||
});
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
//设置标题
|
|
||||||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
||||||
//表单提交事件
|
|
||||||
async function handleSubmit(v) {
|
|
||||||
try {
|
|
||||||
let values = await validate();
|
|
||||||
// 预处理日期数据
|
|
||||||
changeDateValue(values);
|
|
||||||
setModalProps({confirmLoading: true});
|
|
||||||
//提交表单
|
|
||||||
await saveOrUpdate(values, isUpdate.value);
|
|
||||||
//关闭弹窗
|
|
||||||
closeModal();
|
|
||||||
//刷新列表
|
|
||||||
emit('success');
|
|
||||||
} catch ({ errorFields }) {
|
|
||||||
if (errorFields) {
|
|
||||||
const firstField = errorFields[0];
|
|
||||||
if (firstField) {
|
|
||||||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Promise.reject(errorFields);
|
|
||||||
} finally {
|
|
||||||
setModalProps({confirmLoading: false});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理日期值
|
|
||||||
* @param formData 表单数据
|
|
||||||
*/
|
|
||||||
const changeDateValue = (formData) => {
|
|
||||||
if (formData && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (formData[key]) {
|
|
||||||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
/** 时间和数字输入框样式 */
|
|
||||||
:deep(.ant-input-number) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-calendar-picker) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div style="min-height: 400px">
|
|
||||||
<BasicForm @register="registerForm"></BasicForm>
|
|
||||||
<div style="width: 100%;text-align: center" v-if="!formDisabled">
|
|
||||||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {computed, defineComponent} from 'vue';
|
|
||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { propTypes } from '/@/utils/propTypes';
|
|
||||||
import {getBpmFormSchema} from '../AiolUserFollow.data';
|
|
||||||
import {saveOrUpdate} from '../AiolUserFollow.api';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "AiolUserFollowForm",
|
|
||||||
components:{
|
|
||||||
BasicForm
|
|
||||||
},
|
|
||||||
props:{
|
|
||||||
formData: propTypes.object.def({}),
|
|
||||||
formBpm: propTypes.bool.def(true),
|
|
||||||
},
|
|
||||||
setup(props){
|
|
||||||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: getBpmFormSchema(props.formData),
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
|
|
||||||
const formDisabled = computed(()=>{
|
|
||||||
if(props.formData.disabled === false){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
let formData = {};
|
|
||||||
const queryByIdUrl = '/aiol/aiolUserFollow/queryById';
|
|
||||||
async function initFormData(){
|
|
||||||
let params = {id: props.formData.dataId};
|
|
||||||
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
||||||
formData = {...data}
|
|
||||||
//设置表单的值
|
|
||||||
await setFieldsValue(formData);
|
|
||||||
//默认是禁用
|
|
||||||
await setProps({disabled: formDisabled.value})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function submitForm() {
|
|
||||||
let data = getFieldsValue();
|
|
||||||
let params = Object.assign({}, formData, data);
|
|
||||||
console.log('表单数据', params)
|
|
||||||
await saveOrUpdate(params, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
initFormData();
|
|
||||||
|
|
||||||
return {
|
|
||||||
registerForm,
|
|
||||||
formDisabled,
|
|
||||||
submitForm,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
@ -1,99 +0,0 @@
|
|||||||
<template>
|
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
||||||
<BasicForm @register="registerForm" name="AiolUserFollowForm" />
|
|
||||||
</BasicModal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {ref, computed, unref, reactive} from 'vue';
|
|
||||||
import {BasicModal, useModalInner} from '/@/components/Modal';
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {formSchema} from '../AiolUserFollow.data';
|
|
||||||
import {saveOrUpdate} from '../AiolUserFollow.api';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
// Emits声明
|
|
||||||
const emit = defineEmits(['register','success']);
|
|
||||||
const isUpdate = ref(true);
|
|
||||||
const isDetail = ref(false);
|
|
||||||
//表单配置
|
|
||||||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: formSchema,
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
//表单赋值
|
|
||||||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
||||||
//重置表单
|
|
||||||
await resetFields();
|
|
||||||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
||||||
isUpdate.value = !!data?.isUpdate;
|
|
||||||
isDetail.value = !!data?.showFooter;
|
|
||||||
if (unref(isUpdate)) {
|
|
||||||
//表单赋值
|
|
||||||
await setFieldsValue({
|
|
||||||
...data.record,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 隐藏底部时禁用整个表单
|
|
||||||
setProps({ disabled: !data?.showFooter })
|
|
||||||
});
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
//设置标题
|
|
||||||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
||||||
//表单提交事件
|
|
||||||
async function handleSubmit(v) {
|
|
||||||
try {
|
|
||||||
let values = await validate();
|
|
||||||
// 预处理日期数据
|
|
||||||
changeDateValue(values);
|
|
||||||
setModalProps({confirmLoading: true});
|
|
||||||
//提交表单
|
|
||||||
await saveOrUpdate(values, isUpdate.value);
|
|
||||||
//关闭弹窗
|
|
||||||
closeModal();
|
|
||||||
//刷新列表
|
|
||||||
emit('success');
|
|
||||||
} catch ({ errorFields }) {
|
|
||||||
if (errorFields) {
|
|
||||||
const firstField = errorFields[0];
|
|
||||||
if (firstField) {
|
|
||||||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Promise.reject(errorFields);
|
|
||||||
} finally {
|
|
||||||
setModalProps({confirmLoading: false});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理日期值
|
|
||||||
* @param formData 表单数据
|
|
||||||
*/
|
|
||||||
const changeDateValue = (formData) => {
|
|
||||||
if (formData && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (formData[key]) {
|
|
||||||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
/** 时间和数字输入框样式 */
|
|
||||||
:deep(.ant-input-number) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-calendar-picker) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -317,15 +317,6 @@ public interface ISysUserService extends IService<SysUser> {
|
|||||||
*/
|
*/
|
||||||
void editUser(SysUser user, String roles, String departs, String relTenantIds, String updateFromPage);
|
void editUser(SysUser user, String roles, String departs, String relTenantIds, String updateFromPage);
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建学生用户
|
|
||||||
* @param studentNumber 学号
|
|
||||||
* @param realName 真实姓名
|
|
||||||
* @param password 密码(可选,默认123456)
|
|
||||||
* @return 创建的用户信息
|
|
||||||
*/
|
|
||||||
SysUser createStudentUser(String studentNumber, String realName, String password);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* userId转为username
|
* userId转为username
|
||||||
* @param userIdList
|
* @param userIdList
|
||||||
|
@ -322,48 +322,6 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public SysUser createStudentUser(String studentNumber, String realName, String password) {
|
|
||||||
// 检查学号是否已存在
|
|
||||||
SysUser existingUser = this.getUserByName(studentNumber);
|
|
||||||
if (existingUser != null) {
|
|
||||||
throw new RuntimeException("学号已存在: " + studentNumber);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 创建学生用户
|
|
||||||
SysUser studentUser = new SysUser();
|
|
||||||
studentUser.setUsername(studentNumber); // 学号作为用户名
|
|
||||||
studentUser.setRealname(realName); // 真实姓名
|
|
||||||
studentUser.setAvatar("http://103.40.14.23:25528/aiol/manager.jpg"); // 默认头像
|
|
||||||
studentUser.setSex(1); // 默认性别为1
|
|
||||||
studentUser.setEmail(null); // 邮箱默认为null
|
|
||||||
studentUser.setPhone(null); // 手机号默认为null
|
|
||||||
studentUser.setStatus(1); // 状态为正常
|
|
||||||
studentUser.setDelFlag(CommonConstant.DEL_FLAG_0); // 未删除
|
|
||||||
studentUser.setCreateTime(new Date()); // 创建时间
|
|
||||||
studentUser.setOrgCode(null); // 组织编码为null
|
|
||||||
|
|
||||||
// 设置密码
|
|
||||||
if (oConvertUtils.isEmpty(password)) {
|
|
||||||
password = "123456"; // 默认密码
|
|
||||||
}
|
|
||||||
String salt = oConvertUtils.randomGen(8);
|
|
||||||
studentUser.setSalt(salt);
|
|
||||||
String passwordEncode = PasswordUtil.encrypt(studentNumber, password, salt);
|
|
||||||
studentUser.setPassword(passwordEncode);
|
|
||||||
|
|
||||||
// 保存用户
|
|
||||||
this.save(studentUser);
|
|
||||||
|
|
||||||
// 分配学生角色
|
|
||||||
String studentRoleId = "1955367267343724546"; // 学生角色ID
|
|
||||||
SysUserRole userRole = new SysUserRole(studentUser.getId(), studentRoleId);
|
|
||||||
sysUserRoleMapper.insert(userRole);
|
|
||||||
|
|
||||||
return studentUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@CacheEvict(value= {CacheConstant.SYS_USERS_CACHE}, allEntries=true)
|
@CacheEvict(value= {CacheConstant.SYS_USERS_CACHE}, allEntries=true)
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
@ -33,7 +33,7 @@ public class JeecgSystemApplication extends SpringBootServletInitializer {
|
|||||||
app.setDefaultProperties(defaultProperties);
|
app.setDefaultProperties(defaultProperties);
|
||||||
log.info("[JEECG] Elasticsearch Health Check Enabled: false" );
|
log.info("[JEECG] Elasticsearch Health Check Enabled: false" );
|
||||||
|
|
||||||
ConfigurableApplicationContext application = app.run(args);
|
ConfigurableApplicationContext application = app.run(args);;
|
||||||
Environment env = application.getEnvironment();
|
Environment env = application.getEnvironment();
|
||||||
String ip = InetAddress.getLocalHost().getHostAddress();
|
String ip = InetAddress.getLocalHost().getHostAddress();
|
||||||
String port = env.getProperty("server.port");
|
String port = env.getProperty("server.port");
|
||||||
|
@ -151,10 +151,10 @@ spring:
|
|||||||
slow-sql-millis: 5000
|
slow-sql-millis: 5000
|
||||||
datasource:
|
datasource:
|
||||||
master:
|
master:
|
||||||
url: jdbc:mysql://127.0.0.1:33061/aiol2?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
# url: jdbc:mysql://127.0.0.1:33061/jeecg-boot?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||||
# url: jdbc:mysql://103.40.14.23:25523/aiol?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://103.40.14.23:25523/aiol?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||||
username: root
|
username: root
|
||||||
password: 123456
|
password: root
|
||||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
# 多数据源配置
|
# 多数据源配置
|
||||||
#multi-datasource1:
|
#multi-datasource1:
|
||||||
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolChat/list',
|
|
||||||
save='/aiol/aiolChat/add',
|
|
||||||
edit='/aiol/aiolChat/edit',
|
|
||||||
deleteOne = '/aiol/aiolChat/delete',
|
|
||||||
deleteBatch = '/aiol/aiolChat/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolChat/importExcel',
|
|
||||||
exportXls = '/aiol/aiolChat/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '会话类型',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'type'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '群聊名称',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'name'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '群聊头像',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'avatar'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '关联id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'refId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否全员禁言',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izAllMuted'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否显示教师标签',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'showLabel'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '会话类型',
|
|
||||||
field: 'type',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '群聊名称',
|
|
||||||
field: 'name',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '群聊头像',
|
|
||||||
field: 'avatar',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '关联id',
|
|
||||||
field: 'refId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否全员禁言',
|
|
||||||
field: 'izAllMuted',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否显示教师标签',
|
|
||||||
field: 'showLabel',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
type: {title: '会话类型',order: 0,view: 'number', type: 'number',},
|
|
||||||
name: {title: '群聊名称',order: 1,view: 'text', type: 'string',},
|
|
||||||
avatar: {title: '群聊头像',order: 2,view: 'text', type: 'string',},
|
|
||||||
refId: {title: '关联id',order: 3,view: 'text', type: 'string',},
|
|
||||||
izAllMuted: {title: '是否全员禁言',order: 4,view: 'number', type: 'number',},
|
|
||||||
showLabel: {title: '是否显示教师标签',order: 5,view: 'number', type: 'number',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_chat:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_chat:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolChatModal @register="registerModal" @success="handleSuccess"></AiolChatModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolChat" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolChatModal from './components/AiolChatModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolChat.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolChat.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '会话',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"会话",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_chat:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_chat:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolChatMember/list',
|
|
||||||
save='/aiol/aiolChatMember/add',
|
|
||||||
edit='/aiol/aiolChatMember/edit',
|
|
||||||
deleteOne = '/aiol/aiolChatMember/delete',
|
|
||||||
deleteBatch = '/aiol/aiolChatMember/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolChatMember/importExcel',
|
|
||||||
exportXls = '/aiol/aiolChatMember/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '会话id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'chatId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '用户id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'userId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '成员角色',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'role'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否禁言',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izMuted'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否免打扰',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'izNotDisturb'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '最后已读消息id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'lastReadMsgId'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '会话id',
|
|
||||||
field: 'chatId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '用户id',
|
|
||||||
field: 'userId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '成员角色',
|
|
||||||
field: 'role',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否禁言',
|
|
||||||
field: 'izMuted',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否免打扰',
|
|
||||||
field: 'izNotDisturb',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '最后已读消息id',
|
|
||||||
field: 'lastReadMsgId',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
chatId: {title: '会话id',order: 0,view: 'text', type: 'string',},
|
|
||||||
userId: {title: '用户id',order: 1,view: 'text', type: 'string',},
|
|
||||||
role: {title: '成员角色',order: 2,view: 'number', type: 'number',},
|
|
||||||
izMuted: {title: '是否禁言',order: 3,view: 'number', type: 'number',},
|
|
||||||
izNotDisturb: {title: '是否免打扰',order: 4,view: 'number', type: 'number',},
|
|
||||||
lastReadMsgId: {title: '最后已读消息id',order: 5,view: 'number', type: 'number',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_member:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_member:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_chat_member:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_chat_member:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolChatMemberModal @register="registerModal" @success="handleSuccess"></AiolChatMemberModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolChatMember" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolChatMemberModal from './components/AiolChatMemberModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolChatMember.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolChatMember.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '会话用户',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"会话用户",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_chat_member:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_chat_member:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolChatMessage/list',
|
|
||||||
save='/aiol/aiolChatMessage/add',
|
|
||||||
edit='/aiol/aiolChatMessage/edit',
|
|
||||||
deleteOne = '/aiol/aiolChatMessage/delete',
|
|
||||||
deleteBatch = '/aiol/aiolChatMessage/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolChatMessage/importExcel',
|
|
||||||
exportXls = '/aiol/aiolChatMessage/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,122 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '会话id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'chatId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '发送者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'senderId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '内容',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'content'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '消息类型',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'messageType'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '状态',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'status'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件url',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileUrl'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件名',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileName'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '文件大小',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'fileSize'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '会话id',
|
|
||||||
field: 'chatId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '发送者id',
|
|
||||||
field: 'senderId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '内容',
|
|
||||||
field: 'content',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '消息类型',
|
|
||||||
field: 'messageType',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '状态',
|
|
||||||
field: 'status',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '文件url',
|
|
||||||
field: 'fileUrl',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '文件名',
|
|
||||||
field: 'fileName',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '文件大小',
|
|
||||||
field: 'fileSize',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
chatId: {title: '会话id',order: 0,view: 'text', type: 'string',},
|
|
||||||
senderId: {title: '发送者id',order: 1,view: 'text', type: 'string',},
|
|
||||||
content: {title: '内容',order: 2,view: 'text', type: 'string',},
|
|
||||||
messageType: {title: '消息类型',order: 3,view: 'number', type: 'number',},
|
|
||||||
status: {title: '状态',order: 4,view: 'number', type: 'number',},
|
|
||||||
fileUrl: {title: '文件url',order: 5,view: 'text', type: 'string',},
|
|
||||||
fileName: {title: '文件名',order: 6,view: 'text', type: 'string',},
|
|
||||||
fileSize: {title: '文件大小',order: 7,view: 'text', type: 'string',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_message:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_chat_message:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_chat_message:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_chat_message:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolChatMessageModal @register="registerModal" @success="handleSuccess"></AiolChatMessageModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolChatMessage" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolChatMessageModal from './components/AiolChatMessageModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolChatMessage.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolChatMessage.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '会话消息',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"会话消息",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_chat_message:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_chat_message:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -15,11 +15,6 @@ export const columns: BasicColumn[] = [
|
|||||||
align:"center",
|
align:"center",
|
||||||
dataIndex: 'courseId'
|
dataIndex: 'courseId'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: '邀请码',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'inviteCode'
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
//查询数据
|
//查询数据
|
||||||
export const searchFormSchema: FormSchema[] = [
|
export const searchFormSchema: FormSchema[] = [
|
||||||
@ -35,11 +30,6 @@ export const formSchema: FormSchema[] = [
|
|||||||
label: '课程id',
|
label: '课程id',
|
||||||
field: 'courseId',
|
field: 'courseId',
|
||||||
component: 'Input',
|
component: 'Input',
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '邀请码',
|
|
||||||
field: 'inviteCode',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
},
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
// TODO 主键隐藏字段,目前写死为ID
|
||||||
{
|
{
|
||||||
@ -54,7 +44,6 @@ export const formSchema: FormSchema[] = [
|
|||||||
export const superQuerySchema = {
|
export const superQuerySchema = {
|
||||||
name: {title: '班级名',order: 0,view: 'text', type: 'string',},
|
name: {title: '班级名',order: 0,view: 'text', type: 'string',},
|
||||||
courseId: {title: '课程id',order: 1,view: 'text', type: 'string',},
|
courseId: {title: '课程id',order: 1,view: 'text', type: 'string',},
|
||||||
inviteCode: {title: '邀请码',order: 2,view: 'text', type: 'string',},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -61,7 +61,7 @@
|
|||||||
//注册table数据
|
//注册table数据
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
||||||
tableProps:{
|
tableProps:{
|
||||||
title: 'aiol_class',
|
title: '班级',
|
||||||
api: list,
|
api: list,
|
||||||
columns,
|
columns,
|
||||||
canResize:true,
|
canResize:true,
|
||||||
@ -91,7 +91,7 @@
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
exportConfig: {
|
exportConfig: {
|
||||||
name:"aiol_class",
|
name:"班级",
|
||||||
url: getExportUrl,
|
url: getExportUrl,
|
||||||
params: queryParam,
|
params: queryParam,
|
||||||
},
|
},
|
||||||
|
@ -106,21 +106,6 @@ export const columns: BasicColumn[] = [
|
|||||||
align:"center",
|
align:"center",
|
||||||
dataIndex: 'izAi'
|
dataIndex: 'izAi'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: '离开页面是否暂停视频播放',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'pauseExit'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否允许倍速播放',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'allowSpeed'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否显示字幕',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'showSubtitle'
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
//查询数据
|
//查询数据
|
||||||
export const searchFormSchema: FormSchema[] = [
|
export const searchFormSchema: FormSchema[] = [
|
||||||
@ -253,21 +238,6 @@ export const formSchema: FormSchema[] = [
|
|||||||
label: '是否ai伴学模式',
|
label: '是否ai伴学模式',
|
||||||
field: 'izAi',
|
field: 'izAi',
|
||||||
component: 'InputNumber',
|
component: 'InputNumber',
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '离开页面是否暂停视频播放',
|
|
||||||
field: 'pauseExit',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否允许倍速播放',
|
|
||||||
field: 'allowSpeed',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '是否显示字幕',
|
|
||||||
field: 'showSubtitle',
|
|
||||||
component: 'InputNumber',
|
|
||||||
},
|
},
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
// TODO 主键隐藏字段,目前写死为ID
|
||||||
{
|
{
|
||||||
@ -300,9 +270,6 @@ export const superQuerySchema = {
|
|||||||
status: {title: '状态',order: 17,view: 'number', type: 'number',dictCode: 'course_status',},
|
status: {title: '状态',order: 17,view: 'number', type: 'number',dictCode: 'course_status',},
|
||||||
question: {title: '常见问题',order: 18,view: 'umeditor', type: 'string',},
|
question: {title: '常见问题',order: 18,view: 'umeditor', type: 'string',},
|
||||||
izAi: {title: '是否ai伴学模式',order: 19,view: 'number', type: 'number',},
|
izAi: {title: '是否ai伴学模式',order: 19,view: 'number', type: 'number',},
|
||||||
pauseExit: {title: '离开页面是否暂停视频播放',order: 20,view: 'number', type: 'number',},
|
|
||||||
allowSpeed: {title: '是否允许倍速播放',order: 21,view: 'number', type: 'number',},
|
|
||||||
showSubtitle: {title: '是否显示字幕',order: 22,view: 'number', type: 'number',},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,64 +0,0 @@
|
|||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { useMessage } from "/@/hooks/web/useMessage";
|
|
||||||
|
|
||||||
const { createConfirm } = useMessage();
|
|
||||||
|
|
||||||
enum Api {
|
|
||||||
list = '/aiol/aiolUserFollow/list',
|
|
||||||
save='/aiol/aiolUserFollow/add',
|
|
||||||
edit='/aiol/aiolUserFollow/edit',
|
|
||||||
deleteOne = '/aiol/aiolUserFollow/delete',
|
|
||||||
deleteBatch = '/aiol/aiolUserFollow/deleteBatch',
|
|
||||||
importExcel = '/aiol/aiolUserFollow/importExcel',
|
|
||||||
exportXls = '/aiol/aiolUserFollow/exportXls',
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 导出api
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const getExportUrl = Api.exportXls;
|
|
||||||
/**
|
|
||||||
* 导入api
|
|
||||||
*/
|
|
||||||
export const getImportUrl = Api.importExcel;
|
|
||||||
/**
|
|
||||||
* 列表接口
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const list = (params) =>
|
|
||||||
defHttp.get({url: Api.list, params});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除单个
|
|
||||||
*/
|
|
||||||
export const deleteOne = (params,handleSuccess) => {
|
|
||||||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const batchDelete = (params, handleSuccess) => {
|
|
||||||
createConfirm({
|
|
||||||
iconType: 'warning',
|
|
||||||
title: '确认删除',
|
|
||||||
content: '是否删除选中数据',
|
|
||||||
okText: '确认',
|
|
||||||
cancelText: '取消',
|
|
||||||
onOk: () => {
|
|
||||||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 保存或者更新
|
|
||||||
* @param params
|
|
||||||
*/
|
|
||||||
export const saveOrUpdate = (params, isUpdate) => {
|
|
||||||
let url = isUpdate ? Api.edit : Api.save;
|
|
||||||
return defHttp.post({url: url, params});
|
|
||||||
}
|
|
@ -1,56 +0,0 @@
|
|||||||
import {BasicColumn} from '/@/components/Table';
|
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
|
||||||
export const columns: BasicColumn[] = [
|
|
||||||
{
|
|
||||||
title: '关注者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'followerId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '被关注者id',
|
|
||||||
align:"center",
|
|
||||||
dataIndex: 'followedId'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//查询数据
|
|
||||||
export const searchFormSchema: FormSchema[] = [
|
|
||||||
];
|
|
||||||
//表单数据
|
|
||||||
export const formSchema: FormSchema[] = [
|
|
||||||
{
|
|
||||||
label: '关注者id',
|
|
||||||
field: 'followerId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '被关注者id',
|
|
||||||
field: 'followedId',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
|
||||||
{
|
|
||||||
label: '',
|
|
||||||
field: 'id',
|
|
||||||
component: 'Input',
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 高级查询数据
|
|
||||||
export const superQuerySchema = {
|
|
||||||
followerId: {title: '关注者id',order: 0,view: 'text', type: 'string',},
|
|
||||||
followedId: {title: '被关注者id',order: 1,view: 'text', type: 'string',},
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 流程表单调用这个方法获取formSchema
|
|
||||||
* @param param
|
|
||||||
*/
|
|
||||||
export function getBpmFormSchema(_formData): FormSchema[]{
|
|
||||||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
|
|
||||||
return formSchema;
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--引用表格-->
|
|
||||||
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
||||||
<!--插槽:table标题-->
|
|
||||||
<template #tableTitle>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_user_follow:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
||||||
<a-button type="primary" v-auth="'aiol:aiol_user_follow:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
||||||
<j-upload-button type="primary" v-auth="'aiol:aiol_user_follow:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
||||||
|
|
||||||
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
||||||
<template #overlay>
|
|
||||||
<a-menu>
|
|
||||||
<a-menu-item key="1" @click="batchHandleDelete">
|
|
||||||
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
||||||
删除
|
|
||||||
</a-menu-item>
|
|
||||||
</a-menu>
|
|
||||||
</template>
|
|
||||||
<a-button v-auth="'aiol:aiol_user_follow:deleteBatch'">批量操作
|
|
||||||
<Icon icon="mdi:chevron-down"></Icon>
|
|
||||||
</a-button>
|
|
||||||
</a-dropdown>
|
|
||||||
<!-- 高级查询 -->
|
|
||||||
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
||||||
</template>
|
|
||||||
<!--操作栏-->
|
|
||||||
<template #action="{ record }">
|
|
||||||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
||||||
</template>
|
|
||||||
<!--字段回显插槽-->
|
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
||||||
</template>
|
|
||||||
</BasicTable>
|
|
||||||
<!-- 表单区域 -->
|
|
||||||
<AiolUserFollowModal @register="registerModal" @success="handleSuccess"></AiolUserFollowModal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" name="aiol-aiolUserFollow" setup>
|
|
||||||
import {ref, reactive, computed, unref} from 'vue';
|
|
||||||
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
||||||
import {useModal} from '/@/components/Modal';
|
|
||||||
import { useListPage } from '/@/hooks/system/useListPage'
|
|
||||||
import AiolUserFollowModal from './components/AiolUserFollowModal.vue'
|
|
||||||
import {columns, searchFormSchema, superQuerySchema} from './AiolUserFollow.data';
|
|
||||||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AiolUserFollow.api';
|
|
||||||
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
const queryParam = reactive<any>({});
|
|
||||||
const checkedKeys = ref<Array<string | number>>([]);
|
|
||||||
const userStore = useUserStore();
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
//注册model
|
|
||||||
const [registerModal, {openModal}] = useModal();
|
|
||||||
//注册table数据
|
|
||||||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
||||||
tableProps:{
|
|
||||||
title: '关注关系',
|
|
||||||
api: list,
|
|
||||||
columns,
|
|
||||||
canResize:true,
|
|
||||||
formConfig: {
|
|
||||||
//labelWidth: 120,
|
|
||||||
schemas: searchFormSchema,
|
|
||||||
autoSubmitOnEnter:true,
|
|
||||||
showAdvancedButton:true,
|
|
||||||
fieldMapToNumber: [
|
|
||||||
],
|
|
||||||
fieldMapToTime: [
|
|
||||||
],
|
|
||||||
},
|
|
||||||
actionColumn: {
|
|
||||||
width: 120,
|
|
||||||
fixed:'right'
|
|
||||||
},
|
|
||||||
beforeFetch: (params) => {
|
|
||||||
if (params && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (params[key]) {
|
|
||||||
params[key] = getDateByPicker(params[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Object.assign(params, queryParam);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exportConfig: {
|
|
||||||
name:"关注关系",
|
|
||||||
url: getExportUrl,
|
|
||||||
params: queryParam,
|
|
||||||
},
|
|
||||||
importConfig: {
|
|
||||||
url: getImportUrl,
|
|
||||||
success: handleSuccess
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
||||||
|
|
||||||
// 高级查询配置
|
|
||||||
const superQueryConfig = reactive(superQuerySchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 高级查询事件
|
|
||||||
*/
|
|
||||||
function handleSuperQuery(params) {
|
|
||||||
Object.keys(params).map((k) => {
|
|
||||||
queryParam[k] = params[k];
|
|
||||||
});
|
|
||||||
reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 新增事件
|
|
||||||
*/
|
|
||||||
function handleAdd() {
|
|
||||||
openModal(true, {
|
|
||||||
isUpdate: false,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 编辑事件
|
|
||||||
*/
|
|
||||||
function handleEdit(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 详情
|
|
||||||
*/
|
|
||||||
function handleDetail(record: Recordable) {
|
|
||||||
openModal(true, {
|
|
||||||
record,
|
|
||||||
isUpdate: true,
|
|
||||||
showFooter: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 删除事件
|
|
||||||
*/
|
|
||||||
async function handleDelete(record) {
|
|
||||||
await deleteOne({id: record.id}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 批量删除事件
|
|
||||||
*/
|
|
||||||
async function batchHandleDelete() {
|
|
||||||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 成功回调
|
|
||||||
*/
|
|
||||||
function handleSuccess() {
|
|
||||||
(selectedRowKeys.value = []) && reload();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 操作栏
|
|
||||||
*/
|
|
||||||
function getTableAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '编辑',
|
|
||||||
onClick: handleEdit.bind(null, record),
|
|
||||||
auth: 'aiol:aiol_user_follow:edit'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 下拉操作栏
|
|
||||||
*/
|
|
||||||
function getDropDownAction(record){
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: '详情',
|
|
||||||
onClick: handleDetail.bind(null, record),
|
|
||||||
}, {
|
|
||||||
label: '删除',
|
|
||||||
popConfirm: {
|
|
||||||
title: '是否确认删除',
|
|
||||||
confirm: handleDelete.bind(null, record),
|
|
||||||
placement: 'topLeft',
|
|
||||||
},
|
|
||||||
auth: 'aiol:aiol_user_follow:delete'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
:deep(.ant-picker),:deep(.ant-input-number){
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109026120430', NULL, '会话', '/aiol/aiolChatList', 'aiol/AiolChatList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120431', '2025091109026120430', '添加会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120432', '2025091109026120430', '编辑会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120433', '2025091109026120430', '删除会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120434', '2025091109026120430', '批量删除会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120435', '2025091109026120430', '导出excel_会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026120436', '2025091109026120430', '导入excel_会话', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:43', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109026150480', NULL, '会话用户', '/aiol/aiolChatMemberList', 'aiol/AiolChatMemberList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150481', '2025091109026150480', '添加会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150482', '2025091109026150480', '编辑会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150483', '2025091109026150480', '删除会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150484', '2025091109026150480', '批量删除会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150485', '2025091109026150480', '导出excel_会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109026150486', '2025091109026150480', '导入excel_会话用户', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_member:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:48', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109021940530', NULL, '会话消息', '/aiol/aiolChatMessageList', 'aiol/AiolChatMessageList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940531', '2025091109021940530', '添加会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940532', '2025091109021940530', '编辑会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940533', '2025091109021940530', '删除会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940534', '2025091109021940530', '批量删除会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940535', '2025091109021940530', '导出excel_会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109021940536', '2025091109021940530', '导入excel_会话消息', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_chat_message:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:53', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,26 +0,0 @@
|
|||||||
-- 注意:该页面对应的前台目录为views/aiol文件夹下
|
|
||||||
-- 如果你想更改到其他目录,请修改sql中component字段对应的值
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
|
|
||||||
VALUES ('2025091109029930370', NULL, '关注关系', '/aiol/aiolUserFollowList', 'aiol/AiolUserFollowList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0);
|
|
||||||
|
|
||||||
-- 权限控制sql
|
|
||||||
-- 新增
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930371', '2025091109029930370', '添加关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 编辑
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930372', '2025091109029930370', '编辑关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930373', '2025091109029930370', '删除关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 批量删除
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930374', '2025091109029930370', '批量删除关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导出excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930375', '2025091109029930370', '导出excel_关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
||||||
-- 导入excel
|
|
||||||
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
|
|
||||||
VALUES ('2025091109029930376', '2025091109029930370', '导入excel_关注关系', NULL, NULL, 0, NULL, NULL, 2, 'aiol:aiol_user_follow:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-09-11 09:02:37', NULL, NULL, 0, 0, '1', 0);
|
|
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div style="min-height: 400px">
|
|
||||||
<BasicForm @register="registerForm"></BasicForm>
|
|
||||||
<div style="width: 100%;text-align: center" v-if="!formDisabled">
|
|
||||||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {computed, defineComponent} from 'vue';
|
|
||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { propTypes } from '/@/utils/propTypes';
|
|
||||||
import {getBpmFormSchema} from '../AiolChat.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChat.api';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "AiolChatForm",
|
|
||||||
components:{
|
|
||||||
BasicForm
|
|
||||||
},
|
|
||||||
props:{
|
|
||||||
formData: propTypes.object.def({}),
|
|
||||||
formBpm: propTypes.bool.def(true),
|
|
||||||
},
|
|
||||||
setup(props){
|
|
||||||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: getBpmFormSchema(props.formData),
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
|
|
||||||
const formDisabled = computed(()=>{
|
|
||||||
if(props.formData.disabled === false){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
let formData = {};
|
|
||||||
const queryByIdUrl = '/aiol/aiolChat/queryById';
|
|
||||||
async function initFormData(){
|
|
||||||
let params = {id: props.formData.dataId};
|
|
||||||
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
||||||
formData = {...data}
|
|
||||||
//设置表单的值
|
|
||||||
await setFieldsValue(formData);
|
|
||||||
//默认是禁用
|
|
||||||
await setProps({disabled: formDisabled.value})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function submitForm() {
|
|
||||||
let data = getFieldsValue();
|
|
||||||
let params = Object.assign({}, formData, data);
|
|
||||||
console.log('表单数据', params)
|
|
||||||
await saveOrUpdate(params, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
initFormData();
|
|
||||||
|
|
||||||
return {
|
|
||||||
registerForm,
|
|
||||||
formDisabled,
|
|
||||||
submitForm,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div style="min-height: 400px">
|
|
||||||
<BasicForm @register="registerForm"></BasicForm>
|
|
||||||
<div style="width: 100%;text-align: center" v-if="!formDisabled">
|
|
||||||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {computed, defineComponent} from 'vue';
|
|
||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { propTypes } from '/@/utils/propTypes';
|
|
||||||
import {getBpmFormSchema} from '../AiolChatMember.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMember.api';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "AiolChatMemberForm",
|
|
||||||
components:{
|
|
||||||
BasicForm
|
|
||||||
},
|
|
||||||
props:{
|
|
||||||
formData: propTypes.object.def({}),
|
|
||||||
formBpm: propTypes.bool.def(true),
|
|
||||||
},
|
|
||||||
setup(props){
|
|
||||||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: getBpmFormSchema(props.formData),
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
|
|
||||||
const formDisabled = computed(()=>{
|
|
||||||
if(props.formData.disabled === false){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
let formData = {};
|
|
||||||
const queryByIdUrl = '/aiol/aiolChatMember/queryById';
|
|
||||||
async function initFormData(){
|
|
||||||
let params = {id: props.formData.dataId};
|
|
||||||
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
||||||
formData = {...data}
|
|
||||||
//设置表单的值
|
|
||||||
await setFieldsValue(formData);
|
|
||||||
//默认是禁用
|
|
||||||
await setProps({disabled: formDisabled.value})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function submitForm() {
|
|
||||||
let data = getFieldsValue();
|
|
||||||
let params = Object.assign({}, formData, data);
|
|
||||||
console.log('表单数据', params)
|
|
||||||
await saveOrUpdate(params, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
initFormData();
|
|
||||||
|
|
||||||
return {
|
|
||||||
registerForm,
|
|
||||||
formDisabled,
|
|
||||||
submitForm,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
@ -1,99 +0,0 @@
|
|||||||
<template>
|
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
||||||
<BasicForm @register="registerForm" name="AiolChatMemberForm" />
|
|
||||||
</BasicModal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {ref, computed, unref, reactive} from 'vue';
|
|
||||||
import {BasicModal, useModalInner} from '/@/components/Modal';
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {formSchema} from '../AiolChatMember.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMember.api';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
// Emits声明
|
|
||||||
const emit = defineEmits(['register','success']);
|
|
||||||
const isUpdate = ref(true);
|
|
||||||
const isDetail = ref(false);
|
|
||||||
//表单配置
|
|
||||||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: formSchema,
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
//表单赋值
|
|
||||||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
||||||
//重置表单
|
|
||||||
await resetFields();
|
|
||||||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
||||||
isUpdate.value = !!data?.isUpdate;
|
|
||||||
isDetail.value = !!data?.showFooter;
|
|
||||||
if (unref(isUpdate)) {
|
|
||||||
//表单赋值
|
|
||||||
await setFieldsValue({
|
|
||||||
...data.record,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 隐藏底部时禁用整个表单
|
|
||||||
setProps({ disabled: !data?.showFooter })
|
|
||||||
});
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
//设置标题
|
|
||||||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
||||||
//表单提交事件
|
|
||||||
async function handleSubmit(v) {
|
|
||||||
try {
|
|
||||||
let values = await validate();
|
|
||||||
// 预处理日期数据
|
|
||||||
changeDateValue(values);
|
|
||||||
setModalProps({confirmLoading: true});
|
|
||||||
//提交表单
|
|
||||||
await saveOrUpdate(values, isUpdate.value);
|
|
||||||
//关闭弹窗
|
|
||||||
closeModal();
|
|
||||||
//刷新列表
|
|
||||||
emit('success');
|
|
||||||
} catch ({ errorFields }) {
|
|
||||||
if (errorFields) {
|
|
||||||
const firstField = errorFields[0];
|
|
||||||
if (firstField) {
|
|
||||||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Promise.reject(errorFields);
|
|
||||||
} finally {
|
|
||||||
setModalProps({confirmLoading: false});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理日期值
|
|
||||||
* @param formData 表单数据
|
|
||||||
*/
|
|
||||||
const changeDateValue = (formData) => {
|
|
||||||
if (formData && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (formData[key]) {
|
|
||||||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
/** 时间和数字输入框样式 */
|
|
||||||
:deep(.ant-input-number) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-calendar-picker) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div style="min-height: 400px">
|
|
||||||
<BasicForm @register="registerForm"></BasicForm>
|
|
||||||
<div style="width: 100%;text-align: center" v-if="!formDisabled">
|
|
||||||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {computed, defineComponent} from 'vue';
|
|
||||||
import {defHttp} from '/@/utils/http/axios';
|
|
||||||
import { propTypes } from '/@/utils/propTypes';
|
|
||||||
import {getBpmFormSchema} from '../AiolChatMessage.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMessage.api';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "AiolChatMessageForm",
|
|
||||||
components:{
|
|
||||||
BasicForm
|
|
||||||
},
|
|
||||||
props:{
|
|
||||||
formData: propTypes.object.def({}),
|
|
||||||
formBpm: propTypes.bool.def(true),
|
|
||||||
},
|
|
||||||
setup(props){
|
|
||||||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: getBpmFormSchema(props.formData),
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
|
|
||||||
const formDisabled = computed(()=>{
|
|
||||||
if(props.formData.disabled === false){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
let formData = {};
|
|
||||||
const queryByIdUrl = '/aiol/aiolChatMessage/queryById';
|
|
||||||
async function initFormData(){
|
|
||||||
let params = {id: props.formData.dataId};
|
|
||||||
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
||||||
formData = {...data}
|
|
||||||
//设置表单的值
|
|
||||||
await setFieldsValue(formData);
|
|
||||||
//默认是禁用
|
|
||||||
await setProps({disabled: formDisabled.value})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function submitForm() {
|
|
||||||
let data = getFieldsValue();
|
|
||||||
let params = Object.assign({}, formData, data);
|
|
||||||
console.log('表单数据', params)
|
|
||||||
await saveOrUpdate(params, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
initFormData();
|
|
||||||
|
|
||||||
return {
|
|
||||||
registerForm,
|
|
||||||
formDisabled,
|
|
||||||
submitForm,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
@ -1,99 +0,0 @@
|
|||||||
<template>
|
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
||||||
<BasicForm @register="registerForm" name="AiolChatMessageForm" />
|
|
||||||
</BasicModal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {ref, computed, unref, reactive} from 'vue';
|
|
||||||
import {BasicModal, useModalInner} from '/@/components/Modal';
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {formSchema} from '../AiolChatMessage.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChatMessage.api';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
// Emits声明
|
|
||||||
const emit = defineEmits(['register','success']);
|
|
||||||
const isUpdate = ref(true);
|
|
||||||
const isDetail = ref(false);
|
|
||||||
//表单配置
|
|
||||||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: formSchema,
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
//表单赋值
|
|
||||||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
||||||
//重置表单
|
|
||||||
await resetFields();
|
|
||||||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
||||||
isUpdate.value = !!data?.isUpdate;
|
|
||||||
isDetail.value = !!data?.showFooter;
|
|
||||||
if (unref(isUpdate)) {
|
|
||||||
//表单赋值
|
|
||||||
await setFieldsValue({
|
|
||||||
...data.record,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 隐藏底部时禁用整个表单
|
|
||||||
setProps({ disabled: !data?.showFooter })
|
|
||||||
});
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
//设置标题
|
|
||||||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
||||||
//表单提交事件
|
|
||||||
async function handleSubmit(v) {
|
|
||||||
try {
|
|
||||||
let values = await validate();
|
|
||||||
// 预处理日期数据
|
|
||||||
changeDateValue(values);
|
|
||||||
setModalProps({confirmLoading: true});
|
|
||||||
//提交表单
|
|
||||||
await saveOrUpdate(values, isUpdate.value);
|
|
||||||
//关闭弹窗
|
|
||||||
closeModal();
|
|
||||||
//刷新列表
|
|
||||||
emit('success');
|
|
||||||
} catch ({ errorFields }) {
|
|
||||||
if (errorFields) {
|
|
||||||
const firstField = errorFields[0];
|
|
||||||
if (firstField) {
|
|
||||||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Promise.reject(errorFields);
|
|
||||||
} finally {
|
|
||||||
setModalProps({confirmLoading: false});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理日期值
|
|
||||||
* @param formData 表单数据
|
|
||||||
*/
|
|
||||||
const changeDateValue = (formData) => {
|
|
||||||
if (formData && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (formData[key]) {
|
|
||||||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
/** 时间和数字输入框样式 */
|
|
||||||
:deep(.ant-input-number) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-calendar-picker) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,99 +0,0 @@
|
|||||||
<template>
|
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
||||||
<BasicForm @register="registerForm" name="AiolChatForm" />
|
|
||||||
</BasicModal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {ref, computed, unref, reactive} from 'vue';
|
|
||||||
import {BasicModal, useModalInner} from '/@/components/Modal';
|
|
||||||
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
||||||
import {formSchema} from '../AiolChat.data';
|
|
||||||
import {saveOrUpdate} from '../AiolChat.api';
|
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
|
||||||
import { getDateByPicker } from '/@/utils';
|
|
||||||
const { createMessage } = useMessage();
|
|
||||||
// Emits声明
|
|
||||||
const emit = defineEmits(['register','success']);
|
|
||||||
const isUpdate = ref(true);
|
|
||||||
const isDetail = ref(false);
|
|
||||||
//表单配置
|
|
||||||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
||||||
labelWidth: 150,
|
|
||||||
schemas: formSchema,
|
|
||||||
showActionButtonGroup: false,
|
|
||||||
baseColProps: {span: 24}
|
|
||||||
});
|
|
||||||
//表单赋值
|
|
||||||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
||||||
//重置表单
|
|
||||||
await resetFields();
|
|
||||||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
||||||
isUpdate.value = !!data?.isUpdate;
|
|
||||||
isDetail.value = !!data?.showFooter;
|
|
||||||
if (unref(isUpdate)) {
|
|
||||||
//表单赋值
|
|
||||||
await setFieldsValue({
|
|
||||||
...data.record,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 隐藏底部时禁用整个表单
|
|
||||||
setProps({ disabled: !data?.showFooter })
|
|
||||||
});
|
|
||||||
//日期个性化选择
|
|
||||||
const fieldPickers = reactive({
|
|
||||||
});
|
|
||||||
//设置标题
|
|
||||||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
||||||
//表单提交事件
|
|
||||||
async function handleSubmit(v) {
|
|
||||||
try {
|
|
||||||
let values = await validate();
|
|
||||||
// 预处理日期数据
|
|
||||||
changeDateValue(values);
|
|
||||||
setModalProps({confirmLoading: true});
|
|
||||||
//提交表单
|
|
||||||
await saveOrUpdate(values, isUpdate.value);
|
|
||||||
//关闭弹窗
|
|
||||||
closeModal();
|
|
||||||
//刷新列表
|
|
||||||
emit('success');
|
|
||||||
} catch ({ errorFields }) {
|
|
||||||
if (errorFields) {
|
|
||||||
const firstField = errorFields[0];
|
|
||||||
if (firstField) {
|
|
||||||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Promise.reject(errorFields);
|
|
||||||
} finally {
|
|
||||||
setModalProps({confirmLoading: false});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理日期值
|
|
||||||
* @param formData 表单数据
|
|
||||||
*/
|
|
||||||
const changeDateValue = (formData) => {
|
|
||||||
if (formData && fieldPickers) {
|
|
||||||
for (let key in fieldPickers) {
|
|
||||||
if (formData[key]) {
|
|
||||||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
/** 时间和数字输入框样式 */
|
|
||||||
:deep(.ant-input-number) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-calendar-picker) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user