Compare commits

...

2 Commits

Author SHA1 Message Date
huangweixiong efaba0980d Merge branch 'dev' of http://192.168.124.50/wangliwen/share-platform into dev
* 'dev' of http://192.168.124.50/wangliwen/share-platform: (22 commits)
  1.新增查询部门及区市未配置审核人员列表接口 2.角色用户关联表新增修改时间,修改人及删除标志字段 3.修改用户数据变更时角色信息修改逻辑,关联数据由物理删除变为逻辑删除 4.调整其他设计用户角色关联表查询sql,增加删除标志条件
  能力使用导出表头调整
  统计删除知识库数据
  统计小数位数保留错误问题
  1.资金报表增加申请状态
  .
  1.资金报表新增按审核状态查询条件 2.能力统计-能力使用统计明细增加按提供部门查询
  。。。
  统计错误修复
  npe
  申请时增加价格字段
  1.资源重复申请判断逻辑修改 2.新增资金报表需求 3.西海岸已申请列表需求
  1.sql文件命名错误修改
  1.西海岸-已申请列表查询 2.token过期时间改为可配置 3.亚伟通知消息bug修复
  西海岸基础设施新需求-待申请列表增删改查接口 已申请查询,删除接口 超级管理员删除能力数据未删除下架流程相关数据bug修复
  金宏版本不支持,想其他办法
  政务云增加 类型 查询
  ...
  政务云服务资源 本地数据接口
  后台管理能力统计-能力使用统计查询申请部门列表接口修改-只查询有申请记录的部门
  ...
2022-11-25 16:23:32 +08:00
huangweixiong b5cb7d8441 去掉后台写cookie 2022-11-25 16:22:44 +08:00
1 changed files with 6 additions and 6 deletions

View File

@ -237,9 +237,9 @@ public class Oauth2Filter extends AuthenticatingFilter {
Result<Map> result = sysUserTokenService.createToken(sysUserEntity.getId());
Object token = result.getData().get(Constant.TOKEN_HEADER);
String currentToken = (String) token;
Cookie cookie = new Cookie(Constant.TOKEN_HEADER, currentToken);
cookie.setPath("/");
response.addCookie(cookie);
// Cookie cookie = new Cookie(Constant.TOKEN_HEADER, currentToken);
// cookie.setPath("/");
// response.addCookie(cookie);
response.addHeader(Constant.TOKEN_HEADER, currentToken);
//回调不涉及其他页面回调先写死回调首页
String removeCreditParame = "http://" + urlBuilder.getHost() + ":" + urlBuilder.getPort() + "/#/home";
@ -267,9 +267,9 @@ public class Oauth2Filter extends AuthenticatingFilter {
Result<Map> result = sysUserTokenService.createToken(sysUserEntity.getId());
Object token = result.getData().get(Constant.TOKEN_HEADER);
String currentToken = (String) token;
Cookie cookie = new Cookie(Constant.TOKEN_HEADER, currentToken);
cookie.setPath("/");
response.addCookie(cookie);
// Cookie cookie = new Cookie(Constant.TOKEN_HEADER, currentToken);
// cookie.setPath("/");
// response.addCookie(cookie);
response.addHeader(Constant.TOKEN_HEADER, currentToken);
//去掉凭证参数
String removeCreditParame = ssoValidator.removeCreditParame(requestUri);