| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import axios from './request'
- // 用户登录接口
- export const goodList = (data) => {
- return axios({
- method: 'post',
- url: '/web/goodList',
- data
- })
- }
- // 图片拿到所有图片
- export const goodDetail = (id) => {
- return axios({
- method: 'get',
- url: `/web/goodDetail/${id}`
- })
- }
- // 学院宣传片列表
- export const videoList = (data) => {
- return axios({
- method: 'post',
- url: '/web/videoList',
- data
- })
- }
- // 美丽校园列表列表
- export const imgList = (data) => {
- return axios({
- method: 'post',
- url: '/web/imgList',
- data
- })
- }
- // 领导列表
- export const leaderList = (data) => {
- return axios({
- method: 'post',
- url: '/web/leaderList',
- data
- })
- }
- // 领导列表
- export const studentList = (data) => {
- return axios({
- method: 'post',
- url: '/web/studentList',
- data
- })
- }
- // 军歌列表
- export const musicList = (data) => {
- return axios({
- method: 'post',
- url: '/web/musicList',
- data
- })
- }
|