# Conflicts:
#	src/main/resources/static/assets/platform/js/util/commonUtil.js
#	src/main/resources/views/layouts/platform.html
This commit is contained in:
那些花儿
2025-07-28 10:51:58 +08:00
3 changed files with 11 additions and 3 deletions
@@ -84,6 +84,7 @@ RoleConstant {
LOVE_ASSIST_WORK_GROUP_LEADER("爱心扶助小组组长"),
LOVE_ASSIST_WORK_GROUP_MEMBER("爱心扶助小组审批员"),
PSYCHOLOGY_DOCTOR("心理咨询师"),
;
/**
* 避免和枚举类的name冲突
@@ -136,4 +136,12 @@ public class DateUtil {
return day + "" + hour + "小时" + min + "分钟";
}
public static long formatDate(String data) {
try {
return new SimpleDateFormat("yyyy-MM-dd HH:mm").parse(data).getTime();
} catch (ParseException e) {
e.printStackTrace();
return 0;
}
}
}
@@ -17,7 +17,7 @@ const commonUtil = {
if (response.config.responseType === "blob") {
return response
}
if (response.data && response.data.code !== 0 && response.data.code !== 200) {
if (response.data && response.data.code !== 0 && response.data.code !== 99) {
if (isMobile) {
vant.Toast(response.data.msg)
} else {
@@ -25,7 +25,7 @@ const commonUtil = {
}
return Promise.reject(response.data)
}
return response.data || response.result
return response.data
},
(error) => {
const userAgent = navigator.userAgent || navigator.vendor || window.opera
@@ -217,7 +217,6 @@ const commonUtil = {
function doSm2Encrypt(msgString) {
return sm2.doEncrypt(msgString, publicKey, cipherMode)
}
// SM2数组加密
function doSm2ArrayEncrypt(msgString) {
return sm2.doEncrypt(msgString, publicKey, cipherMode)