fuliqi
2024-04-24 1a0b6c69df8bafa8d9c612a5ea04a34be712001c
src/api/platform/contract-publish.js
File was renamed from src/api/platform/default-publish.js
@@ -3,7 +3,7 @@
// 查询合同考核发布列表
export function listPublish(query) {
  return request({
    url: '/default/publish/list',
    url: '/contract/publish/list',
    method: 'get',
    params: query
  })
@@ -12,7 +12,7 @@
// 查询合同考核发布详细
export function getPublish(id) {
  return request({
    url: '/default/publish/' + id,
    url: '/contract/publish/' + id,
    method: 'get'
  })
}
@@ -20,7 +20,7 @@
// 新增合同考核发布
export function addPublish(data) {
  return request({
    url: '/default/publish',
    url: '/contract/publish',
    method: 'post',
    data: data
  })
@@ -29,7 +29,7 @@
// 修改合同考核发布
export function updatePublish(data) {
  return request({
    url: '/default/publish',
    url: '/contract/publish',
    method: 'put',
    data: data
  })
@@ -38,7 +38,7 @@
// 删除合同考核发布
export function delPublish(id) {
  return request({
    url: '/default/publish/' + id,
    url: '/contract/publish/' + id,
    method: 'delete'
  })
}
@@ -46,7 +46,7 @@
// 获取合同考核下拉列表
export function publishSelect() {
  return request({
    url: '/default/publish/all',
    url: '/contract/publish/all',
    method: 'get'
  })
}