13 lines
214 B
JavaScript
Raw Normal View History

2024-03-13 18:27:17 +08:00
import {
request
} from '../selfRequest';
// 用户信息
export function callScanUrl(url, paramUrl) {
return request({
url: url + paramUrl,
method: "get",
urlIsAll: true
});
}