bug修复

This commit is contained in:
wuhongjian 2022-10-24 14:26:22 +08:00
parent 98a420f0c3
commit aaa16a1105
6 changed files with 19 additions and 19 deletions

View File

@ -1,8 +1,8 @@
/* /*
* @Author: hisense.wuhongjian * @Author: hisense.wuhongjian
* @Date: 2020-07-07 16:03:23 * @Date: 2020-07-07 16:03:23
* @LastEditors: Light * @LastEditors: hisense.wuhongjian
* @LastEditTime: 2022-10-22 11:08:16 * @LastEditTime: 2022-10-24 11:50:52
* @Description: 系统静态参数配置 * @Description: 系统静态参数配置
*/ */
var _global = {} var _global = {}
@ -13,7 +13,7 @@ var CONFIGITEM = {
// version: 'zhanTingDev', // dev (2022-09-13:) // version: 'zhanTingDev', // dev (2022-09-13:)
// version: 'qingdao', // // version: 'qingdao', //
//version: 'frp', // 穿 //version: 'frp', // 穿
vNum: 'v0.8.7.2', vNum: 'v0.8.14.2',
configData: { configData: {
// //
qingdao: { qingdao: {
@ -27,8 +27,8 @@ var CONFIGITEM = {
backUrl: 'http://15.72.183.90:8001', backUrl: 'http://15.72.183.90:8001',
previewUrl: 'http://15.72.183.90:7008/', previewUrl: 'http://15.72.183.90:7008/',
//frontUrl: 'http://15.72.183.90:7008/document/#/devModelFile/', //frontUrl: 'http://15.72.183.90:7008/document/#/devModelFile/',
//apiURL: 'http://15.72.183.90:8000/renren-admin', apiURL: 'http://15.72.183.90:8000/renren-admin',
// websocketURL: '15.72.183.90:8000/renren-admin', websocketURL: '15.72.183.90:8000/renren-admin',
// websocketURL: '192.168.124.233:8888/renren-admin', // websocketURL: '192.168.124.233:8888/renren-admin',
POI_URL: POI_URL:
'http://15.72.178.129:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address', 'http://15.72.178.129:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address',
@ -87,7 +87,7 @@ var CONFIGITEM = {
}, },
backUrl: 'http://localhost:8001', backUrl: 'http://localhost:8001',
previewUrl: 'http://192.168.124.243:9796/', previewUrl: 'http://192.168.124.243:9796/',
websocketURL: '192.168.124.243:8888/renren-admin', websocketURL: '192.168.124.254:8888/renren-admin',
// websocketURL: '10.18.1.99:8889/renren-admin', // websocketURL: '10.18.1.99:8889/renren-admin',
POI_URL: POI_URL:
'http://15.72.178.129:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address', 'http://15.72.178.129:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address',

View File

@ -308,4 +308,4 @@ export function getDeviceDetail(deviceId) {
url: `/device/${deviceId}`, url: `/device/${deviceId}`,
method: 'get', method: 'get',
}) })
} }

View File

@ -53,9 +53,9 @@
}).then((res) => { }).then((res) => {
dictList.value = ['全部'] dictList.value = ['全部']
res.data.data.list.map((val) => { res.data.data.list.map((val) => {
if (val.dictLabel !== '其他') { // if (val.dictLabel !== '') {
dictList.value.push(val.dictLabel) dictList.value.push(val.dictLabel)
} // }
}) })
}) })
const params = { const params = {

View File

@ -1,8 +1,8 @@
<!-- <!--
* @Author: hisense.liangjunhua * @Author: hisense.liangjunhua
* @Date: 2022-08-09 09:31:25 * @Date: 2022-08-09 09:31:25
* @LastEditors: hisense.liangjunhua * @LastEditors: hisense.wuhongjian
* @LastEditTime: 2022-09-19 10:19:02 * @LastEditTime: 2022-10-24 10:44:50
* @Description: 应用资源 * @Description: 应用资源
--> -->
<template> <template>
@ -74,9 +74,9 @@
}).then((res) => { }).then((res) => {
dictList.value = ['全部'] dictList.value = ['全部']
res.data.data.list.map((val) => { res.data.data.list.map((val) => {
if (val.dictLabel !== '其他') { // if (val.dictLabel !== '') {
dictList.value.push(val.dictLabel) dictList.value.push(val.dictLabel)
} // }
}) })
}) })
let dom = null let dom = null

View File

@ -53,9 +53,9 @@
}).then((res) => { }).then((res) => {
dictList.value = ['全部'] dictList.value = ['全部']
res.data.data.list.map((val) => { res.data.data.list.map((val) => {
if (val.dictLabel !== '其他') { // if (val.dictLabel !== '') {
dictList.value.push(val.dictLabel) dictList.value.push(val.dictLabel)
} // }
}) })
}) })
const params = { const params = {

View File

@ -805,7 +805,7 @@
}) })
const videoList = ref([]) const videoList = ref([])
const initMeeting = () => { const initMeeting = () => {
initiateMeet('一网统揽平台组/').then((res) => { initiateMeet('青岛市一网统揽项目组/一网统揽平台组/').then((res) => {
console.log('组会=========>', res) console.log('组会=========>', res)
}) })
} }