first commit
This commit is contained in:
32
芳林公司项目/zyhelp/common/service/impl/startUpService.js
Executable file
32
芳林公司项目/zyhelp/common/service/impl/startUpService.js
Executable file
@@ -0,0 +1,32 @@
|
||||
import { Http } from "../../http/http.js";
|
||||
import { config } from "../../config/config.js";
|
||||
|
||||
|
||||
export class startUpService extends Http {
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
}
|
||||
|
||||
async provinceSubject(params) {
|
||||
return await this.get({
|
||||
url: config.apiList.provinceSubject,
|
||||
data: params
|
||||
});
|
||||
}
|
||||
|
||||
async proScoreRank(params) {
|
||||
return await this.get({
|
||||
url: config.apiList.proScoreRank,
|
||||
data: params
|
||||
});
|
||||
}
|
||||
|
||||
async modifyUser(params) {
|
||||
return await this.post({
|
||||
url: config.apiList.modifyUser,
|
||||
data: params
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user