移动端
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.

yinnongApproval.js 568 B

пре 1 година
пре 1 година
пре 1 година
пре 1 година
1234567891011121314151617181920212223242526272829
  1. import request from '@/utils/request'
  2. // 查询用章申请详细
  3. export function getSeal(id) {
  4. return request({
  5. url: '/yinnong/seal/get/' + id,
  6. method: 'get',
  7. params: arguments[1] || {}
  8. })
  9. }
  10. // 查询资产处置详细
  11. export function getAsset(id) {
  12. return request({
  13. url: '/yinnong/asset/get/' + id,
  14. method: 'get',
  15. params: arguments[1] || {}
  16. })
  17. }
  18. // 查询合同签订详细
  19. export function getContraction(id) {
  20. return request({
  21. url: '/yinnong/contraction/get/' + id,
  22. method: 'get',
  23. params: arguments[1] || {}
  24. })
  25. }