1
0
forked from dyf/APP

670增加跳转至地图,修改mqtt.js,使用request中的环境配置

This commit is contained in:
liub
2025-09-24 10:18:31 +08:00
parent ab696c3076
commit 8a54aa85d1
6 changed files with 67 additions and 16 deletions

View File

@ -2,11 +2,11 @@
const config = { const config = {
// 开发环境 // 开发环境
development: { development: {
BASE_URL: 'http://192.168.2.34:8000', BASE_URL: 'http://192.168.110.56:8000',
API_PREFIX: '', API_PREFIX: '',
// MQTT 配置 // MQTT 配置
MQTT_HOST: 'www.cnxhyc.com', MQTT_HOST: '47.120.79.150',
MQTT_PORT: 9083, MQTT_PORT: 8083,
MQTT_USERNAME: 'admin', MQTT_USERNAME: 'admin',
MQTT_PASSWORD: '#YtvpSfCNG' MQTT_PASSWORD: '#YtvpSfCNG'
}, },
@ -16,7 +16,7 @@ const config = {
API_PREFIX: '', API_PREFIX: '',
// MQTT 配置 // MQTT 配置
MQTT_HOST: 'www.cnxhyc.com', MQTT_HOST: 'www.cnxhyc.com',
MQTT_PORT: 9084, MQTT_PORT: 8083,
MQTT_USERNAME: 'admin', MQTT_USERNAME: 'admin',
MQTT_PASSWORD: '#YtvpSfCNG' MQTT_PASSWORD: '#YtvpSfCNG'
} }

View File

@ -21,8 +21,8 @@
"Bluetooth" : {}, "Bluetooth" : {},
"Barcode" : {}, "Barcode" : {},
"Camera" : {}, "Camera" : {},
"OAuth" : {}, "Geolocation" : {},
"Geolocation" : {} "Maps" : {}
}, },
/* */ /* */
"distribute" : { "distribute" : {

View File

@ -39,7 +39,7 @@
</view> </view>
<view class="item"> <view class="item">
<text class="lbl">定位信息</text> <text class="lbl">定位信息</text>
<view class="multiValue"> <view class="multiValue" @click.stop="gotoMap()">
<view class="valueItem valueFont"> <view class="valueItem valueFont">
{{formData.Lon}} {{formData.Lon}}
@ -51,7 +51,10 @@
</view> </view>
<view class="valueItem"> <view class="valueItem">
<view style="width:80%;float: right;text-align: right;" class="valueFont">{{formData.address}} <view style="width:80%;float: right;text-align: right;" class="valueFont">
<uni-icons type="location" size="17"
color="rgba(255, 255, 255, 0.8)" style="vertical-align: bottom;" />
{{formData.address}}
</view> </view>
<view class="clear"></view> <view class="clear"></view>
</view> </view>
@ -406,7 +409,29 @@
rgb565Data: [], rgb565Data: [],
videoHexArray: [], videoHexArray: [],
picPath: "", picPath: "",
permissions: [] //权限列表 permissions: [], //权限列表
detailData: {
deviceId: null,
deviceName: null,
deviceImei: null,
deviceMac: null,
communicationMode: null,
devicePic: null,
typeName: null,
bluetoothName: null,
deviceStatus: null,
personnelInfo: null,
onlineStatus: null,
longitude: null,
latitude: null,
address: null,
staDetectGrade: null,
staLightGrade: null,
staSOSGrade: null,
staPowerTime: null,
staPowerPercent: null,
staDetectResult: null
}
} }
}, },
created() { created() {
@ -490,6 +515,21 @@
}, },
methods: { methods: {
gotoMap() {
this.detailData.longitude=this.formData.Lon;
this.detailData.latitude=this.formData.Lat;
uni.navigateTo({
url: '/pages/common/map/index',
events: {
ack: function(data) {}
},
success: (res) => {
res.eventChannel.emit('Map', {
data: this.detailData
});
}
})
},
getDetail() { getDetail() {
var that = this; var that = this;
api.getDetail(this.device.id).then(res => { api.getDetail(this.device.id).then(res => {
@ -497,6 +537,7 @@
if (res && res.code == 200) { if (res && res.code == 200) {
res = res.data; res = res.data;
let json = res; let json = res;
this.detailData = json;
console.log("res=", res); console.log("res=", res);
that.formData.Lon = res.longitude; that.formData.Lon = res.longitude;
that.formData.Lat = res.latitude; that.formData.Lat = res.latitude;

View File

@ -5,6 +5,9 @@ export const showLoading = (ev,options) => {
if(!ev){ if(!ev){
return; return;
} }
if(!ev.$refs.loading){
return;
}
let defaultTxt="请稍候..."; let defaultTxt="请稍候...";
if(!options){ if(!options){
options={text:defaultTxt}; options={text:defaultTxt};
@ -23,6 +26,9 @@ export const hideLoading = (ev) => {
if(!ev){ if(!ev){
return; return;
}
if(!ev.$refs.loading){
return;
} }
ev.$refs.loading.hide(); ev.$refs.loading.hide();
@ -34,6 +40,9 @@ export const updateLoading = (ev,options) => {
if(!ev){ if(!ev){
return; return;
} }
if(!ev.$refs.loading){
return;
}
if(!options){ if(!options){
options={a:1}; options={a:1};
} }

View File

@ -117,8 +117,9 @@
*/ */
import Paho from 'paho-mqtt'; import Paho from 'paho-mqtt';
import allConfigs from '../config/index.js'; import allConfigs from '../config/index.js';
import {env} from '@/utils/request.js'
// 根据环境选择正确的配置 // 根据环境选择正确的配置
const env = 'production'; //production development // const env = 'development'; //production development
const envConfig = allConfigs[env]; const envConfig = allConfigs[env];
const mqttProtocol = env === 'production' ? 'wss' : 'ws'; const mqttProtocol = env === 'production' ? 'wss' : 'ws';
const useSSL = env === 'production'; const useSSL = env === 'production';
@ -214,7 +215,7 @@ class MqttClient {
} }
}, },
onFailure: (message) => { onFailure: (message) => {
console.error('MQTT连接失败:', message.errorMessage); console.error('MQTT连接失败:', message);
if (!this.manualDisconnect) { if (!this.manualDisconnect) {
this.startReconnecting(); this.startReconnecting();
} }

View File

@ -1,5 +1,5 @@
import config from '../config/index.js'; import config from '../config/index.js';
const env = 'development'; //production development //开发of线上 改这里就行 export const env = 'development'; //production development //开发of线上 改这里就行
const BASE = config[env]; const BASE = config[env];
const request = (options) => { const request = (options) => {
console.log("options"+JSON.stringify(options),BASE.BASE_URL) console.log("options"+JSON.stringify(options),BASE.BASE_URL)
@ -46,7 +46,7 @@ const request = (options) => {
}); });
}; };
// 导出基础URL以便其他地方使用 // 导出基础URL以便其他地方使用
export const baseURL = BASE.BASE_URL export const baseURL = BASE.BASE_URL;
export const getToken = () => uni.getStorageSync('token') // 获取token的方法 export const getToken = () => uni.getStorageSync('token'); // 获取token的方法
export const clientid =() => uni.getStorageSync('clientID'); export const clientid =() => uni.getStorageSync('clientID');
export default request; export default request;