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.
21 lines
555 B
21 lines
555 B
2 years ago
|
import request from "@/utils/request2";
|
||
|
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",
|
||
|
},
|
||
|
});
|
||
|
},
|
||
|
}
|