WXL
2024-02-20 c0b29ee03f4f6c984f35618bfa669ba3f2ab6517
src/api/system/dict/type.js
@@ -29,8 +29,8 @@
// 修改字典类型
export function updateType(data) {
  return request({
    url: '/system/dict/type',
    method: 'put',
    url: '/system/dict/type/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除字典类型
export function delType(dictId) {
  return request({
    url: '/system/dict/type/' + dictId,
    method: 'delete'
    url: '/system/dict/type/remove/' + dictId,
    method: 'get',
  })
}
@@ -47,7 +47,7 @@
export function refreshCache() {
  return request({
    url: '/system/dict/type/refreshCache',
    method: 'delete'
    method: 'get',
  })
}