financialInfrastructure.js 379 B

12345678910111213141516171819
  1. import upload from '@/utils/upload'
  2. import request from '@/utils/request'
  3. // 查询金融基建列表
  4. export function getCooperative() {
  5. return request({
  6. url: '/system/user/listAll',
  7. method: 'get'
  8. })
  9. }
  10. // 查询金融基建详情
  11. export function updateUserProfile(data) {
  12. return request({
  13. url: '/system/user/profile',
  14. method: 'put',
  15. data: data
  16. })
  17. }