From 63c8a365039c192945c3a54f2a44e7e4dcf512a2 Mon Sep 17 00:00:00 2001
From: yanghui <2536613402@qq.com>
Date: 星期一, 10 十月 2022 16:23:20 +0800
Subject: [PATCH] #feat 提交状态码

---
 springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java
index 6910293..85ef87b 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java
@@ -79,7 +79,7 @@
         if (StrUtil.isNotBlank(detail)) {
             String result = checkService.checkMessageBy(detail, openid, appId);
             if (StrUtil.isNotBlank(result)) {
-                return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息");
+                return R.fail(501, "填写内容存在 " + result + " 违规信息");
             }
         }
 
@@ -87,7 +87,7 @@
         String photoPathList = comActEasyPhotoVO.getPhotoPathList();
         if (StrUtil.isNotBlank(photoPathList)) {
             if (!checkService.checkImageBy(photoPathList, appId)) {
-                return R.fail(Constants.NOTICE_FAIL, "上传图片存在违规信息");
+                return R.fail(501, "上传图片存在违规信息");
             }
         }
         LoginUserInfoVO loginUserInfo = this.getLoginUserInfo();
@@ -184,7 +184,7 @@
         if (StrUtil.isNotBlank(comment)) {
             String result = checkService.checkMessageBy(comment, openid, appId);
             if (StrUtil.isNotBlank(result)) {
-                return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息");
+                return R.fail(501, "填写内容存在 " + result + " 违规信息");
             }
         }
         comActEasyPhotoCommentDTO.setUserId(this.getUserId());
@@ -235,7 +235,7 @@
         if (StrUtil.isNotBlank(msg)) {
             String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId());
             if (StrUtil.isNotBlank(result)) {
-                return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息");
+                return R.fail(501, "填写内容存在 " + result + " 违规信息");
             }
         }
         LoginUserInfoVO loginUserInfo = this.getLoginUserInfo();
@@ -323,7 +323,7 @@
         if (StrUtil.isNotBlank(msg)) {
             String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId());
             if (StrUtil.isNotBlank(result)) {
-                return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息");
+                return R.fail(501, "填写内容存在 " + result + " 违规信息");
             }
         }
         LoginUserInfoVO loginUserInfo = this.getLoginUserInfo();
@@ -353,7 +353,7 @@
         if (StrUtil.isNotBlank(msg)) {
             String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId());
             if (StrUtil.isNotBlank(result)) {
-                return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息");
+                return R.fail(501, "填写内容存在 " + result + " 违规信息");
             }
         }
         LoginUserInfoVO loginUserInfo = this.getLoginUserInfo();

--
Gitblit v1.7.1