kpi-alert-order-service.js 490 B

123456789101112131415161718192021
  1. import axios from '@/common/services/axios-instance'
  2. class KpiAlertOrderService {
  3. // 根据用户获取组织
  4. getGroupByUserAccount(account) {
  5. return axios({
  6. url: 'api/xcoa-mobile/v1/iammodelmaintain/findGroupByAccount?account=' + account,
  7. method: 'get',
  8. })
  9. }
  10. // 获取字典值
  11. getDictValue(key) {
  12. return axios({
  13. url: 'api/xcoa-mobile/v1/iam-law/dictionary?key=' + key,
  14. method: 'get',
  15. })
  16. }
  17. }
  18. export default new KpiAlertOrderService()