|  | @@ -25,7 +25,7 @@ export const httpAjaxErrMsg = function <T extends axiosApiType, P extends Parame
 | 
	
		
			
				|  |  |          if (data.code !== 200) {
 | 
	
		
			
				|  |  |            ElMessage({
 | 
	
		
			
				|  |  |              showClose: true,
 | 
	
		
			
				|  |  | -            message: data.msg,
 | 
	
		
			
				|  |  | +            message: data.message,
 | 
	
		
			
				|  |  |              type: "error"
 | 
	
		
			
				|  |  |            })
 | 
	
		
			
				|  |  |          }
 | 
	
	
		
			
				|  | @@ -34,7 +34,7 @@ export const httpAjaxErrMsg = function <T extends axiosApiType, P extends Parame
 | 
	
		
			
				|  |  |        .catch(err => {
 | 
	
		
			
				|  |  |          ElMessage({
 | 
	
		
			
				|  |  |            showClose: true,
 | 
	
		
			
				|  |  | -          message: err.msg,
 | 
	
		
			
				|  |  | +          message: err.message,
 | 
	
		
			
				|  |  |            type: "error"
 | 
	
		
			
				|  |  |          })
 | 
	
		
			
				|  |  |          resolve(err)
 | 
	
	
		
			
				|  | @@ -69,7 +69,7 @@ export const httpAjaxLoadingErrMsg = function <T extends axiosApiType, P extends
 | 
	
		
			
				|  |  |          if (data.code !== 200) {
 | 
	
		
			
				|  |  |            ElMessage({
 | 
	
		
			
				|  |  |              showClose: true,
 | 
	
		
			
				|  |  | -            message: data.msg,
 | 
	
		
			
				|  |  | +            message: data.message,
 | 
	
		
			
				|  |  |              type: "error"
 | 
	
		
			
				|  |  |            })
 | 
	
		
			
				|  |  |          }
 | 
	
	
		
			
				|  | @@ -79,7 +79,7 @@ export const httpAjaxLoadingErrMsg = function <T extends axiosApiType, P extends
 | 
	
		
			
				|  |  |          LoadingBar.loading(false)
 | 
	
		
			
				|  |  |          ElMessage({
 | 
	
		
			
				|  |  |            showClose: true,
 | 
	
		
			
				|  |  | -          message: err.msg,
 | 
	
		
			
				|  |  | +          message: err.message,
 | 
	
		
			
				|  |  |            type: "error"
 | 
	
		
			
				|  |  |          })
 | 
	
		
			
				|  |  |          resolve(err)
 | 
	
	
		
			
				|  | @@ -98,7 +98,7 @@ export const httpAjaxCrud = function <T extends axiosApiType, P extends Paramete
 | 
	
		
			
				|  |  |            ElNotification({
 | 
	
		
			
				|  |  |              type: "success",
 | 
	
		
			
				|  |  |              title: "成功",
 | 
	
		
			
				|  |  | -            message: data.msg,
 | 
	
		
			
				|  |  | +            message: data.message,
 | 
	
		
			
				|  |  |              position: "top-right",
 | 
	
		
			
				|  |  |              duration: 3000
 | 
	
		
			
				|  |  |            })
 | 
	
	
		
			
				|  | @@ -106,7 +106,7 @@ export const httpAjaxCrud = function <T extends axiosApiType, P extends Paramete
 | 
	
		
			
				|  |  |            ElNotification({
 | 
	
		
			
				|  |  |              type: "error",
 | 
	
		
			
				|  |  |              title: "失败",
 | 
	
		
			
				|  |  | -            message: data.msg,
 | 
	
		
			
				|  |  | +            message: data.message,
 | 
	
		
			
				|  |  |              position: "top-right",
 | 
	
		
			
				|  |  |              duration: 3000
 | 
	
		
			
				|  |  |            })
 | 
	
	
		
			
				|  | @@ -118,7 +118,7 @@ export const httpAjaxCrud = function <T extends axiosApiType, P extends Paramete
 | 
	
		
			
				|  |  |          ElNotification({
 | 
	
		
			
				|  |  |            type: "error",
 | 
	
		
			
				|  |  |            title: "失败",
 | 
	
		
			
				|  |  | -          message: err.msg,
 | 
	
		
			
				|  |  | +          message: err.message,
 | 
	
		
			
				|  |  |            position: "top-right",
 | 
	
		
			
				|  |  |            duration: 3000
 | 
	
		
			
				|  |  |          })
 | 
	
	
		
			
				|  | @@ -136,12 +136,12 @@ export const httpAjaxAlert = function <T extends axiosApiType, P extends Paramet
 | 
	
		
			
				|  |  |          LoadingBar.loading(false)
 | 
	
		
			
				|  |  |          const data = res.data as apiResDataType
 | 
	
		
			
				|  |  |          if (data.code === 200) {
 | 
	
		
			
				|  |  | -          ElMessageBox.alert(data.msg, "提示", {
 | 
	
		
			
				|  |  | +          ElMessageBox.alert(data.message, "提示", {
 | 
	
		
			
				|  |  |              confirmButtonText: "关闭",
 | 
	
		
			
				|  |  |              type: "success"
 | 
	
		
			
				|  |  |            })
 | 
	
		
			
				|  |  |          } else {
 | 
	
		
			
				|  |  | -          ElMessageBox.alert(data.msg, "提示", {
 | 
	
		
			
				|  |  | +          ElMessageBox.alert(data.message, "提示", {
 | 
	
		
			
				|  |  |              confirmButtonText: "关闭",
 | 
	
		
			
				|  |  |              type: "error"
 | 
	
		
			
				|  |  |            })
 | 
	
	
		
			
				|  | @@ -150,7 +150,7 @@ export const httpAjaxAlert = function <T extends axiosApiType, P extends Paramet
 | 
	
		
			
				|  |  |        })
 | 
	
		
			
				|  |  |        .catch(err => {
 | 
	
		
			
				|  |  |          LoadingBar.loading(false)
 | 
	
		
			
				|  |  | -        ElMessageBox.alert(err.msg, "提示", {
 | 
	
		
			
				|  |  | +        ElMessageBox.alert(err.message, "提示", {
 | 
	
		
			
				|  |  |            confirmButtonText: "关闭",
 | 
	
		
			
				|  |  |            type: "error"
 | 
	
		
			
				|  |  |          })
 | 
	
	
		
			
				|  | @@ -180,7 +180,7 @@ export const httpAjaxDownload = function <T extends axiosApiType, P extends Para
 | 
	
		
			
				|  |  |        LoadingBar.loading(false)
 | 
	
		
			
				|  |  |        ElMessage({
 | 
	
		
			
				|  |  |          showClose: true,
 | 
	
		
			
				|  |  | -        message: err.msg,
 | 
	
		
			
				|  |  | +        message: err.message,
 | 
	
		
			
				|  |  |          type: "error"
 | 
	
		
			
				|  |  |        })
 | 
	
		
			
				|  |  |      })
 |