You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
472 B
JavaScript

import { service } from "../utils/service";
import {localPath} from "./api.js"
// 门店员工修改密码接口
export function changePassword(params) {
return service({
url: "/demay/ssm/staffLogin/changePassword",
method: "post",
data:params,
});
}
//退出登录
export function logout(params) {
return service({
url: "/demay/ssm/staffLogin/logout",
method: "post",
data:params,
});
}