2024-04-20 14:58:10 +08:00
|
|
|
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);
|
2024-04-23 11:58:07 +08:00
|
|
|
export const newsInfo = data => request.post('/move/news/find', data, false);
|
|
|
|
export const eventInfo = data => request.post('/move/activity/find', data, false);
|
|
|
|
export const associationInfo = data => request.post('/move/association/find', data, false);
|
|
|
|
|
|
|
|
export const architectureList = data => request.post('/move/address/architecture', data, false);
|
|
|
|
|
|
|
|
export const positionList = data => request.post('/position', data, false);
|
|
|
|
export const IndustryList = data => request.post('/industry', data, false);
|
|
|
|
export const loginAdd = data => request.post('/move/login/add', data, false);
|
|
|
|
|
|
|
|
export const loginDo = data => request.post('/move/login/login', data, false);
|