提交代码

dev_xds
姜玉琦 2024-04-29 00:18:52 +08:00
parent 72b976a06d
commit 95d0df9c64
4 changed files with 4 additions and 5 deletions

View File

@ -279,7 +279,7 @@ export default {
this.onOpen = true; this.onOpen = true;
this.title = options.procDefName; this.title = options.procDefName;
// //
if (options.category == "9") { if (options.procDefKey == "flow_fbzzsp_fbszzsp") {
this.fbAptitude = true; this.fbAptitude = true;
} }
this.initFormDate(options.procInsId); this.initFormDate(options.procInsId);

View File

@ -294,7 +294,7 @@ export default {
this.deptName = store.getters.dept.deptName; this.deptName = store.getters.dept.deptName;
this.nickName = store.getters.name; this.nickName = store.getters.name;
// //
if (options.category == "9") { if (options.procDefKey == "flow_fbzzsp_fbszzsp") {
this.fbAptitude = true; this.fbAptitude = true;
} }
const self = this; const self = this;

View File

@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RestController;
*/ */
@RestController @RestController
@RequestMapping("/wechat/publics") @RequestMapping("/wechat/publics")
public class PublicsController { public class WxPublicsController {
/** /**
* *

View File

@ -79,8 +79,7 @@ public class WechatUserLoginController extends BaseController {
String key="wechat_openIdLogin-"+loginBody.getOpenId(); String key="wechat_openIdLogin-"+loginBody.getOpenId();
Object obj=redisCache.getCacheObject(key); Object obj=redisCache.getCacheObject(key);
if(obj!=null){ if(obj!=null){
data = (Map<String,Object>) obj; ajax.put("data",obj);
ajax.put("data",data);
return ajax; return ajax;
} }
data = wechatUserLoginService.getLoginUserByOpenId(loginBody.getOpenId()); data = wechatUserLoginService.getLoginUserByOpenId(loginBody.getOpenId());