construction.js 504 B

12345678910111213141516171819
  1. import { httpApi } from '../../request/httpApi'
  2. export default {
  3. async queryConstructionPage(form, msg = true) {
  4. return httpApi({
  5. url: '/api/blade-business/constructionLedger/list',
  6. method: 'post',
  7. data: form,
  8. }, msg)
  9. },
  10. async updateConstructionPage(form, msg = true) {
  11. return httpApi({
  12. url: '/api/blade-business/constructionLedger/update',
  13. method: 'post',
  14. data: form,
  15. }, msg)
  16. },
  17. }