Sign in

youxiw2000 / trash · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • trash
  • trash-ui
  • src
  • api
  • other
  • incorruptData.js
  • 1.文件资料 ...
    4b20b6d6
    2.廉政风险点
    3.廉洁教育
    2c authored
    2023-11-30 17:09:30 +0800  
    Browse Code »
incorruptData.js 357 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import request from '@/utils/request'

// 查询文件资料列表
export function listIncorruptData(tableName) {
  return request({
    url: '/other/incorrupt/list/'+tableName,
    method: 'get'
  })
}

// 新增文件资料
export function addIncorruptData(data) {
  return request({
    url: '/other/incorrupt',
    method: 'post',
    data: data
  })
}