You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
538 B
30 lines
538 B
2 years ago
|
import request from "@/utils/request";
|
||
|
// 本地
|
||
|
// let api = "API"
|
||
|
// 线上
|
||
|
|
||
|
let api = location.origin
|
||
|
export default {
|
||
|
|
||
|
|
||
|
frimLogin() {
|
||
|
return request({
|
||
|
baseURL: process.env.VUE_APP_USER_LOGIN,
|
||
|
url: "/pharmaceuticals/login",
|
||
|
headers: {
|
||
|
"Content-Type": "application/json",
|
||
|
isToken: true,
|
||
|
repeatSubmit: false,
|
||
|
},
|
||
|
method: "POST",
|
||
|
timeout: 60000,
|
||
|
data: {
|
||
|
pdma: "MTExMTEx",
|
||
|
urne: "2112042170015",
|
||
|
},
|
||
|
});
|
||
|
},
|
||
|
|
||
|
|
||
|
};
|