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.
14 lines
308 B
14 lines
308 B
2 years ago
|
import request from '@/utils/request'
|
||
|
// 请求按钮权限
|
||
|
export default {
|
||
|
|
||
|
// 查询分页列表,输入当前路径和userSid,返回
|
||
|
buttonPermission: function(params) {
|
||
|
return request({
|
||
|
url: '/demopackage/v1/demo/buttonPermission',
|
||
|
method: 'post',
|
||
|
data: params
|
||
|
})
|
||
|
}
|
||
|
}
|