overview.js 332 B

12345678910111213141516171819
  1. import request from '@/utils/request'
  2. // 财务概况查询
  3. export function overviewGetall(data) {
  4. return request({
  5. url: '/finance/getAllFinance',
  6. method: 'post',
  7. data
  8. })
  9. }
  10. // 保证金查询
  11. export function getAllBond(data) {
  12. return request({
  13. url: '/finance/getAllBond',
  14. method: 'post',
  15. data
  16. })
  17. }