Merge branch 'hi-ucs-xha' of http://15.2.21.221:3000/wuhongjian/hi-ucs into hi-ucs-xha

# Conflicts:
#	front/src/api/file.js
#	front/src/views/home/DetailsPageconetent.vue
This commit is contained in:
a0049873 2022-06-14 17:38:11 +08:00
commit 69e71e841a
4 changed files with 289 additions and 191 deletions

View File

@ -2,7 +2,7 @@
* @Author: hisense.wuhongjian
* @Date: 2022-04-20 17:16:35
* @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-06-14 17:29:06
* @LastEditTime: 2022-06-14 17:37:18
* @Description: 告诉大家这是什么
*/
import request from '@/utils/request'
@ -46,21 +46,25 @@ export function correct(params) {
export function paddleocr(params) {
return axios.post('http://15.72.183.90:7008/paddleocr', params, config2)
}
export function getRecord(params) {
export function getVideoList(params) {
return axios.get(
'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query?serviceName=' +
params.serviceName +
'&orderField=' +
params.orderField +
'&orderType=' +
params.orderType +
'&pageNum=' +
params.pageNum +
'&pageSize=' +
params.pageSize +
'&serviceType=' +
params.serviceType,
'http://10.134.135.9:8001/hx-weather-warning/camera/getCameraListByName',
params,
config2
)
}
export function getHls(params) {
return axios.get(
'http://10.134.135.9:8001/hx-weather-warning/camera/getCameraLiveStream',
params,
config2
)
}
export function getRecord(params) {
return axios.get(
'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query',
params,
config2
)
}

View File

@ -365,6 +365,7 @@
// VideoCameraOutlined,
} from '@ant-design/icons-vue'
import { selectDicStoreAll, pageWithAttrs, zywMessage } from '@/api/home.js'
import { getVideoList } from '@/api/file.js'
import { getSgcList } from '@/api/personalCenter'
import { getRecord } from '@/api/file'
import { useRouter } from 'vue-router'
@ -373,7 +374,7 @@
import detailsPageconetentTree from '@/views/home/detailsPageconetentTree.vue'
import searchResultList from '@/views/home/components/searchResultList.vue'
import KnowledgeBase from '@/views/home/components/KnowledgeBase.vue'
import VideoSurveillance from '@/views/home/videoSurveillance'
// import VideoSurveillance from '@/views/home/videoSurveillance'
export default defineComponent({
setup() {
// const store = useStore()
@ -1009,16 +1010,31 @@
})
}else if(paramsGetResources.type=='基础设施'){
// videoList.data = res.data.data.records || []
resourceTotal.value = infrastructure.value.data.total || ''
getShoppingCartList(infrastructure.value.data.records)
console.log(
'基础设施~~~~~~~~~~~',
resourceTotal.value,
resourceList.data
)
// resourceTotal.value = infrastructure.value.data.total || ''
// getShoppingCartList(infrastructure.value.data.records)
// console.log(
// '~~~~~~~~~~~',
// resourceTotal.value,
// resourceList.data
// )
const params = {
name: searchValue.value,
pageNo: paramsGetResources.pageNum,
pageSize: paramsGetResources.pageSize
}
getVideoList(params).then((res) => {
//
res.data.data.list.forEach(val =>{
val.name = val.serviceName
val.createDate = val.updateTime
val.id = val.serviceId
})
resourceTotal.value = res.data.data.total
resourceList.data = res.data.data.list
})
}else if(paramsGetResources.type=='数据资源'){
const obj ={
serviceName:paramsGetResources.name,
serviceName:searchValue.value,
orderField:'updateTime',
orderType:'desc',
pageNum:paramsGetResources.pageNum,
@ -1277,7 +1293,7 @@
DownOutlined,
KnowledgeBase,
// VideoCameraOutlined,
VideoSurveillance,
// VideoSurveillance,
},
beforeUnmount() {
mybus.off('selectCardsitem')

View File

@ -156,7 +156,14 @@
免费试用
</a-button>
</div>
<a-button type="primary" @click="toView('details', item)">
<a-button
type="primary"
v-if="item.cameraIndexCode"
@click="openVideo(item)"
>
视频预览
</a-button>
<a-button type="primary" v-else @click="toView('details', item)">
查看详情
</a-button>
<a-button type="primary" @click="toView('apply', item)">
@ -169,14 +176,28 @@
</div>
</div>
</div>
<a-modal
v-model:visible="visible"
title="视频预览"
:width="750"
destroyOnClose
>
<template #footer></template>
<div style="width: 100%; display: flex; justify-content: center">
<div style="width: 100%; height: 100%">
<vue3VideoPlay v-bind="options" />
</div>
</div>
</a-modal>
</div>
</template>
<script>
import { ref } from 'vue'
import { ref, reactive } from 'vue'
import { message } from 'ant-design-vue'
import { useRouter } from 'vue-router'
import { getUser, sgcInsert } from '@/api/home'
import { getHls } from '@/api/file.js'
import { scInsert, scDel } from '@/api/personalCenter'
import mybus from '@/myplugins/mybus'
@ -283,6 +304,34 @@
components: {},
setup(props) {
let shoppingKey = ref(1)
let videoUrl = ref('')
let visible = ref(false)
const options = reactive({
width: '700px', //
height: '400px', //
color: '#409eff', //
title: '', //
src: '', //
muted: false, //
webFullScreen: false,
speedRate: ['0.75', '1.0', '1.25', '1.5', '2.0'], //
autoPlay: true, //
loop: false, //
mirror: false, //
ligthOff: false, //
volume: 0.3, //
control: true, //
controlBtns: [
'audioTrack',
'quality',
'speedRate',
'volume',
'setting',
'pip',
'pageFullScreen',
'fullScreen',
], //,
})
// id
const selList = ref([
{ name: '发布时间', value: 'tdr.create_date' },
@ -317,6 +366,7 @@
}
function toView(type, item) {
console.log('item', item)
if (type === 'apply') {
// window.open(newpage.href, '_blank')
router.push({
@ -402,10 +452,27 @@
})
console.log('选择===========》', val, selData.value)
}
//
const openVideo = (item) => {
videoUrl.value = ''
const param = {
cameraId: item.cameraIndexCode,
protocol: 'hls',
}
getHls(param).then((res) => {
console.log('获取视频地址===============>', res)
// videoUrl.value = res.data.data
options.value.src = res.data.data
visible.value = true
})
}
mybus.on('chongzhi', () => {
selData.value = 'total'
})
return {
visible,
videoUrl,
options,
onSearch,
resultList,
toView,
@ -417,6 +484,7 @@
cardType,
findComponentName,
shoppingKey,
openVideo,
}
},
beforeUnmount() {

View File

@ -17,16 +17,26 @@
</div>
<div class="item">
<div class="zj">组件服务</div>
<div class="name" v-for="(item, index) in zjList" :key="item.id" :class="index == 4 ? 'name-last' : ''"
@click="selectOne(item.id)">
<div
class="name"
v-for="(item, index) in zjList"
:key="item.id"
:class="index == 4 ? 'name-last' : ''"
@click="selectOne(item.id)"
>
{{ index + 1 }}-{{ item.name }}
</div>
<div class="btn" @click="jumpPage('组件服务')">查看更多</div>
</div>
<div class="item">
<div class="yy">应用资源</div>
<div class="name" v-for="(item, index) in yyList" :key="item.id" :class="index == 4 ? 'name-last' : ''"
@click="selectOne(item.id)">
<div
class="name"
v-for="(item, index) in yyList"
:key="item.id"
:class="index == 4 ? 'name-last' : ''"
@click="selectOne(item.id)"
>
{{ index + 1 }}-{{ item.name }}
</div>
<div class="btn" @click="jumpPage('应用资源')">查看更多</div>