综合办公系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

contractMeeting.js 924B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import request from '@/utils/request'
  2. // 查询cmc合同会审列表
  3. export function listContractMeeting(query) {
  4. return request({
  5. url: '/oa/contractMeeting/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询cmc合同会审详细
  11. export function getContractMeeting(contractId) {
  12. return request({
  13. url: '/oa/contractMeeting/' + contractId,
  14. method: 'get'
  15. })
  16. }
  17. // 新增cmc合同会审
  18. export function addContractMeeting(data) {
  19. return request({
  20. url: '/oa/contractMeeting',
  21. method: 'post',
  22. data: data
  23. })
  24. }
  25. // 修改cmc合同会审
  26. export function updateContractMeeting(data) {
  27. return request({
  28. url: '/oa/contractMeeting',
  29. method: 'put',
  30. data: data
  31. })
  32. }
  33. // 删除cmc合同会审
  34. export function delContractMeeting(contractId) {
  35. return request({
  36. url: '/oa/contractMeeting/' + contractId,
  37. method: 'delete'
  38. })
  39. }