lijinlong
许宏杰 2 years ago
parent ac4df80523
commit d2fb3c12ee

@ -1,59 +1,59 @@
import request from '@/utils/request.js'
import request from "@/utils/request.js";
//数据来源
export function dataLY() {
return request({
url: '/zongzhi/saftyscreen/source',
method: 'get',
})
return request({
url: "/zongzhi/saftyscreen/source",
method: "get",
});
}
//地球受攻击
export function mapAttack(data) {
return request({
url: '/zongzhi/attack/list',
method: 'get',
params: data
})
return request({
url: "/zongzhi/attack/list",
method: "get",
params: data,
});
}
//安全隐患
export function safeRisks() {
return request({
url: '/zongzhi/saftyscreen/safetyhazard',
method: 'get',
})
return request({
url: "/zongzhi/saftyscreen/safetyhazard",
method: "get",
});
}
//部门专办情况
export function sectorZB() {
return request({
url: '/zongzhi/opinionscreen/sentimentdept',
method: 'get',
})
return request({
url: "/zongzhi/opinionscreen/sentimentdept",
method: "get",
});
}
//通报统计属地通报
export function territorialTB() {
return request({
url: '/zongzhi/saftyscreen/tbarea',
method: 'get',
})
return request({
url: "/zongzhi/saftyscreen/tbarea",
method: "get",
});
}
//通报统计部门通报
export function departmentTB() {
return request({
url: '/zongzhi/saftyscreen/tbdept',
method: 'get',
})
return request({
url: "/zongzhi/saftyscreen/tbdept",
method: "get",
});
}
//通报完成情况
export function tbFinish() {
return request({
url: '/zongzhi/saftyscreen/tbcomplete',
method: 'get',
})
return request({
url: "/zongzhi/saftyscreen/tbcomplete",
method: "get",
});
}
//获取部门通报列表
export function departmentList(data) {
return request({
url: '/zongzhi/tb/list',
method: 'get',
params:data
})
}
return request({
url: "/zongzhi/tb/list",
method: "get",
params: data,
});
}

@ -5,17 +5,18 @@
* @LastEditTime: 2022-03-04 11:30:33
* @Description:
*/
import axios from 'axios'
import { Message } from 'element-ui'
import axios from "axios";
import { Message } from "element-ui";
import { tansParams } from "@/utils/ruoyi";
// MessageBox,
import store from '@/store'
import { getToken } from '@/utils/auth'
import store from "@/store";
import { getToken } from "@/utils/auth";
// create an axios instance
const service = axios.create({
baseURL: process.env.VUE_APP_BASE_API2, // url = base url + request url
// withCredentials: true, // send cookies when cross-domain requests
timeout: 120 * 1000 // request timeout
})
timeout: 120 * 1000, // request timeout
});
// request interceptor
service.interceptors.request.use(
@ -25,17 +26,24 @@ service.interceptors.request.use(
// let each request carry token
// ['X-Token'] is a custom headers key
// please modify it according to the actual situation
config.headers['Authorization'] = getToken()
config.headers["Authorization"] = getToken();
}
config.headers['domain'] = encodeURI(sessionStorage.getItem('domain'))
return config
config.headers["domain"] = encodeURI(sessionStorage.getItem("domain"));
// get请求映射params参数
if (config.method === "get" && config.params) {
let url = config.url + "?" + tansParams(config.params);
url = url.slice(0, -1);
config.params = {};
config.url = url;
}
return config;
},
(error) => {
// do something with request error
console.log(error) // for debug
return Promise.reject(error)
console.log(error); // for debug
return Promise.reject(error);
}
)
);
// response interceptor
service.interceptors.response.use(
@ -50,18 +58,18 @@ service.interceptors.response.use(
* You can also judge the status by HTTP Status Code
*/
(response) => {
const res = response.data
return res
const res = response.data;
return res;
},
(error) => {
console.log('err' + error) // for debug
console.log("err" + error); // for debug
Message({
message: error.message,
type: 'error',
duration: 5 * 1000
})
return Promise.reject(error)
type: "error",
duration: 5 * 1000,
});
return Promise.reject(error);
}
)
);
export default service
export default service;

@ -0,0 +1,29 @@
/**
* 参数处理
* @param {*} params 参数
*/
export function tansParams(params) {
let result = "";
for (const propName of Object.keys(params)) {
const value = params[propName];
var part = encodeURIComponent(propName) + "=";
if (value !== null && value !== "" && typeof value !== "undefined") {
if (typeof value === "object") {
for (const key of Object.keys(value)) {
if (
value[key] !== null &&
value[key] !== "" &&
typeof value[key] !== "undefined"
) {
let params = propName + "[" + key + "]";
var subPart = encodeURIComponent(params) + "=";
result += subPart + encodeURIComponent(value[key]) + "&";
}
}
} else {
result += part + encodeURIComponent(value) + "&";
}
}
}
return result;
}

@ -251,7 +251,6 @@ export default {
echartsJump(myChartPieFirst, optionFirst);
},
clickFunc(val) {
console.log(val);
this.queryData.areaId = val.area;
console.log(this.queryData);
//

Loading…
Cancel
Save