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.
14 lines
286 B
14 lines
286 B
const request = require('../utils/request')
|
|
/**
|
|
* 获取欢迎页信息
|
|
*/
|
|
export function getStartupPage() {
|
|
return request.get('startup/getStartupPage')
|
|
}
|
|
|
|
/**
|
|
* 获取欢迎页信息 v2
|
|
*/
|
|
export function getStartupPageV2() {
|
|
return request.get('startup/v2/getStartupPage')
|
|
}
|