7 lines
543 B
JavaScript
7 lines
543 B
JavaScript
import request from '@/util/request';
|
|
export const newsGoryList = data => request.post('/move/news/gory', data, false);
|
|
export const newsList = data => request.post('/move/news/index', data, false);
|
|
export const activityList = data => request.post('/move/activity/list', data, false);
|
|
export const activityIndex = data => request.post('/move/activity/index', data, false);
|
|
export const associationIndex = data => request.post('/move/association/index', data, false);
|
|
export const newsInfo = data => request.post('/api/news/find', data, false); |