19 lines
495 B
JavaScript
19 lines
495 B
JavaScript
import {
|
|
request
|
|
} from "../http";
|
|
|
|
// 管理地址
|
|
const apiPath = {
|
|
investDetail: "/news-content/listpage?rows=1&page=1", //投资优势
|
|
servicePrivacy: "app/agreementportal/getrelease/93679af4-e264-4d1c-bd49-538028daa95d"
|
|
}
|
|
class CommonService {
|
|
static doGetInvestDetail(data) {
|
|
return request(apiPath.investDetail, "GET", data)
|
|
}
|
|
static doGetServicePrivacy() {
|
|
return request(apiPath.servicePrivacy, "GET", null)
|
|
}
|
|
}
|
|
|
|
export default CommonService; |