You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
558 B

import request from '@/utils/request'
//红榜
export function getList(data) {
return request({
url: '/shianliaoning/remote/findRedList',
method: 'post',
data
})
}
export function getRedInfo(id) {
return request({
url: `/shianliaoning/remote/redDetail/${id}`,
method: 'get'
})
}
//黑榜
export function getblackList(data) {
return request({
url: '/shianliaoning/remote/findBlackList',
method: 'post',
data
})
}
export function getBlackInfo(id) {
return request({
url: `/shianliaoning/remote/blackDetail/${id}`,
method: 'get'
})
}