Kaynağa Gözat

fix: 提示修改

xdd 2 gün önce
ebeveyn
işleme
c78d59efdc

+ 2 - 2
fs-user-app/src/main/java/com/fs/app/controller/UserController.java

@@ -156,10 +156,10 @@ public class UserController extends  AppBaseController {
         FsDoctor doctor= doctorService.selectFsDoctorByUserId(Long.parseLong(getUserId()));
         if(doctor!=null){
             if(doctor.getIsAudit().equals(0)){
-                return R.error("您已提交申请,等待审核...");
+                return R.error(String.format("您已提交申请: %s,等待审核...",doctor.getDoctorName()));
             }
             else if(doctor.getIsAudit().equals(1)){
-                return R.error("您已提交申请");
+                return R.error(String.format("您已提交申请 提交信息: %s",doctor.getDoctorName()));
             }
         }
         doctor=new FsDoctor();