| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- 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
- })
- }
- // 保存访问量
- export const webVisit = (type,id) => {
- return axios({
- url: `/web/visit/${type}/${id}`,
- })
- }
|