Merge branch 'hi-ucs-dev' of http://124.222.94.39:3000/wuhongjian/hi-ucs into hi-ucs-dev

This commit is contained in:
guoyue 2022-10-24 14:30:12 +08:00
commit 99f57e3335
9 changed files with 54 additions and 24 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

@ -1,8 +1,8 @@
/* /*
* @Author: hisense.wuhongjian * @Author: hisense.wuhongjian
* @Date: 2022-04-01 19:19:40 * @Date: 2022-04-01 19:19:40
* @LastEditors: hisense.liangjunhua * @LastEditors: Light
* @LastEditTime: 2022-08-23 09:37:58 * @LastEditTime: 2022-10-24 10:36:56
* @Description: 告诉大家这是什么 * @Description: 告诉大家这是什么
*/ */
import request from '@/utils/request' import request from '@/utils/request'
@ -103,6 +103,13 @@ export function getUserInfo(params) {
method: 'get', method: 'get',
}) })
} }
export function initiateMeet(data) {
return request({
url: '/enke/initiateMeet',
method: 'post',
data: data,
})
}
// //
export function ApplicationServe(data) { export function ApplicationServe(data) {
@ -492,4 +499,4 @@ export function getMaxApplyNum(number) {
url: '/processForm/tabilityapplication/canApply/' + number, url: '/processForm/tabilityapplication/canApply/' + number,
method: 'get', method: 'get',
}) })
} }

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

@ -457,6 +457,21 @@
> >
添加至申购车 添加至申购车
</a-button> </a-button>
<a
stlyle="width: 100px;
height: 36px;
line-height: 36px;
text-align: center;
background: #0558e1;
border-radius: 5px;
font-size: 14px;
color: #fff;
}"
v-if="selectType == '视频会议'"
href="/static/download/金宏视频会议系统参会终端(10.1.101.504)_20200211.rar"
>
客户端下载
</a>
<!-- 一键申请 --> <!-- 一键申请 -->
<a-button <a-button
v-if="isXiHaiAn" v-if="isXiHaiAn"
@ -742,7 +757,7 @@
defineExpose, defineExpose,
computed, computed,
} from 'vue' } from 'vue'
import { getUser, getUserInfo } from '@/api/home' import { getUser, initiateMeet } from '@/api/home'
import { import {
getCameraByParentId, getCameraByParentId,
getStreamByChannelCode, getStreamByChannelCode,
@ -804,6 +819,11 @@
], //, ], //,
}) })
const videoList = ref([]) const videoList = ref([])
const initMeeting = () => {
initiateMeet('青岛市一网统揽项目组/一网统揽平台组/').then((res) => {
console.log('组会=========>', res)
})
}
let visible = ref(false) // let visible = ref(false) //
let picVisible = ref(false) // let picVisible = ref(false) //
let batchVisible = ref(false) // let batchVisible = ref(false) //
@ -1877,6 +1897,9 @@
case '视频资源': case '视频资源':
window.open('http://15.72.183.88:8860/video') window.open('http://15.72.183.88:8860/video')
break break
case '视频会议':
initMeeting()
break
default: default:
break break
} }

View File

@ -29,8 +29,8 @@ const productionGzipExtensions = [
'ico', 'ico',
] ]
// gzip // gzip
const isPro = process.env.NODE_ENV === 'production' // const isPro = process.env.NODE_ENV === 'production'
// const isPro = false const isPro = false
if (donation) donationConsole() if (donation) donationConsole()
const { version, author } = require('./package.json') const { version, author } = require('./package.json')
const Webpack = require('webpack') const Webpack = require('webpack')