新版仿ok交易所-后端
1
zj
2025-07-10 f15406ac788fb4e17a630c4d48129943af89fb9c
trading-order-admin/src/main/java/com/yami/trading/admin/controller/c2c/BankCardController.java
@@ -87,18 +87,18 @@
            String methodType = String.valueOf((Integer) map.get("method_type"));
            if (map.containsKey("img")) {
                if (map.get("img") != null) {
                    map.put("img", awsS3OSSFileService.getUrl(map.get("img").toString()));
                    map.put("img", Constants.IMAGES_HTTP+map.get("img").toString());
                }
            }
            if (map.containsKey("method_img")) {
                if (map.get("method_img") != null) {
                    map.put("method_img", awsS3OSSFileService.getUrl(map.get("method_img").toString()));
                    map.put("method_img", Constants.IMAGES_HTTP+map.get("method_img").toString());
                }
            }
            if (map.containsKey("qrcode")) {
                if (map.get("qrcode") != null) {
                    if ((!map.get("qrcode").toString().startsWith("http"))){
                        map.put("qrcode", awsS3OSSFileService.getUrl(map.get("qrcode").toString()));
                        map.put("qrcode", Constants.IMAGES_HTTP+map.get("qrcode").toString());
                    }
                }
            }