Administrator
2025-05-28 f16f74cacb9ef0ae4be89ed15353b6a449479d8c
src/main/java/cc/mrbird/febs/mall/controller/CommonController.java
@@ -210,6 +210,20 @@
        return new FebsResponse().success().data(apiCommonSetVo);
    }
    @ApiOperation(value = "小程序首页头部背景")
    @GetMapping(value = "/indexHeadPng")
    public FebsResponse indexHeadPng() {
        String pngUrl = commonService.getDicByTypeAndCode(
                CommonDictionaryEnum.VIDEO_URL_INDEX.getType(),
                CommonDictionaryEnum.VIDEO_URL_INDEX.getCode()
        );
        if (pngUrl == null) {
            pngUrl = "";
        }
        return new FebsResponse().success().data(pngUrl);
    }
    @ApiOperation(value = "小程序开屏页设置")
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = ApiIndexSetVo.class)