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.

10 lines
298 B
JavaScript

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