logwire-wms-ui-test
Version:
运匠科技wms-PDA基础组件库
23 lines (19 loc) • 383 B
JavaScript
/*
* 权限
* @author: 张文
* @date 2022-02-14
* */
import lwAxios from "../../utils/Axios";
export const permissions = {
// 获取权限数据
get( prefixList, loading = false) {
return lwAxios.action({
url: 'wmsGetUserPermissions',
data: {
prefix: '/wms/pda',
prefixList
},
config: {loading}
})
}
}