6.26 首页接口联调
This commit is contained in:
@ -0,0 +1,39 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
//轮播图
|
||||
export async function getHomeBanner() {
|
||||
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/eventStyle/banner');
|
||||
}
|
||||
|
||||
//活动风采列表
|
||||
export async function getHomeGraceful() {
|
||||
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/eventStyle/list');
|
||||
}
|
||||
|
||||
//活动宣言
|
||||
export async function getHomeActivity() {
|
||||
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/eventDeclaration/list');
|
||||
}
|
||||
|
||||
//攻坚克难项目
|
||||
export async function getHomeProject() {
|
||||
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/eventSubject/list');
|
||||
}
|
||||
|
||||
//攻坚克难项目
|
||||
export async function getHomeRight() {
|
||||
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/data/list');
|
||||
}
|
||||
|
||||
//活动联系人
|
||||
export async function getHomeContact() {
|
||||
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/eventContact/group');
|
||||
}
|
||||
|
||||
//提意见 提交
|
||||
export async function submitAdvice(data: any) {
|
||||
return request('/api/biz-service-ebtp-extend/v1/eventpartybranch/submitSuggestion', {
|
||||
method: 'POST',
|
||||
data: { ...data }
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user