一些调整
This commit is contained in:
parent
55f40b09e8
commit
dabd0b840a
@ -4,7 +4,7 @@
|
|||||||
* @LastEditors: ag 2663588772@qq.com
|
* @LastEditors: ag 2663588772@qq.com
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import { thirdpartyGet, thirdpartyPost } from '@/api/axiosExtension.js';
|
import { get, post } from './utils/axios';
|
||||||
|
|
||||||
//第三方数据元数据
|
//第三方数据元数据
|
||||||
class CellsysExtensionMeta {
|
class CellsysExtensionMeta {
|
||||||
@ -89,7 +89,7 @@ class CellsysExtensionRecord {
|
|||||||
queryThirdpartyData() {
|
queryThirdpartyData() {
|
||||||
let apiUrl = this.apiUrl;
|
let apiUrl = this.apiUrl;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
thirdpartyGet(apiUrl)
|
get(apiUrl)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
this.data = res;
|
this.data = res;
|
||||||
resolve(res);
|
resolve(res);
|
||||||
@ -128,7 +128,7 @@ class CellsysExtensionType {
|
|||||||
//表格头数据
|
//表格头数据
|
||||||
let metadataUrl = this.metadataUrl;
|
let metadataUrl = this.metadataUrl;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
thirdpartyGet(metadataUrl)
|
get(metadataUrl)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
// this.data = res;
|
// this.data = res;
|
||||||
resolve(res);
|
resolve(res);
|
||||||
@ -142,7 +142,7 @@ class CellsysExtensionType {
|
|||||||
//表格内容
|
//表格内容
|
||||||
let selectUrl = this.selectUrl;
|
let selectUrl = this.selectUrl;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
thirdpartyPost(selectUrl, pageInfo)
|
post(selectUrl, pageInfo)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
// this.data = res;
|
// this.data = res;
|
||||||
resolve(res);
|
resolve(res);
|
||||||
@ -156,7 +156,7 @@ class CellsysExtensionType {
|
|||||||
//插入
|
//插入
|
||||||
let insertUrl = this.insertUrl;
|
let insertUrl = this.insertUrl;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
thirdpartyPost(insertUrl, params)
|
post(insertUrl, params)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
// this.data = res;
|
// this.data = res;
|
||||||
resolve(res);
|
resolve(res);
|
||||||
@ -170,7 +170,7 @@ class CellsysExtensionType {
|
|||||||
//更新
|
//更新
|
||||||
let updateUrl = this.updateUrl;
|
let updateUrl = this.updateUrl;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
thirdpartyPost(updateUrl, params)
|
post(updateUrl, params)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
// this.data = res;
|
// this.data = res;
|
||||||
resolve(res);
|
resolve(res);
|
||||||
@ -184,7 +184,7 @@ class CellsysExtensionType {
|
|||||||
//删除
|
//删除
|
||||||
let deleteUrl = this.deleteUrl;
|
let deleteUrl = this.deleteUrl;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
thirdpartyPost(deleteUrl, param)
|
post(deleteUrl, param)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
// this.data = res;
|
// this.data = res;
|
||||||
resolve(res);
|
resolve(res);
|
||||||
@ -195,19 +195,24 @@ class CellsysExtensionType {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
uploadImg(param, progressCallBack){
|
uploadImg(param, progressCallBack) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
let config = {
|
let config = {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'multipart/form-data'
|
'Content-Type': 'multipart/form-data',
|
||||||
},
|
},
|
||||||
onUploadProgress:(progressEvent)=>{ //用于上传进度
|
onUploadProgress: (progressEvent) => {
|
||||||
|
//用于上传进度
|
||||||
let loaded = progressEvent.loaded,
|
let loaded = progressEvent.loaded,
|
||||||
total = progressEvent.total;
|
total = progressEvent.total;
|
||||||
progressCallBack(loaded/total); //上传进度回调
|
progressCallBack(loaded / total); //上传进度回调
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
thirdpartyPost(`${window.GLOBAL["CORS_API"]}/ThirdpartyApi/artwork/api/picture/upload`, param, config)
|
post(
|
||||||
|
`${window.GLOBAL['CORS_API']}/ThirdpartyApi/artwork/api/picture/upload`,
|
||||||
|
param,
|
||||||
|
config,
|
||||||
|
)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
resolve(res);
|
resolve(res);
|
||||||
})
|
})
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { Query, QueryTask, QueryType, Operator, CellsysType } from './cellsysUtil.js';
|
import { Query, QueryTask, QueryType, Operator, CellsysType } from './cellsysUtil.js';
|
||||||
import CellsysEquipment from './cellsysEquipment.js';
|
import CellsysEquipment from './cellsysEquipment.js';
|
||||||
|
import { formatterDate } from './utils/date';
|
||||||
|
|
||||||
class CellsysMember {
|
class CellsysMember {
|
||||||
constructor(params) {
|
constructor(params) {
|
||||||
@ -45,8 +46,10 @@ class CellsysMember {
|
|||||||
this.avatar = params.avatar; // 头像
|
this.avatar = params.avatar; // 头像
|
||||||
}
|
}
|
||||||
|
|
||||||
setMemberType(value) {
|
get dateTimeStr() {
|
||||||
this.memberType = value;
|
if (this.dateTime) {
|
||||||
|
return formatterDate(this.dateTime, 'YYYY-MM-DD HH:mm');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setLeader(value) {
|
setLeader(value) {
|
||||||
@ -62,10 +65,14 @@ class CellsysMember {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//查询用户绑定的设备详情,带组织联合逻辑,无分页
|
//查询用户绑定的设备详情,带组织联合逻辑,无分页
|
||||||
queryBindDeviceDeatil() {
|
queryBindDeviceDeatil(params = {}) {
|
||||||
|
let { isUnion } = params;
|
||||||
if (this.macId) {
|
if (this.macId) {
|
||||||
let query = new Query();
|
let query = new Query();
|
||||||
let queryType = QueryType.UnionEquipment;
|
let queryType = QueryType.Equipment;
|
||||||
|
if (isUnion) {
|
||||||
|
queryType = QueryType.UnionEquipment;
|
||||||
|
}
|
||||||
let queryTask = new QueryTask(queryType);
|
let queryTask = new QueryTask(queryType);
|
||||||
query.addFilter('macid', Operator.Equals, this.macId);
|
query.addFilter('macid', Operator.Equals, this.macId);
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
@ -1,63 +1,63 @@
|
|||||||
import { CellsysPolygonStyle } from './cellsysStyle'
|
import { CellsysPolygonStyle } from './cellsysStyle';
|
||||||
import CellsysElementType from './cellsysElementType';
|
import CellsysElementType from './cellsysElementType';
|
||||||
import { CellsysType, EditTask, EditType, Query, QueryTask, QueryType } from './cellsysUtil.js';
|
import { CellsysType, EditTask, EditType, Query, QueryTask, QueryType } from './cellsysUtil.js';
|
||||||
import { PublishTarget } from './cellsysEnum';
|
import { PublishTarget } from './cellsysEnum';
|
||||||
import {hexColorToRgba} from "@/utils/utils";
|
import { hexColorToRgba } from './utils/utils';
|
||||||
|
|
||||||
class CellsysOfflinePolygonType extends CellsysElementType {
|
class CellsysOfflinePolygonType extends CellsysElementType {
|
||||||
constructor(params) {
|
constructor(params) {
|
||||||
super(params);
|
super(params);
|
||||||
|
|
||||||
this.cellsysType = CellsysType.OfflinePolygonType
|
this.cellsysType = CellsysType.OfflinePolygonType;
|
||||||
if (!params) {
|
if (!params) {
|
||||||
params = {}
|
params = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
this.id = params.id
|
this.id = params.id;
|
||||||
this.name = params.name
|
this.name = params.name;
|
||||||
this.description = params.description
|
this.description = params.description;
|
||||||
this.orgId = params.org_id
|
this.orgId = params.org_id;
|
||||||
this.orgName = params.org_name
|
this.orgName = params.org_name;
|
||||||
this.style = params.style ? params.style : CellsysPolygonStyle.getDefaultStyle();
|
this.style = params.style ? params.style : CellsysPolygonStyle.getDefaultStyle();
|
||||||
this.action = params.action
|
this.action = params.action;
|
||||||
this.typeCount = params.type_count || 0
|
this.typeCount = params.type_count || 0;
|
||||||
this.isPublish = params.is_publish || 0;
|
this.isPublish = params.is_publish || 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setId(value) {
|
setId(value) {
|
||||||
this.id = value
|
this.id = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
setName(value) {
|
setName(value) {
|
||||||
this.name = value
|
this.name = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
setDescription(value) {
|
setDescription(value) {
|
||||||
this.description = value
|
this.description = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
setStyle(value) {
|
setStyle(value) {
|
||||||
this.style = value
|
this.style = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
getColor() {
|
getColor() {
|
||||||
return this.style ? this.style.color : '#000000'
|
return this.style ? this.style.color : '#000000';
|
||||||
}
|
}
|
||||||
|
|
||||||
getFillColor() {
|
getFillColor() {
|
||||||
return this.style ? this.style.fillColor : null
|
return this.style ? this.style.fillColor : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
getFillOpacity() {
|
getFillOpacity() {
|
||||||
return this.style ? this.style.fillOpacity : null
|
return this.style ? this.style.fillOpacity : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
getCssStyle() {
|
getCssStyle() {
|
||||||
// return formatterPolygonStyle(this.style)
|
// return formatterPolygonStyle(this.style)
|
||||||
if (this.style) {
|
if (this.style) {
|
||||||
let strokeOpacity = this.style.strokeOpacity;
|
let strokeOpacity = this.style.strokeOpacity;
|
||||||
strokeOpacity = strokeOpacity === null || strokeOpacity === undefined ? 0 : strokeOpacity;
|
strokeOpacity =
|
||||||
|
strokeOpacity === null || strokeOpacity === undefined ? 0 : strokeOpacity;
|
||||||
let colors = hexColorToRgba(this.style.strokeColor || '#000000');
|
let colors = hexColorToRgba(this.style.strokeColor || '#000000');
|
||||||
colors.push(strokeOpacity);
|
colors.push(strokeOpacity);
|
||||||
let border = this.style.weight + 'px ' + 'solid rgba(' + colors.join(',') + ')';
|
let border = this.style.weight + 'px ' + 'solid rgba(' + colors.join(',') + ')';
|
||||||
@ -76,18 +76,16 @@ class CellsysOfflinePolygonType extends CellsysElementType {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//发布功能
|
//发布功能
|
||||||
setPublish(publishStatus, range, ids, isEditable, remark) {
|
setPublish(publishStatus, range, ids, isEditable, remark) {
|
||||||
|
|
||||||
let editTask = new EditTask(EditType.OfflinePublish);
|
let editTask = new EditTask(EditType.OfflinePublish);
|
||||||
editTask.addParam('_id', this.id);
|
editTask.addParam('_id', this.id);
|
||||||
editTask.addParam("_offline_fence_type_name", this.name);
|
editTask.addParam('_offline_fence_type_name', this.name);
|
||||||
editTask.addParam('_is_publish', PublishTarget[publishStatus]);
|
editTask.addParam('_is_publish', PublishTarget[publishStatus]);
|
||||||
editTask.addParam('_remark', remark);
|
editTask.addParam('_remark', remark);
|
||||||
if (publishStatus !== "noPublish") {
|
if (publishStatus !== 'noPublish') {
|
||||||
if (range === 1) { //发布到组织
|
if (range === 1) {
|
||||||
|
//发布到组织
|
||||||
editTask.addParam('_publish_org', ids);
|
editTask.addParam('_publish_org', ids);
|
||||||
} else {
|
} else {
|
||||||
editTask.addParam('_publish_group', ids);
|
editTask.addParam('_publish_group', ids);
|
||||||
@ -104,14 +102,12 @@ class CellsysOfflinePolygonType extends CellsysElementType {
|
|||||||
|
|
||||||
//查询协同数据发布记录列表
|
//查询协同数据发布记录列表
|
||||||
synergyDataPublishRecord(dataId, type) {
|
synergyDataPublishRecord(dataId, type) {
|
||||||
|
|
||||||
let query = new Query();
|
let query = new Query();
|
||||||
query.setOrder({ create_time: 'desc' });
|
query.setOrder({ create_time: 'desc' });
|
||||||
query.addFilter('data_type', '=', 4);
|
query.addFilter('data_type', '=', 4);
|
||||||
query.setCurrPage(1);
|
query.setCurrPage(1);
|
||||||
query.setPageSize(1);
|
query.setPageSize(1);
|
||||||
|
|
||||||
|
|
||||||
if (dataId) {
|
if (dataId) {
|
||||||
query.addFilter('data_id', '=', dataId);
|
query.addFilter('data_id', '=', dataId);
|
||||||
}
|
}
|
||||||
@ -123,9 +119,7 @@ class CellsysOfflinePolygonType extends CellsysElementType {
|
|||||||
queryTask
|
queryTask
|
||||||
.execute(query)
|
.execute(query)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
|
||||||
resolve(res);
|
resolve(res);
|
||||||
|
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
reject(err);
|
reject(err);
|
||||||
@ -141,5 +135,4 @@ class CellsysOfflinePolygonType extends CellsysElementType {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default CellsysOfflinePolygonType;
|
||||||
export default CellsysOfflinePolygonType
|
|
||||||
|
@ -126,6 +126,14 @@ class CellsysOrg {
|
|||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get mapOptions() {
|
||||||
|
if (this.options && this.options['mapOptions']) {
|
||||||
|
return this.options['mapOptions'];
|
||||||
|
} else {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新组织信息
|
* 更新组织信息
|
||||||
*/
|
*/
|
||||||
@ -3578,7 +3586,7 @@ class CellsysOrg {
|
|||||||
/**
|
/**
|
||||||
* 查询组织下所有离线区域信息
|
* 查询组织下所有离线区域信息
|
||||||
*/
|
*/
|
||||||
queryOfflinePolygons(pageInfo, filters, order) {
|
queryOfflinePolygons(pageInfo, filters, order, httpConfig) {
|
||||||
let query = new Query();
|
let query = new Query();
|
||||||
query.addFilter('org_id', Operator.Equals, this.id);
|
query.addFilter('org_id', Operator.Equals, this.id);
|
||||||
if (pageInfo) {
|
if (pageInfo) {
|
||||||
@ -3595,7 +3603,9 @@ class CellsysOrg {
|
|||||||
} else {
|
} else {
|
||||||
query.setOrder({ id: 'desc' });
|
query.setOrder({ id: 'desc' });
|
||||||
}
|
}
|
||||||
|
if (httpConfig) {
|
||||||
|
query.setHttpConfig(httpConfig);
|
||||||
|
}
|
||||||
let queryTask = new QueryTask(QueryType.OfflinePolygon, pageInfo ? true : false);
|
let queryTask = new QueryTask(QueryType.OfflinePolygon, pageInfo ? true : false);
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
queryTask
|
queryTask
|
||||||
|
@ -37,7 +37,7 @@ const TopicType = {
|
|||||||
|
|
||||||
const createMqttClient = (cellsysPush, cellsysTopic) => {
|
const createMqttClient = (cellsysPush, cellsysTopic) => {
|
||||||
// let clientId = 'cellsys' + (new Date().getTime()) + Math.floor(Math.random() * 100)
|
// let clientId = 'cellsys' + (new Date().getTime()) + Math.floor(Math.random() * 100)
|
||||||
let clientId = getToken() + '.timestamp.' + new Date().getTime();
|
let clientId = getToken() + cellsysTopic.topicType + new Date().getTime();
|
||||||
let { ip, port, aliasPath, isSSL, username, password } = cellsysPush;
|
let { ip, port, aliasPath, isSSL, username, password } = cellsysPush;
|
||||||
|
|
||||||
let client;
|
let client;
|
||||||
@ -60,17 +60,19 @@ const createMqttClient = (cellsysPush, cellsysTopic) => {
|
|||||||
};
|
};
|
||||||
client.connect(options);
|
client.connect(options);
|
||||||
client.onConnected = (reconnect) => {
|
client.onConnected = (reconnect) => {
|
||||||
|
console.log(clientId, '连接建立的clientId');
|
||||||
if (reconnect) {
|
if (reconnect) {
|
||||||
isLost = false;
|
isLost = false;
|
||||||
clearTimeout(lostTimeCount);
|
clearTimeout(lostTimeCount);
|
||||||
lostTimeCount = null;
|
lostTimeCount = null;
|
||||||
console.log(cellsysTopic, 'mq重连topic');
|
/* console.log(cellsysTopic, 'mq重连topic');*/
|
||||||
}
|
}
|
||||||
resolve(client);
|
resolve(client);
|
||||||
};
|
};
|
||||||
client.onConnectionLost = (responseObject) => {
|
client.onConnectionLost = (responseObject) => {
|
||||||
console.log(responseObject, '中断对象');
|
console.log(responseObject, '中断对象');
|
||||||
console.log(cellsysTopic, '中断的topic');
|
console.log(cellsysTopic, '中断的topic');
|
||||||
|
console.log(clientId, '中断的clientId');
|
||||||
//连接中断时开始倒计时,2分钟后没有重连成功则执行错误回调;
|
//连接中断时开始倒计时,2分钟后没有重连成功则执行错误回调;
|
||||||
isLost = true;
|
isLost = true;
|
||||||
lostTimeCount = setTimeout(() => {
|
lostTimeCount = setTimeout(() => {
|
||||||
@ -228,7 +230,7 @@ class pushTask {
|
|||||||
isSSL: isSSL,
|
isSSL: isSSL,
|
||||||
};
|
};
|
||||||
if (process.env.NODE_ENV === 'development') {
|
if (process.env.NODE_ENV === 'development') {
|
||||||
params['ip'] = 'localhost';
|
params['ip'] = '192.168.2.10';
|
||||||
}
|
}
|
||||||
|
|
||||||
let cloudOptions = this.cellsysOrg ? this.cellsysOrg.cloudOptions : {};
|
let cloudOptions = this.cellsysOrg ? this.cellsysOrg.cloudOptions : {};
|
||||||
|
@ -13,6 +13,9 @@ import CellsysMemberType from './cellsysMemberType';
|
|||||||
class CellsysSystem {
|
class CellsysSystem {
|
||||||
constructor(params) {}
|
constructor(params) {}
|
||||||
|
|
||||||
|
static token = null;
|
||||||
|
static hostname = null;
|
||||||
|
|
||||||
//在边缘工作站上查询设备列表
|
//在边缘工作站上查询设备列表
|
||||||
static querEdgeOrgList() {
|
static querEdgeOrgList() {
|
||||||
let query = new Query();
|
let query = new Query();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import * as http from '@/api/axios.js';
|
import * as http from './utils/axios.js';
|
||||||
|
|
||||||
const BASE_URL = location.origin;
|
const BASE_URL = location.origin;
|
||||||
const IMAGE_URL = '/resources/basePic/cellsysApp';
|
const IMAGE_URL = '/resources/basePic/cellsysApp';
|
||||||
@ -429,6 +429,8 @@ const AdminQueryType = [
|
|||||||
'/v2' + EditType.Group_Update,
|
'/v2' + EditType.Group_Update,
|
||||||
'/v2' + EditType.Group_Delete,
|
'/v2' + EditType.Group_Delete,
|
||||||
'/v2' + EditType.Member_Create,
|
'/v2' + EditType.Member_Create,
|
||||||
|
'/v2' + EditType.EquipmentUser_Create,
|
||||||
|
'/v2' + EditType.EquipmentUser_Delete,
|
||||||
SubmitType.edgeEquipmentConnect,
|
SubmitType.edgeEquipmentConnect,
|
||||||
QueryType.WifiHotspot,
|
QueryType.WifiHotspot,
|
||||||
SubmitType.switchHotspotStatus,
|
SubmitType.switchHotspotStatus,
|
||||||
@ -518,6 +520,7 @@ const ThirdpartyObjectType = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
class Query {
|
class Query {
|
||||||
|
static bodyParams = true; //设置请求体里需不需要传body
|
||||||
constructor(params) {
|
constructor(params) {
|
||||||
if (!params) {
|
if (!params) {
|
||||||
params = {};
|
params = {};
|
||||||
@ -575,10 +578,14 @@ class Query {
|
|||||||
getQuery() {
|
getQuery() {
|
||||||
let param = this._getParam();
|
let param = this._getParam();
|
||||||
let content = null;
|
let content = null;
|
||||||
|
let cellsysContent = param;
|
||||||
|
if (Query.bodyParams) {
|
||||||
|
cellsysContent = { body: param };
|
||||||
|
}
|
||||||
switch (this._type.toLocaleLowerCase()) {
|
switch (this._type.toLocaleLowerCase()) {
|
||||||
default:
|
default:
|
||||||
case 'cellsys':
|
case 'cellsys':
|
||||||
content = { body: param };
|
content = cellsysContent;
|
||||||
break;
|
break;
|
||||||
case 'mongodb':
|
case 'mongodb':
|
||||||
content = param;
|
content = param;
|
||||||
@ -614,6 +621,7 @@ class Query {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class QueryTask {
|
class QueryTask {
|
||||||
|
static hostName = '';
|
||||||
constructor(url, getPageInfo) {
|
constructor(url, getPageInfo) {
|
||||||
//过滤java接口
|
//过滤java接口
|
||||||
if (url.indexOf('cellsys/api') !== -1) {
|
if (url.indexOf('cellsys/api') !== -1) {
|
||||||
@ -625,6 +633,7 @@ class QueryTask {
|
|||||||
//接口版本改为V2版本
|
//接口版本改为V2版本
|
||||||
this.url = '/v2' + url;
|
this.url = '/v2' + url;
|
||||||
}
|
}
|
||||||
|
this.url = QueryTask.hostName + this.url;
|
||||||
this.getPageInfo = getPageInfo; //是否返回分页信息
|
this.getPageInfo = getPageInfo; //是否返回分页信息
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -635,6 +644,8 @@ class QueryTask {
|
|||||||
} else {
|
} else {
|
||||||
query = new Query();
|
query = new Query();
|
||||||
}
|
}
|
||||||
|
// this.getPageInfo = query.pageSize !== 0;
|
||||||
|
|
||||||
let type = query.getType();
|
let type = query.getType();
|
||||||
let httpConfig = query.httpConfig;
|
let httpConfig = query.httpConfig;
|
||||||
switch (type.toLocaleLowerCase()) {
|
switch (type.toLocaleLowerCase()) {
|
||||||
|
23
utils/axios.js
Normal file
23
utils/axios.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
const service = axios.create({
|
||||||
|
baseURL: '/api', //api 的 base_url,根据开发生产环境配置文件配置
|
||||||
|
withCredentials: true, // 跨域请求时发送 cookies
|
||||||
|
timeout: 0,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json;charset=UTF-8',
|
||||||
|
},
|
||||||
|
responseType: 'json',
|
||||||
|
});
|
||||||
|
|
||||||
|
const post = (url, data, config) => {
|
||||||
|
return service.post(url, data, config);
|
||||||
|
};
|
||||||
|
|
||||||
|
const get = (url, data) => {
|
||||||
|
return service.get(url, {
|
||||||
|
params: data,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export { post, get, service };
|
18984
utils/mqtt@4.3.7.js
Normal file
18984
utils/mqtt@4.3.7.js
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user