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.
16 lines
514 B
16 lines
514 B
import request from '@/utils/request'
|
|
import qs from 'qs'
|
|
//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMDI3MDA3fQ.9bEgBzFW2g1CUT7s5VXxhNCa10cyU_WTCFeqpQje0iY'
|
|
let tokens = window.sessionStorage.getItem('token');
|
|
//获取菜单 分页列表
|
|
export function logPageList(data) {
|
|
return request({
|
|
url: '/portal/v1/systemlog/listPage',
|
|
method: 'POST',
|
|
data: data,
|
|
headers: {'Content-Type': 'application/json',
|
|
'token':tokens
|
|
}
|
|
})
|
|
}
|
|
|
|
|