fei
7 天以前 c50a874feed1ceceb18e0d42f95e4094eef98128
src/api/system/materials.js
@@ -42,3 +42,41 @@
    method: 'delete'
  })
}
//导入
export function enload(data) {
  return request({
    url: '/system/materials/importData',
    method: 'post',
      headers: {
      'Content-Type': 'multipart/form-data'
    },
    data: data
  })
}
export function islegal(recordId)
{
  return request({
    url:'/system/materials/isPageNubLegal/'+recordId,
    method:'get',
    // headers:{
    // }
  })
}
export function getFileCount(recordId)
{
  return request({
    url:'/system/materials/getFileCount/'+recordId,
    method:'get',
    // headers:{
    // }
  })
}