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

desensitization.js 300 B

2 years ago
12345678910111213
  1. import service from "../service";
  2. // 数据脱敏接口
  3. export const postImgDesensitization = (params, data) => {
  4. return service({
  5. url: "/extension/tuomin/upload",
  6. headers: { Accept: "image/png" },
  7. responseType: "blob",
  8. method: "POST",
  9. params: params,
  10. data: data,
  11. });
  12. };