chenw 7 роки тому
батько
коміт
5c8739226e

+ 1 - 1
applications/commons/commons-server/src/main/java/com/usoftchina/saas/commons/controller/ShareController.java

@@ -161,7 +161,7 @@ public class ShareController {
     private void buildQrcode(String basePath, String username, Long companyId, Long delay, String companyName, OutputStream outputStream) throws WriterException, IOException {
         String params = "username=" + username + "&companyId=" + companyId + "&timestamp=" + new Date().getTime() + "&delay=" + delay + "&companyName=" + companyName;
         String encodeParams = new String(UrlBase64.encode(params.getBytes()));
-        String text = basePath + "/invitation_mobile.html" + "?param=" + encodeParams;
+        String text = basePath + "/invitation_mobile_join.html" + "?param=" + encodeParams;
         int width = 140;
         int height = 140;
         String format = "png";