|
|
@@ -54,6 +54,7 @@ import com.fs.his.param.FsUserParam;
|
|
|
import com.fs.his.service.IFsUserIntegralLogsService;
|
|
|
import com.fs.his.service.IFsUserProjectTagService;
|
|
|
import com.fs.his.service.IFsUserWxService;
|
|
|
+import com.fs.his.utils.PhoneUtil;
|
|
|
import com.fs.his.vo.FsUserVO;
|
|
|
import com.fs.his.vo.FsUserExportListVO;
|
|
|
import com.fs.his.vo.FsUserFollowDoctorVO;
|
|
|
@@ -1240,7 +1241,11 @@ public class FsUserServiceImpl implements IFsUserService {
|
|
|
item.setStatus(userCompanyUser.getStatus()); // 取项目会员的状态
|
|
|
Map<Long, CompanyTag> tagMap = companyTagCacheService.queryAllTagMap();
|
|
|
if (item.getPhone() != null) {
|
|
|
- item.setPhone(ParseUtils.parsePhone(item.getPhone()));
|
|
|
+ if (item.getPhone().trim().length() == 11){
|
|
|
+ item.setPhone(ParseUtils.parsePhone(item.getPhone()));
|
|
|
+ } else {
|
|
|
+ item.setPhone(PhoneUtil.decryptPhoneMk(item.getPhone()));
|
|
|
+ }
|
|
|
}
|
|
|
String userTagByUserId = null;
|
|
|
if (item.getUserId() != null && item.getCompanyUserId() != null) {
|