diff --git a/stdiet-admin/src/main/filters/local/application.yml b/stdiet-admin/src/main/filters/local/application.yml
index 6932d7b76..b3bead739 100644
--- a/stdiet-admin/src/main/filters/local/application.yml
+++ b/stdiet-admin/src/main/filters/local/application.yml
@@ -83,7 +83,7 @@ spring:
     druid:
       # 主库数据源
       master:
-        url: jdbc:mysql://47.115.23.82:3306/stdiet_test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+        url: jdbc:mysql://47.115.23.82:3306/stdiet?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
         password: gzDxPaZcSiXJpi2N
         username: root
       slave:
diff --git a/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysServicesTopicServiceImp.java b/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysServicesTopicServiceImp.java
index 941518c5b..1e57ffabd 100644
--- a/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysServicesTopicServiceImp.java
+++ b/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysServicesTopicServiceImp.java
@@ -171,7 +171,7 @@ public class SysServicesTopicServiceImp implements ISysServicesTopicService {
                 msgObj.put("type", WsUtils.WS_TYPE_NEW_CUSTOMER_REPLY);
                 msgObj.put("msg", "新客户回复");
                 msgObj.put("data", dataObj);
-                WebSocketServer.sendInfo(msgObj.toJSONString(), counts.get(i).getUid());
+                WebSocketServer.sendInfo(msgObj.toJSONString(), statusList.get(i).getUid());
             }
         } catch (IOException e) {
             e.printStackTrace();
diff --git a/stdiet-ui/src/views/custom/message/messageBrowser/Comment.vue b/stdiet-ui/src/views/custom/message/messageBrowser/Comment.vue
index db43c3cd8..04f56f3e1 100644
--- a/stdiet-ui/src/views/custom/message/messageBrowser/Comment.vue
+++ b/stdiet-ui/src/views/custom/message/messageBrowser/Comment.vue
@@ -86,6 +86,7 @@ export default {
 
       .reply_btn {
         margin-left: 16px;
+        color: #1890ff;
         cursor: pointer;
       }
     }
diff --git a/stdiet-ui/src/views/custom/message/messageBrowser/index.vue b/stdiet-ui/src/views/custom/message/messageBrowser/index.vue
index 836d84e1a..2e90a4659 100644
--- a/stdiet-ui/src/views/custom/message/messageBrowser/index.vue
+++ b/stdiet-ui/src/views/custom/message/messageBrowser/index.vue
@@ -57,7 +57,7 @@
         <div
           :style="{ marginBottom: '8px', fontSize: '12px', color: '#8c8c8c' }"
         >
-          回复:{{ replyTarget }}
+          回复 to:{{ replyTarget }}
         </div>
         <el-input
           type="textarea"
@@ -339,6 +339,7 @@ export default {
 
         .reply_btn {
           margin-left: 16px;
+          color: #1890ff;
           cursor: pointer;
         }
       }