Compare commits
No commits in common. "e818e901aca84352cdd70dd818e8cd832a16b1f8" and "21e602bb9e787ac9ddddf0e45a03fc97abd55ebc" have entirely different histories.
e818e901ac
...
21e602bb9e
|
@ -23,8 +23,10 @@ let loadingInstance
|
|||
* @param {*} msg
|
||||
*/
|
||||
const handleCode = (code, msg, res) => {
|
||||
// debugger
|
||||
switch (code) {
|
||||
case 401:
|
||||
debugger
|
||||
store.dispatch('user/resetAll').catch(() => {})
|
||||
break
|
||||
case 403:
|
||||
|
@ -64,6 +66,7 @@ const instance = axios.create({
|
|||
*/
|
||||
instance.interceptors.request.use(
|
||||
(config) => {
|
||||
// debugger
|
||||
const token = getAccessToken()
|
||||
if (token) config.headers[tokenName] = token
|
||||
if (
|
||||
|
@ -154,6 +157,7 @@ instance.interceptors.response.use(
|
|||
// }
|
||||
},
|
||||
(error) => {
|
||||
// debugger
|
||||
console.log('接口error', error)
|
||||
if (loadingInstance) loadingInstance.close()
|
||||
|
||||
|
|
|
@ -267,7 +267,7 @@
|
|||
|
||||
<style scoped lang="less">
|
||||
.ability-to-apply-for {
|
||||
// height: 2.9rem;
|
||||
height: 2.9rem;
|
||||
overflow: hidden;
|
||||
|
||||
.title {
|
||||
|
@ -281,7 +281,7 @@
|
|||
}
|
||||
|
||||
.ability-to-apply-for-content {
|
||||
// padding-right: 0.5rem;
|
||||
padding-right: 0.5rem;
|
||||
position: relative;
|
||||
|
||||
.dep-name {
|
||||
|
|
|
@ -2321,8 +2321,7 @@
|
|||
}
|
||||
|
||||
.leixingsumfather {
|
||||
margin-left: -13px;
|
||||
width: 9.4rem;
|
||||
width: 8.1rem;
|
||||
display: inline-block;
|
||||
height: 0.3014rem;
|
||||
overflow: hidden;
|
||||
|
|
|
@ -312,6 +312,7 @@
|
|||
const apiURL = window.SITE_CONFIG.apiURL
|
||||
|
||||
if (!applyAll) {
|
||||
debugger
|
||||
list.value.map((item) => {
|
||||
item.arr.map((val) => {
|
||||
let obj = item.children
|
||||
|
|
|
@ -857,8 +857,8 @@
|
|||
</script>
|
||||
<style scoped lang="less">
|
||||
#search-result-list-container {
|
||||
// width: 1088px;
|
||||
padding: 0 18px;
|
||||
width: 1088px;
|
||||
padding: 0 20px;
|
||||
background: #f3f5f9;
|
||||
|
||||
.detail-content {
|
||||
|
@ -871,7 +871,7 @@
|
|||
}
|
||||
|
||||
.shai-xuan {
|
||||
// width: 1047px;
|
||||
width: 1047px;
|
||||
height: 36px;
|
||||
// margin: 11px 0 20px;
|
||||
// background: #e5f2ff;
|
||||
|
@ -904,7 +904,7 @@
|
|||
|
||||
.condition {
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
right: 20px;
|
||||
top: 10px;
|
||||
|
||||
ul li {
|
||||
|
@ -941,7 +941,7 @@
|
|||
}
|
||||
|
||||
.result-list {
|
||||
// width: 1048px;
|
||||
width: 1048px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
|
@ -1010,7 +1010,7 @@
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
// margin: 0 10px 0 0;
|
||||
margin: 0 10px 0 0;
|
||||
|
||||
.header-right {
|
||||
// display: flex;
|
||||
|
@ -1023,7 +1023,7 @@
|
|||
}
|
||||
|
||||
div {
|
||||
// margin-right: 24px;
|
||||
margin-right: 24px;
|
||||
}
|
||||
|
||||
.label-content {
|
||||
|
@ -1043,7 +1043,7 @@
|
|||
|
||||
.header-right:last-child {
|
||||
div {
|
||||
// margin-right: 10px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1107,7 +1107,7 @@
|
|||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
// margin: 0 10px;
|
||||
margin: 0 10px;
|
||||
align-items: center;
|
||||
|
||||
.shopping {
|
||||
|
@ -1194,8 +1194,7 @@
|
|||
align-items: center;
|
||||
|
||||
& > div {
|
||||
margin-right: 16px;
|
||||
// margin: 0 10px;
|
||||
margin: 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1225,7 +1224,7 @@
|
|||
|
||||
.description {
|
||||
max-width: 990px;
|
||||
// height: 52px;
|
||||
height: 52px;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
display: -webkit-box;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: Light
|
||||
* @Date: 2022-11-18 11:53:43
|
||||
* @LastEditors: Light
|
||||
* @LastEditTime: 2022-11-21 17:51:38
|
||||
* @LastEditTime: 2022-11-22 10:54:46
|
||||
* @Description: 告诉大家这是什么
|
||||
-->
|
||||
<template>
|
||||
|
@ -258,7 +258,8 @@
|
|||
}
|
||||
})
|
||||
dataList.requested.map((val) => {
|
||||
if (addFlag && val.channelId == obj.channelId) {
|
||||
console.log('111', val, addFlag)
|
||||
if (addFlag && val.cameraInfo.channelId == obj.channelId) {
|
||||
addFlag = false
|
||||
}
|
||||
})
|
||||
|
|
|
@ -25,12 +25,12 @@
|
|||
</a-carousel>
|
||||
<div class="operation-content" style="position:ab">
|
||||
<div class="video-content">
|
||||
<h5-player :video-url="videoUrl"></h5-player>
|
||||
<h5-player :video-url="videoUrl"></h5-player>
|
||||
</div>
|
||||
<div class="text-label">
|
||||
<span>{{defaultIndex+1}}</span>/<span>{{cameraDataList.length}}</span>
|
||||
</div>
|
||||
<div class="footer-button">
|
||||
<div class="footer-button">
|
||||
<a-button type="primary" @click="applyNow(cameraDataList[defaultIndex])">立即申请</a-button>
|
||||
<a-button type="primary" style="margin-left:20px" @click="addIntoCart(cameraDataList[defaultIndex])">加入申购车</a-button>
|
||||
</div>
|
||||
|
@ -46,11 +46,15 @@
|
|||
LeftCircleOutlined,
|
||||
RightCircleOutlined,
|
||||
} from '@ant-design/icons-vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
// import { useRouter } from 'vue-router'
|
||||
import H5Player from '@/views/home/components/H5Player.vue'
|
||||
import mybus from '@/myplugins/mybus'
|
||||
import { message } from 'ant-design-vue'
|
||||
import { getStreamByChannelCode } from '@/api/videoSurveillance'
|
||||
import {getCameraLiveStream} from '@/api/file'
|
||||
import {willApplyCameraSelect,
|
||||
getApplyCameraListXha,
|
||||
} from '@/api/home'
|
||||
export default {
|
||||
name: '',
|
||||
components: {
|
||||
|
@ -78,10 +82,10 @@
|
|||
data() {
|
||||
return {
|
||||
openVideo: false,
|
||||
videoStream: '',
|
||||
videoStream: '',
|
||||
videoUrl:'', //视频预览url
|
||||
defaultIndex:0,//默认显示列表中的对一个
|
||||
router:useRouter()
|
||||
// router:useRouter()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -94,13 +98,59 @@
|
|||
},
|
||||
//立即申请
|
||||
applyNow(item){
|
||||
console.log('applyNowapplyNow',item);
|
||||
//跳转至申请页面
|
||||
this.router.push({
|
||||
path: '/apply',
|
||||
query: {
|
||||
|
||||
},
|
||||
getApplyCameraListXha().then(res => {
|
||||
let flag = true
|
||||
if (res.data.code == 0) {
|
||||
res.data.data.map((val) => {
|
||||
val.cameraInfo = JSON.parse(val.cameraInfo)
|
||||
console.log('applyNowapplyNow',val.cameraInfo);
|
||||
if(flag && val.cameraInfo.channelId == item.channelId){
|
||||
flag = false
|
||||
}
|
||||
})
|
||||
if(flag){
|
||||
willApplyCameraSelect().then(res => {
|
||||
if (res.data.code == 0) {
|
||||
res.data.data.map(val => {
|
||||
if(item.channelId == val.channelId){
|
||||
item.id = val.id
|
||||
}
|
||||
})
|
||||
}
|
||||
let obj = {
|
||||
arr: [
|
||||
{
|
||||
checked: true,
|
||||
delFlag: 0,
|
||||
id: '1593084734789996545',
|
||||
idtCameraChannel: '790582098133127168',
|
||||
loading: false,
|
||||
note1: '',
|
||||
resourceId: '1522550195055828996',
|
||||
resourceName: '摄像头列表',
|
||||
type: '基础设施',
|
||||
},
|
||||
],
|
||||
deptName: '西海岸新区工业和信息化局',
|
||||
deptId: '732560225344761856',
|
||||
}
|
||||
item.type = '基础设施'
|
||||
item.delFlag = 0
|
||||
item.resourceId = item.channelId
|
||||
item.resourceName = item.channelName
|
||||
obj.arr[0].note1 = JSON.stringify([item])
|
||||
if (obj.arr.length > 0) {
|
||||
localStorage.setItem('applyList', JSON.stringify([obj]))
|
||||
console.log('applyNowapplyNowobj',obj);
|
||||
this.$router.push({
|
||||
path: '/apply',
|
||||
})
|
||||
}
|
||||
})
|
||||
}else{
|
||||
message.warning('该摄像头已申请!')
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
//加入申购车
|
||||
|
@ -136,7 +186,7 @@
|
|||
console.log('uyutyuyopopopop',this.cameraDataList[this.defaultIndex]);
|
||||
this.getVideoUrl(this.cameraDataList[this.defaultIndex]);
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
//查看下一个
|
||||
handleNext(){
|
||||
|
@ -146,10 +196,10 @@
|
|||
this.getVideoUrl(this.cameraDataList[0]);
|
||||
}else{
|
||||
this.defaultIndex = this.defaultIndex + 1;
|
||||
console.log('opopopop',this.cameraDataList[this.defaultIndex]);
|
||||
console.log('opopopop',this.cameraDataList[this.defaultIndex]);
|
||||
this.getVideoUrl(this.cameraDataList[this.defaultIndex]);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
},
|
||||
}
|
||||
|
@ -229,14 +279,14 @@
|
|||
}
|
||||
.video-content{
|
||||
width: 750px;
|
||||
height:600px;
|
||||
text-align: left;
|
||||
height:600px;
|
||||
text-align: left;
|
||||
padding: 5px;
|
||||
}
|
||||
.footer-button{
|
||||
width: 750px;
|
||||
//height:50px;
|
||||
text-align: center;
|
||||
//height:50px;
|
||||
text-align: center;
|
||||
padding-top:5px;
|
||||
}
|
||||
}
|
||||
|
@ -289,7 +339,7 @@
|
|||
.ant-carousel :deep(.slick-dots) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
// .current-video {
|
||||
// width: 320px;
|
||||
|
|
|
@ -523,7 +523,7 @@ import { ElMessage } from 'element-plus'
|
|||
if(queryString){
|
||||
getCameraByCondition({
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
pageSize: 30000,
|
||||
regionId: "70be8c5b664f4bcf869d82f2e8335051",
|
||||
type: "0",
|
||||
name:queryString,
|
||||
|
|
Loading…
Reference in New Issue