Version.js 498 B

123456789101112131415
  1. import { get, post, parmasPost, put } from '@/http/index'
  2. // 审核规则管理接口
  3. export const getVersionList = async (url, data) => {
  4. return await post(url, data)
  5. }
  6. // 规则版本详情
  7. export const getRuleListByVid = async (parameter) => {
  8. return await get('/system/auditRule/getRuleListByVid', parameter)
  9. }
  10. // 审核规则版本设置启用/默认/删除
  11. export const updateAuditRuleVersion = async (data) => {
  12. return await post('/system/auditRule/updateAuditRuleVersion?', data)
  13. }