拓恒飞手平台小程序
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.

permission.js 340B

123456789101112131415
  1. const {request} = require("../request/index")
  2. /**
  3. * 获取省市区树状数据
  4. * @param {*} params
  5. */
  6. export const getPermission = function(roleId) {
  7. return request({
  8. url: '/permission/getRolePermission',
  9. method: "GET",
  10. data: {
  11. clientId: 'tuoheng-pilot-mp',
  12. roleId
  13. }
  14. })
  15. }