1.新增修改密码 2.取消出入库供应商校验

This commit is contained in:
gyq
2024-08-03 16:49:57 +08:00
parent 6830529769
commit b495926968
5 changed files with 130 additions and 3 deletions

View File

@@ -28,3 +28,16 @@ export function logout() {
method: "delete"
});
}
/**
* 个人中心 修改密码
* @param {*} data
* @returns
*/
export function updatePass(data) {
return request({
url: "/api/users/updatePass",
method: "post",
data
});
}