|
|
|
@ -3,7 +3,7 @@ import request from "@/utils/request";
|
|
|
|
|
// 查询网络安全支持单位列表
|
|
|
|
|
export function listNetSafetyZcUnit(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/zongzhi/netSafetyZcUnit/list",
|
|
|
|
|
url: "/zongzhi/supportunit/list",
|
|
|
|
|
method: "get",
|
|
|
|
|
params: query,
|
|
|
|
|
});
|
|
|
|
@ -12,7 +12,7 @@ export function listNetSafetyZcUnit(query) {
|
|
|
|
|
// 查询网络安全支持单位详细
|
|
|
|
|
export function getNetSafetyZcUnit(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/zongzhi/netSafetyZcUnit/" + id,
|
|
|
|
|
url: "/zongzhi/supportunit/" + id,
|
|
|
|
|
method: "get",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -20,7 +20,7 @@ export function getNetSafetyZcUnit(id) {
|
|
|
|
|
// 新增网络安全支持单位
|
|
|
|
|
export function addNetSafetyZcUnit(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/zongzhi/netSafetyZcUnit",
|
|
|
|
|
url: "/zongzhi/supportunit",
|
|
|
|
|
method: "post",
|
|
|
|
|
data: data,
|
|
|
|
|
});
|
|
|
|
@ -29,7 +29,7 @@ export function addNetSafetyZcUnit(data) {
|
|
|
|
|
// 修改网络安全支持单位
|
|
|
|
|
export function updateNetSafetyZcUnit(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/zongzhi/netSafetyZcUnit",
|
|
|
|
|
url: "/zongzhi/supportunit",
|
|
|
|
|
method: "put",
|
|
|
|
|
data: data,
|
|
|
|
|
});
|
|
|
|
@ -38,7 +38,7 @@ export function updateNetSafetyZcUnit(data) {
|
|
|
|
|
// 删除网络安全支持单位
|
|
|
|
|
export function delNetSafetyZcUnit(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/zongzhi/netSafetyZcUnit/" + id,
|
|
|
|
|
url: "/zongzhi/supportunit/" + id,
|
|
|
|
|
method: "delete",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -46,7 +46,7 @@ export function delNetSafetyZcUnit(id) {
|
|
|
|
|
// 导出网络安全支持单位
|
|
|
|
|
export function exportNetSafetyZcUnit(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/zongzhi/netSafetyZcUnit/export",
|
|
|
|
|
url: "/zongzhi/supportunit/export",
|
|
|
|
|
method: "post",
|
|
|
|
|
data,
|
|
|
|
|
});
|
|
|
|
|