Merge branch 'hi-ucs-dev' of http://192.168.124.50:3000/wuhongjian/hi-ucs into hi-ucs-dev
This commit is contained in:
commit
cde4f5d82e
|
@ -60,6 +60,7 @@
|
||||||
<el-form :inline="true" style="margin-right: 40px;">
|
<el-form :inline="true" style="margin-right: 40px;">
|
||||||
<!--操作按钮查询-->
|
<!--操作按钮查询-->
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
|
<el-button type="primary" @click="getDataList()">{{ $t('query') }}</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!--操作按钮重置-->
|
<!--操作按钮重置-->
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2022-05-06 11:12:00
|
* @Date: 2022-05-06 11:12:00
|
||||||
* @LastEditors: Light
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-11-16 10:21:49
|
* @LastEditTime: 2022-11-21 10:45:07
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -117,7 +117,7 @@
|
||||||
realName.charCodeAt()
|
realName.charCodeAt()
|
||||||
)
|
)
|
||||||
// 如果刚登陆 初始化水印
|
// 如果刚登陆 初始化水印
|
||||||
if (oldValue == '/login' || oldValue == '/') {
|
if (newValue == '/home') {
|
||||||
waterMarkInit(newValue)
|
waterMarkInit(newValue)
|
||||||
}
|
}
|
||||||
changeWaterMark(newValue)
|
changeWaterMark(newValue)
|
||||||
|
@ -125,7 +125,7 @@
|
||||||
{ immediate: true }
|
{ immediate: true }
|
||||||
)
|
)
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
waterMarkInit()
|
// waterMarkInit()
|
||||||
})
|
})
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
// 4.卸载前, 关闭链接
|
// 4.卸载前, 关闭链接
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2022-04-20 17:16:35
|
* @Date: 2022-04-20 17:16:35
|
||||||
* @LastEditors: Light
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-11-18 17:52:05
|
* @LastEditTime: 2022-11-21 10:51:25
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
@ -10,134 +10,141 @@ import axios from 'axios'
|
||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
headers: {
|
headers: {
|
||||||
token: store.getters['user/accessToken'],
|
token: store.getters['user/accessToken'],
|
||||||
'Content-Type': 'multipart/form-data',
|
'Content-Type': 'multipart/form-data',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
const config2 = {
|
const config2 = {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json; charset-utf-8',
|
'Content-Type': 'application/json; charset-utf-8',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
export function getDevelopmentFile(params) {
|
export function getDevelopmentFile(params) {
|
||||||
return request({
|
return request({
|
||||||
url: '/developmentGuide/getDevelopmentFile',
|
url: '/developmentGuide/getDevelopmentFile',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params,
|
params,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
export function updateDevelopmentFile(params) {
|
export function updateDevelopmentFile(params) {
|
||||||
return axios.post(
|
return axios.post(
|
||||||
window.SITE_CONFIG.apiURL + '/developmentGuide/uploadDevelopmentFile',
|
window.SITE_CONFIG.apiURL + '/developmentGuide/uploadDevelopmentFile',
|
||||||
params,
|
params,
|
||||||
config
|
config
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
export function test() {
|
export function test() {
|
||||||
return axios.post(
|
return axios.post(
|
||||||
'http://15.72.158.81/zyjk/ZywMessage.asmx/ZywMessagePort',
|
'http://15.72.158.81/zyjk/ZywMessage.asmx/ZywMessagePort',
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
export function correct(params) {
|
export function correct(params) {
|
||||||
return axios.post('http://15.72.183.90:7008/correct', params, config2)
|
return axios.post('http://15.72.183.90:7008/correct', params, config2)
|
||||||
}
|
}
|
||||||
export function paddleocr(params) {
|
export function paddleocr(params) {
|
||||||
return axios.post('http://15.72.183.90:7008/paddleocr', params, config2)
|
return axios.post('http://15.72.183.90:7008/paddleocr', params, config2)
|
||||||
}
|
}
|
||||||
// 算法总接口
|
// 算法总接口
|
||||||
export function algo(params) {
|
export function algo(params) {
|
||||||
return axios.post('http://15.72.184.10:8888/api/algo', params, config2)
|
return axios.post('http://15.72.184.10:8888/api/algo', params, config2)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 能力云图-数据资源
|
// 能力云图-数据资源
|
||||||
export function count() {
|
export function count() {
|
||||||
return axios.post(
|
return axios.post(
|
||||||
'http://10.134.135.24:30058/share-portal/platform/index/abilityMarket/count',
|
'http://10.134.135.24:30058/share-portal/platform/index/abilityMarket/count',
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
export function getVideoList(params) {
|
export function getVideoList(params) {
|
||||||
return axios.get(
|
return axios.get(
|
||||||
'http://10.134.135.9:8001/hx-weather-warning/camera/getCameraListByName?name=' +
|
'http://10.134.135.9:8001/hx-weather-warning/camera/getCameraListByName?name=' +
|
||||||
params.name +
|
params.name +
|
||||||
'&pageNo=' +
|
'&pageNo=' +
|
||||||
params.pageNo +
|
params.pageNo +
|
||||||
'&pageSize=' +
|
'&pageSize=' +
|
||||||
params.pageSize,
|
params.pageSize,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
// 能力云图-数据资源-总数据数
|
// 能力云图-数据资源-总数据数
|
||||||
export function getRecord(params) {
|
export function getRecord(params) {
|
||||||
return axios.get(
|
return axios.get(
|
||||||
'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query?serviceName=' +
|
'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query?serviceName=' +
|
||||||
params.serviceName +
|
params.serviceName +
|
||||||
'&orderField=' +
|
'&orderField=' +
|
||||||
params.orderField +
|
params.orderField +
|
||||||
'&orderType=' +
|
'&orderType=' +
|
||||||
params.orderType +
|
params.orderType +
|
||||||
'&pageNum=' +
|
'&pageNum=' +
|
||||||
params.pageNum +
|
params.pageNum +
|
||||||
'&pageSize=' +
|
'&pageSize=' +
|
||||||
params.pageSize +
|
params.pageSize +
|
||||||
'&serviceType=' +
|
'&serviceType=' +
|
||||||
params.serviceType,
|
params.serviceType,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getHls(params) {
|
export function getHls(params) {
|
||||||
return axios.get(
|
return axios.get(
|
||||||
'http://10.134.135.9:8001/hx-weather-warning/camera/getCameraLiveStreamByCode?cameraCode=' +
|
'http://10.134.135.9:8001/hx-weather-warning/camera/getCameraLiveStreamByCode?cameraCode=' +
|
||||||
params.cameraId +
|
params.cameraId +
|
||||||
'&protocol=' +
|
'&protocol=' +
|
||||||
params.protocol,
|
params.protocol,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
// 西海岸 POI搜索
|
// 西海岸 POI搜索
|
||||||
export function getListForPOI(params) {
|
export function getListForPOI(params) {
|
||||||
return axios.get(
|
return axios.get(
|
||||||
'http://10.134.135.3:21009/service/lbs/coder/geocoding2?appKey=675d95594136456bb7b1434dda31953f&city=青岛&keywords=' +
|
'http://10.134.135.3:21009/service/lbs/coder/geocoding2?appKey=675d95594136456bb7b1434dda31953f&city=青岛&keywords=' +
|
||||||
params.keywords,
|
params.keywords,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//西海岸 获取左侧标签树
|
||||||
|
export function getPlaceType() {
|
||||||
|
return axios.get(
|
||||||
|
'http://10.134.135.92:9537/data_service/placeTypes/getPlaceType',
|
||||||
|
config2
|
||||||
|
)
|
||||||
|
}
|
||||||
// 西海岸--获取摄像头列表的后台地址 (测试环境地址:10.134.135.92:9537)
|
// 西海岸--获取摄像头列表的后台地址 (测试环境地址:10.134.135.92:9537)
|
||||||
let _cameraUrl =
|
let _cameraUrl =
|
||||||
(_global &&
|
(_global &&
|
||||||
_global.config &&
|
_global.config &&
|
||||||
_global.config.camreaInfo &&
|
_global.config.camreaInfo &&
|
||||||
_global.config.camreaInfo.cameraUrl) ||
|
_global.config.camreaInfo.cameraUrl) ||
|
||||||
'10.134.135.92:9537'
|
'10.134.135.92:9537'
|
||||||
//能力集市基础设施-左侧列表
|
//能力集市基础设施-左侧列表
|
||||||
export function getCameraInfoByAreaId(params) {
|
export function getCameraInfoByAreaId(params) {
|
||||||
return axios.get(
|
return axios.get(
|
||||||
`http://${_cameraUrl}/data_service/getCamera/getCameraInfoByAreaId?areaId=${params.areaId}`,
|
`http://${_cameraUrl}/data_service/getCamera/getCameraInfoByAreaId?areaId=${params.areaId}`,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
//能力集市基础设施-摄像头
|
//能力集市基础设施-摄像头
|
||||||
export function getCameraByCondition(params) {
|
export function getCameraByCondition(params) {
|
||||||
return axios.post(
|
return axios.post(
|
||||||
`http://${_cameraUrl}/data_service/getCamera/getCameraByCondition`,
|
`http://${_cameraUrl}/data_service/getCamera/getCameraByCondition`,
|
||||||
params,
|
params,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function initiateMeet(data) {
|
export function initiateMeet(data) {
|
||||||
// return request({
|
// return request({
|
||||||
// url: '/enke/initiateMeet',
|
// url: '/enke/initiateMeet',
|
||||||
// method: 'post',
|
// method: 'post',
|
||||||
// data: data,
|
// data: data,
|
||||||
// })
|
// })
|
||||||
return axios.post(
|
return axios.post(
|
||||||
'http://10.134.135.92:8888/renren-admin/enke/initiateMeet',
|
'http://10.134.135.92:8888/renren-admin/enke/initiateMeet',
|
||||||
data,
|
data,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: Light
|
* @Author: Light
|
||||||
* @Date: 2022-11-16 16:46:16
|
* @Date: 2022-11-16 16:46:16
|
||||||
* @LastEditors: Light
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-11-18 15:35:25
|
* @LastEditTime: 2022-11-21 10:54:23
|
||||||
* @Description: 政务云资源列表
|
* @Description: 政务云资源列表
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
|
|
@ -0,0 +1,178 @@
|
||||||
|
<!--
|
||||||
|
* @Author: Light
|
||||||
|
* @Date: 2022-11-18 11:53:43
|
||||||
|
* @LastEditors: Light
|
||||||
|
* @LastEditTime: 2022-11-19 17:15:15
|
||||||
|
* @Description: 告诉大家这是什么
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div class="infrastructureApplication">
|
||||||
|
<div class="top">
|
||||||
|
<a-list size="small" bordered :data-source="dataList.toBeApplied">
|
||||||
|
<template #renderItem="{ item }">
|
||||||
|
<a-list-item>
|
||||||
|
<div class="name">
|
||||||
|
<a-tooltip>
|
||||||
|
<template #title>{{ item.channelName }}</template>
|
||||||
|
{{ item.channelName }}
|
||||||
|
</a-tooltip>
|
||||||
|
</div>
|
||||||
|
<a-button type="link" danger @click="delWillApplyCamera(item.id)">
|
||||||
|
移出
|
||||||
|
</a-button>
|
||||||
|
</a-list-item>
|
||||||
|
</template>
|
||||||
|
<template #header>
|
||||||
|
<div class="title">待申请列表</div>
|
||||||
|
</template>
|
||||||
|
<template #footer>
|
||||||
|
<a-button type="primary">一键申请</a-button>
|
||||||
|
</template>
|
||||||
|
</a-list>
|
||||||
|
</div>
|
||||||
|
<div class="bottom">
|
||||||
|
<a-list size="small" bordered :data-source="data">
|
||||||
|
<template #renderItem="{ item }">
|
||||||
|
<a-list-item>
|
||||||
|
<div class="name">
|
||||||
|
<a-tooltip>
|
||||||
|
<template #title>{{ item }}</template>
|
||||||
|
{{ item }}
|
||||||
|
</a-tooltip>
|
||||||
|
</div>
|
||||||
|
<a-button type="link" danger>删除</a-button>
|
||||||
|
</a-list-item>
|
||||||
|
</template>
|
||||||
|
<template #header>
|
||||||
|
<div class="title">已申请列表</div>
|
||||||
|
</template>
|
||||||
|
</a-list>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
willApplyCameraSelect,
|
||||||
|
willApplyCameraBatchInsert,
|
||||||
|
willApplyCameraBatchDelete,
|
||||||
|
} from '@/api/home'
|
||||||
|
import { onBeforeUnmount, reactive, ref } from 'vue'
|
||||||
|
import { message } from 'ant-design-vue'
|
||||||
|
import mybus from '@/myplugins/mybus'
|
||||||
|
const dataList = reactive({ toBeApplied: [], requested: [] })
|
||||||
|
// 待办
|
||||||
|
const addWacFlag = ref(true)
|
||||||
|
const delWacFlag = ref(true)
|
||||||
|
const delWillApplyCamera = (id) => {
|
||||||
|
console.log('删除===>', id)
|
||||||
|
if (delWacFlag.value) {
|
||||||
|
delWacFlag.value = false
|
||||||
|
willApplyCameraBatchDelete([id]).then((res) => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
message.success('移出成功')
|
||||||
|
} else {
|
||||||
|
message.warning('移出失败')
|
||||||
|
}
|
||||||
|
init()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const init = () => {
|
||||||
|
willApplyCameraSelect().then((res) => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
dataList.toBeApplied = res.data.data
|
||||||
|
delWacFlag.value = true
|
||||||
|
addWacFlag.value = true
|
||||||
|
} else {
|
||||||
|
message.warning('查询失败')
|
||||||
|
dataList.toBeApplied = []
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
init()
|
||||||
|
mybus.on('selectCamera', (obj) => {
|
||||||
|
// 判断最多10条
|
||||||
|
if (dataList.toBeApplied.length + dataList.requested.length > 10) {
|
||||||
|
message.warning('最多只能申请10个摄像头!')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 判断是否已操作
|
||||||
|
let addFlag = true
|
||||||
|
dataList.toBeApplied.map((val) => {
|
||||||
|
if (addFlag && val.channelId == obj.channelId) {
|
||||||
|
addFlag = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
dataList.requested.map((val) => {
|
||||||
|
if (addFlag && val.channelId == obj.channelId) {
|
||||||
|
addFlag = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
if (addWacFlag.value) {
|
||||||
|
if (addFlag) {
|
||||||
|
addWacFlag.value = false
|
||||||
|
willApplyCameraBatchInsert([obj]).then((res) => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
message.success('移入成功')
|
||||||
|
} else {
|
||||||
|
message.warning('移入失败')
|
||||||
|
}
|
||||||
|
init()
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
message.warning('已申请该摄像头!')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
mybus.off('selectCamera')
|
||||||
|
})
|
||||||
|
|
||||||
|
const data = [
|
||||||
|
'Racing car sprays burning fuel into crowd.',
|
||||||
|
'Japanese princess to wed commoner.',
|
||||||
|
'Australian walks 100km after outback crash.',
|
||||||
|
'Man charged over missing wedding girl.',
|
||||||
|
'Los Angeles battles huge wildfires.',
|
||||||
|
'Racing car sprays burning fuel into crowd.',
|
||||||
|
'Japanese princess to wed commoner.',
|
||||||
|
'Australian walks 100km after outback crash.',
|
||||||
|
'Man charged over missing wedding girl.',
|
||||||
|
'Los Angeles battles huge wildfires.',
|
||||||
|
]
|
||||||
|
</script>
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.infrastructureApplication {
|
||||||
|
background: #fff;
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
right: 0.16rem;
|
||||||
|
margin-top: -3.5rem;
|
||||||
|
.bottom {
|
||||||
|
margin-top: 32px;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.name {
|
||||||
|
width: 150px;
|
||||||
|
overflow: hidden;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
:deep(.ant-list-footer) {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
:deep(.ant-list-items) {
|
||||||
|
height: 2.45rem;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
:deep(.ant-spin-nested-loading) {
|
||||||
|
height: 2.45rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -205,8 +205,7 @@ import { ElMessage } from 'element-plus'
|
||||||
this.addResourceTomap('videoMap', data)
|
this.addResourceTomap('videoMap', data)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: { // 查询
|
||||||
// 查询
|
|
||||||
handleEnter(){
|
handleEnter(){
|
||||||
console.log('查询',this.address,this.addressType)
|
console.log('查询',this.address,this.addressType)
|
||||||
if(this.address){
|
if(this.address){
|
||||||
|
@ -742,4 +741,13 @@ import { ElMessage } from 'element-plus'
|
||||||
max-width: 2.4rem;
|
max-width: 2.4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-with-select{
|
||||||
|
width: 2.4rem;
|
||||||
|
svg{
|
||||||
|
position: relative;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue