guoshilong
2023-06-21 4bdde4f8171028442dd2d1da6f0be715cd676853
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/appmanage/controller/AppManageController.java
@@ -12,6 +12,7 @@
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.ObjectUtil;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.client.RestTemplate;
@@ -26,7 +27,7 @@
 * @Version 1.0
 */
@Slf4j
@Api(tags="app管理")
@Api(tags = "app管理")
@RestController
@RequestMapping("/app/manage")
@AllArgsConstructor
@@ -102,11 +103,9 @@
    */
   @ApiOperation(value = "app管理-获取微信小程序跳转链接", notes = "app管理-获取微信小程序跳转链接")
   @GetMapping(value = "/getMiniProgramPath")
   public R getMiniProgramPath(){
   public R getMiniProgramPath() {
      String wxAccessToken = WxUtils.getWxAccessToken();
      String url = WxUtils.WX_GET_GENERATESCHEME+"?access_token="+wxAccessToken;
      String url = WxUtils.WX_GET_GENERATESCHEME + "?access_token=" + wxAccessToken;
      RestTemplate template = new RestTemplate();
      Map<String, Object> params = new LinkedHashMap<>();
@@ -125,20 +124,24 @@
       */
      JSONObject jump_wxa = new JSONObject();
      jump_wxa.put("path","/pages/home/index");
      jump_wxa.put("query","");
      jump_wxa.put("env_version","release");
      params.put("jump_wxa",jump_wxa);
      params.put("is_expire",true);
      params.put("expire_type",1);
      params.put("expire_interval",1);
      jump_wxa.put("path", "/subPackage/user/historical/index");
      jump_wxa.put("query", "");
      jump_wxa.put("env_version", "release");
      params.put("jump_wxa", jump_wxa);
      params.put("is_expire", true);
      params.put("expire_type", 1);
      params.put("expire_interval", 1);
      String result = template.postForObject(url, params, String.class);
      JSONObject resultObj = (JSONObject)JSONObject.parse(result);
      JSONObject resultObj = (JSONObject) JSONObject.parse(result);
      String openLink = resultObj.getString("openlink");
      Integer errCode = resultObj.getInteger("errcode");
      String errMsg = resultObj.getString("errmsg");
      if (errCode.equals(0)) {
         return R.data(openLink);
      } else {
         return R.fail(errMsg);
      }
      return R.data(openLink);
   }
}