Commit 97912df8 authored by 邓晓峰's avatar 邓晓峰

chore: 升级kit_global_config版本

parent f8d3d3d5
Pipeline #39020 passed with stages
in 23 minutes 27 seconds
......@@ -16736,9 +16736,9 @@
}
},
"kit_global_config": {
"version": "1.0.35",
"resolved": "https://g.civnet.cn:4873/kit_global_config/-/kit_global_config-1.0.35.tgz",
"integrity": "sha512-yGc4knxeLdWP7E1g/deJ6zQccu1ZNGPVtQKRSPFmVQ8Cy3j4g1x2ALPcVcSpYPE2hCWYo/GH+6ZOyKodYeDpIA==",
"version": "1.0.36",
"resolved": "https://g.civnet.cn:4873/kit_global_config/-/kit_global_config-1.0.36.tgz",
"integrity": "sha512-xAx5ihBHaV40AnA9t8qbqE9z7iTrgHFCmlsTIbygAMYRMGvpOpqvybInZaE3nAD0QXTA96fnrUCYkZD8GNu4AQ==",
"requires": {
"@babel/runtime": "^7.10.5",
"js-base64": "^3.5.2",
......@@ -116,7 +116,7 @@
"immutable": "^4.0.0-rc.12",
"js-base64": "^3.5.2",
"js-cookie": "^2.2.1",
"kit_global_config": "^1.0.35",
"kit_global_config": "^1.0.36",
"kit_logger": "^1.0.2",
"kit_utils": "^1.3.11",
"lodash": "4.17.11",
......
import * as constants from '../../constants';
import { request } from '@wisdom-utils/utils';
const API = {
GET_INFORMATION:
'/CityInterface/rest/services/CountyProduct.svc/SCADAOper/GetInformationInfo',
......@@ -34,4 +34,12 @@ const notificationService = {
},
};
export const postInformationStatus = param =>
request({
url: API.POST_INFORMATION_STATUS,
method: constants.REQUEST_METHOD_POST,
data: param.data,
params: param.query,
});
export default notificationService;
......@@ -4,6 +4,7 @@ import _ from 'lodash';
import MqttClient from 'mqtt-client';
import { noticeService } from '../../api';
import { postInformationStatus } from '../../api/service/notification';
import { isJSON } from '../../utils/utils';
import {
DEFAULT_KEEPLIVE,
......@@ -134,7 +135,7 @@ class Notifier {
const self = this;
// eslint-disable-next-line no-undef
noticeService.postInformationStatus({
postInformationStatus({
userID: this.userInfo.OID || window.globalConfig.userInfo.OID,
hisID: hisIDs.join(','),
isAll: isAll ? 1 : '',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment