2022-06-25 13:34:24 +08:00
|
|
|
<!-- 基础设施 -->
|
2022-06-24 17:04:47 +08:00
|
|
|
<template>
|
2022-06-25 13:34:24 +08:00
|
|
|
<div class="infrastructrueBox">
|
|
|
|
<!-- 选项卡 -->
|
|
|
|
<div class="infrastructrue-tab">
|
|
|
|
<div v-for="(item, index) in tabList" :key="index" class="tabBox">
|
|
|
|
<b class="leftType">{{ item.title }}</b>
|
2022-06-27 18:13:13 +08:00
|
|
|
<button @click="nullClick" v-if="item.title == '视频细分'">清空</button>
|
2022-06-25 13:34:24 +08:00
|
|
|
<span
|
|
|
|
v-for="itemContent in item.content"
|
|
|
|
:key="itemContent"
|
2022-06-25 15:08:19 +08:00
|
|
|
@click="tabClick(index, itemContent, itemContent)"
|
2022-06-25 13:34:24 +08:00
|
|
|
:class="
|
2022-06-29 18:36:50 +08:00
|
|
|
clickList[index].content.indexOf(itemContent.labelName) != -1 ||
|
|
|
|
clickList[index].content.indexOf(itemContent) != -1
|
|
|
|
? 'down'
|
|
|
|
: ''
|
2022-06-25 13:34:24 +08:00
|
|
|
"
|
|
|
|
>
|
2022-06-29 18:36:50 +08:00
|
|
|
{{ itemContent.labelName || itemContent }}
|
2022-06-25 13:34:24 +08:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-27 18:53:51 +08:00
|
|
|
<!-- 地图 -->
|
2022-06-28 22:24:05 +08:00
|
|
|
<div class="map-contain" v-if="showMap">
|
2022-06-27 18:53:51 +08:00
|
|
|
<video-surveillance></video-surveillance>
|
|
|
|
</div>
|
2022-06-25 13:34:24 +08:00
|
|
|
<!-- 功能行 -->
|
|
|
|
<div class="infrastructrue-content">
|
|
|
|
<!-- 表格数据统计 -->
|
|
|
|
<div class="contentNum">
|
|
|
|
<p>
|
|
|
|
备选
|
2022-06-28 22:24:05 +08:00
|
|
|
<span>{{ pagination.total }}</span>
|
2022-06-25 13:34:24 +08:00
|
|
|
个
|
|
|
|
</p>
|
|
|
|
<i class="boundary"></i>
|
|
|
|
<p>
|
|
|
|
已选
|
2022-06-25 15:26:42 +08:00
|
|
|
<span>{{ allClick.length }}</span>
|
2022-06-25 13:34:24 +08:00
|
|
|
个
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<!-- 右侧 -->
|
|
|
|
<div class="contentRight">
|
|
|
|
<!-- 搜索@search="onSearch" -->
|
|
|
|
<div class="searchInput">
|
|
|
|
<a-input-search
|
2022-06-29 18:36:50 +08:00
|
|
|
v-model:value="mapSearchParam.cameraName"
|
2022-06-25 13:34:24 +08:00
|
|
|
placeholder="请输入关键词"
|
|
|
|
enter-button="搜索"
|
|
|
|
size="large"
|
2022-06-29 18:36:50 +08:00
|
|
|
@change="getCamera"
|
2022-06-25 13:34:24 +08:00
|
|
|
/>
|
|
|
|
<a-button
|
|
|
|
type="primary"
|
|
|
|
style="width: 0.8rem; height: 0.36rem; margin-left: 0.7rem"
|
|
|
|
@click="clean"
|
|
|
|
>
|
|
|
|
重置
|
|
|
|
</a-button>
|
|
|
|
</div>
|
|
|
|
<i class="boundary"></i>
|
|
|
|
<!-- 添加至购物车 -->
|
2022-06-28 22:24:05 +08:00
|
|
|
<a-button type="primary" @click="addShoppingCart" class="buttonAdd">
|
2022-06-25 13:34:24 +08:00
|
|
|
添加至购物车
|
|
|
|
</a-button>
|
|
|
|
<!-- 一键申请 -->
|
|
|
|
<a-button type="primary" @click="apply" class="buttonAdd">
|
|
|
|
一键申请
|
|
|
|
</a-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- 表格 -->
|
|
|
|
<div class="infrastructrue-table">
|
|
|
|
<a-table
|
|
|
|
class="ant-table-striped"
|
|
|
|
:dataSource="dataSource"
|
|
|
|
:columns="columns"
|
2022-06-25 15:08:19 +08:00
|
|
|
:scroll="{ y: tableHeight }"
|
2022-06-28 22:24:05 +08:00
|
|
|
rowKey="channelId"
|
2022-06-25 13:34:24 +08:00
|
|
|
:rowClassName="
|
|
|
|
(record, index) => (index % 2 === 1 ? 'table-striped' : null)
|
|
|
|
"
|
|
|
|
:pagination="pagination"
|
|
|
|
@change="handleTableChange"
|
|
|
|
:row-selection="{
|
|
|
|
selectedRowKeys: selectedRowKeys,
|
|
|
|
onChange: onSelectChange,
|
|
|
|
}"
|
2022-06-29 18:36:50 +08:00
|
|
|
>
|
|
|
|
<template #bodyCell="{ column, record }">
|
|
|
|
<template v-if="column.dataIndex === 'operation'">
|
|
|
|
<a @click="openVideo(record.channelCode)">预览</a>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</a-table>
|
2022-06-25 13:34:24 +08:00
|
|
|
</div>
|
2022-06-29 18:36:50 +08:00
|
|
|
<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>
|
2022-06-25 13:34:24 +08:00
|
|
|
</div>
|
2022-06-24 17:04:47 +08:00
|
|
|
</template>
|
2022-06-25 13:34:24 +08:00
|
|
|
<script setup>
|
2022-06-27 18:53:51 +08:00
|
|
|
import VideoSurveillance from '@/views/home/videoSurveillance'
|
2022-06-27 18:13:13 +08:00
|
|
|
import { getCategoryTreePage } from '@/api/personalCenter'
|
|
|
|
import { dataType } from 'element-plus/es/components/table-v2/src/common'
|
2022-06-29 18:36:50 +08:00
|
|
|
import { ref, reactive, onMounted } from 'vue'
|
|
|
|
import {
|
|
|
|
getCameraByParentId,
|
|
|
|
getStreamByChannelCode,
|
|
|
|
getCameraAllLabel,
|
|
|
|
} from '@/api/videoSurveillance'
|
2022-06-28 22:24:05 +08:00
|
|
|
import { sgcInsert } from '@/api/home'
|
|
|
|
import { message } from 'ant-design-vue'
|
|
|
|
import mybus from '@/myplugins/mybus'
|
2022-06-29 18:36:50 +08:00
|
|
|
const options = reactive({
|
|
|
|
width: '700px', //播放器宽度
|
|
|
|
height: '400px', //播放器高度
|
|
|
|
color: '#409eff', //主题色
|
|
|
|
title: '', //视频名称
|
|
|
|
src: '', //视频源
|
|
|
|
type: 'm3u8', // 视频源类型
|
|
|
|
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',
|
|
|
|
], //显示所有按钮,
|
|
|
|
})
|
|
|
|
let visible = ref(false)
|
2022-06-28 22:24:05 +08:00
|
|
|
const pagination = ref({
|
|
|
|
total: 0,
|
|
|
|
current: 1,
|
|
|
|
pageSize: 10, //每页中显示10条数据
|
|
|
|
showSizeChanger: true,
|
|
|
|
pageSizeOptions: ['5', '10', '15', '20'], //每页中显示的数据
|
|
|
|
})
|
|
|
|
const mapSearchParam = ref({
|
|
|
|
// 地图搜索初始化数据
|
|
|
|
parentId: '',
|
2022-06-29 18:36:50 +08:00
|
|
|
cameraName: '',
|
2022-06-28 22:24:05 +08:00
|
|
|
checkStatus: '1',
|
|
|
|
pageNum: pagination.value.current,
|
|
|
|
pageSize: pagination.value.pageSize,
|
|
|
|
gpsX: '',
|
|
|
|
gpsY: '',
|
|
|
|
radius: '',
|
2022-06-29 18:36:50 +08:00
|
|
|
labelCodes: [],
|
2022-06-28 22:24:05 +08:00
|
|
|
})
|
|
|
|
const showMap = ref(true)
|
2022-06-27 18:13:13 +08:00
|
|
|
onMounted(() => {
|
|
|
|
tabClick(0, '视频资源')
|
2022-06-28 22:24:05 +08:00
|
|
|
getCamera()
|
|
|
|
mybus.off('getListByParentId')
|
|
|
|
mybus.on('getListByParentId', (parentId) => {
|
|
|
|
mapSearchParam.value.parentId = parentId
|
|
|
|
getCamera()
|
|
|
|
})
|
|
|
|
mybus.off('getListByMap')
|
|
|
|
mybus.on('getListByMap', (param) => {
|
|
|
|
mapSearchParam.value.gpsX = param.gpsX
|
|
|
|
mapSearchParam.value.gpsY = param.gpsY
|
|
|
|
mapSearchParam.value.radius = param.radius
|
|
|
|
getCamera()
|
|
|
|
})
|
2022-06-27 18:13:13 +08:00
|
|
|
})
|
2022-06-28 22:24:05 +08:00
|
|
|
const selectedList = ref([])
|
2022-06-25 13:34:24 +08:00
|
|
|
const tabList = ref([
|
|
|
|
{
|
|
|
|
title: '设施类型',
|
|
|
|
content: ['视频资源', '云资源', '感知资源'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '视频细分',
|
2022-06-27 18:13:13 +08:00
|
|
|
content: [],
|
2022-06-25 13:34:24 +08:00
|
|
|
},
|
2022-06-27 18:13:13 +08:00
|
|
|
])
|
2022-06-29 18:36:50 +08:00
|
|
|
const openVideo = (id) => {
|
|
|
|
console.log('打开视频', id)
|
|
|
|
const param = {
|
|
|
|
channelCode: id,
|
|
|
|
}
|
|
|
|
getStreamByChannelCode(param).then((res) => {
|
|
|
|
console.log(res)
|
|
|
|
visible.value = true
|
|
|
|
options.value.src = res.data.data
|
|
|
|
})
|
|
|
|
}
|
2022-06-27 18:13:13 +08:00
|
|
|
// const dataTypeList = () => {
|
|
|
|
// if (tabList.value[0].content.indexOf('视频资源') != -1) {
|
|
|
|
// tabList.value[1].content = ['123344', '213124']
|
|
|
|
// }else if(tabList.value[0].content.indexOf('云资源') != -1){
|
|
|
|
// tabList.value[1].content = ['5555', '666']
|
|
|
|
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// dataTypeList()
|
|
|
|
//初始化数据
|
2022-06-25 13:34:24 +08:00
|
|
|
const init = () => {
|
|
|
|
tabList.value.map((item) => {
|
|
|
|
let params = {
|
|
|
|
title: item.title,
|
|
|
|
content: [],
|
|
|
|
}
|
|
|
|
clickList.value.push(params)
|
|
|
|
})
|
2022-06-28 22:24:05 +08:00
|
|
|
mybus.off('tranferToList')
|
|
|
|
mybus.on('tranferToList', (data) => {
|
|
|
|
console.log('获取到的列表数据')
|
|
|
|
})
|
2022-06-25 13:34:24 +08:00
|
|
|
}
|
|
|
|
let clickList = ref([]) //存储点击的tab
|
|
|
|
init()
|
2022-06-25 15:08:19 +08:00
|
|
|
//表格的高度
|
|
|
|
let tableHeight = ref('600')
|
2022-06-25 13:34:24 +08:00
|
|
|
//tab切换点击事件
|
2022-06-27 18:13:13 +08:00
|
|
|
const tabClick = (indexFather, name) => {
|
2022-06-29 18:36:50 +08:00
|
|
|
debugger
|
2022-06-25 13:34:24 +08:00
|
|
|
if (clickList.value[indexFather].content.indexOf(name) != -1) {
|
2022-06-27 18:13:13 +08:00
|
|
|
if (name == '视频资源') {
|
2022-06-25 15:08:19 +08:00
|
|
|
tableHeight.value = 330
|
2022-06-28 22:24:05 +08:00
|
|
|
showMap.value = true
|
2022-06-27 18:13:13 +08:00
|
|
|
} else if (name == '云资源') {
|
2022-06-25 15:08:19 +08:00
|
|
|
tableHeight.value = 600
|
2022-06-28 22:24:05 +08:00
|
|
|
showMap.value = false
|
2022-06-27 18:13:13 +08:00
|
|
|
} else if (name == '感知资源') {
|
2022-06-25 15:08:19 +08:00
|
|
|
tableHeight.value = 330
|
2022-06-28 22:24:05 +08:00
|
|
|
showMap.value = true
|
2022-06-25 15:08:19 +08:00
|
|
|
}
|
2022-06-25 13:34:24 +08:00
|
|
|
clickList.value[indexFather].content.splice(
|
|
|
|
clickList.value[indexFather].content.indexOf(name),
|
|
|
|
1
|
|
|
|
)
|
|
|
|
} else {
|
2022-06-27 18:13:13 +08:00
|
|
|
if (name == '视频资源') {
|
2022-06-25 15:08:19 +08:00
|
|
|
tableHeight.value = 330
|
2022-06-28 22:24:05 +08:00
|
|
|
showMap.value = true
|
2022-06-27 18:13:13 +08:00
|
|
|
tabList.value[1].content = []
|
|
|
|
clickList.value[1].content = []
|
|
|
|
clickList.value[indexFather].content[0] = name
|
2022-06-29 18:36:50 +08:00
|
|
|
getCameraAllLabel().then((res) => {
|
|
|
|
res.data.data.forEach((val) => {
|
|
|
|
tabList.value[1].content.push({
|
|
|
|
labelCode: val.labelCode,
|
|
|
|
labelName: val.labelName,
|
|
|
|
})
|
2022-06-27 18:13:13 +08:00
|
|
|
})
|
|
|
|
})
|
|
|
|
} else if (name == '云资源') {
|
2022-06-25 15:08:19 +08:00
|
|
|
tableHeight.value = 600
|
2022-06-28 22:24:05 +08:00
|
|
|
showMap.value = false
|
2022-06-27 18:13:13 +08:00
|
|
|
clickList.value[1].content = []
|
|
|
|
clickList.value[indexFather].content[0] = name
|
|
|
|
tabList.value[1].content = [
|
|
|
|
'云主机',
|
|
|
|
'算力主机',
|
|
|
|
'对象存储',
|
|
|
|
'堡垒机',
|
|
|
|
'防火墙',
|
|
|
|
'网闸',
|
|
|
|
'负载均衡',
|
|
|
|
'公网IP',
|
|
|
|
]
|
|
|
|
} else if (name == '感知资源') {
|
2022-06-25 15:08:19 +08:00
|
|
|
tableHeight.value = 330
|
2022-06-28 22:24:05 +08:00
|
|
|
showMap.value = true
|
2022-06-27 18:13:13 +08:00
|
|
|
clickList.value[1].content = []
|
|
|
|
clickList.value[indexFather].content[0] = name
|
|
|
|
tabList.value[1].content = ['333333', '213124']
|
|
|
|
} else {
|
|
|
|
clickList.value[indexFather].content.push(name)
|
2022-06-25 15:08:19 +08:00
|
|
|
}
|
2022-06-25 13:34:24 +08:00
|
|
|
}
|
2022-06-29 18:36:50 +08:00
|
|
|
// 改变查询摄像头接口的labelCode数组
|
|
|
|
mapSearchParam.value.labelCodes = []
|
|
|
|
clickList.value[1].content.map((item) => {
|
|
|
|
mapSearchParam.value.labelCodes.push(item.labelCode)
|
|
|
|
})
|
|
|
|
console.log('选中的标签code', mapSearchParam.value)
|
|
|
|
mapSearchParam.value.labelCodes = mapSearchParam.value.labelCodes + ''
|
|
|
|
getCamera()
|
2022-06-25 13:34:24 +08:00
|
|
|
}
|
2022-06-27 18:13:13 +08:00
|
|
|
// 清空
|
|
|
|
const nullClick = () => {
|
|
|
|
clickList.value[1].content = []
|
2022-06-29 18:36:50 +08:00
|
|
|
mapSearchParam.value.labelCodes = ''
|
|
|
|
getCamera()
|
2022-06-27 18:13:13 +08:00
|
|
|
console.log('hhhhhhhh')
|
|
|
|
}
|
2022-06-25 13:34:24 +08:00
|
|
|
// 重置
|
|
|
|
const clean = () => {
|
2022-06-29 18:36:50 +08:00
|
|
|
mapSearchParam.value.cameraName = ''
|
|
|
|
getCamera()
|
2022-06-25 13:34:24 +08:00
|
|
|
}
|
|
|
|
// 一键申请
|
|
|
|
const apply = () => {
|
|
|
|
console.log('一键申请')
|
|
|
|
}
|
|
|
|
// 添加至购物车
|
|
|
|
const addShopCar = () => {
|
|
|
|
console.log('添加至购物车')
|
|
|
|
}
|
2022-06-28 22:24:05 +08:00
|
|
|
const getCamera = () => {
|
|
|
|
console.log('初始化调用')
|
|
|
|
getCameraByParentId(mapSearchParam.value).then((res) => {
|
|
|
|
console.log('RRRRRRRRRR', res.data.data)
|
|
|
|
dataSource.value = res.data.data
|
|
|
|
pagination.value.total = res.data.count
|
|
|
|
})
|
|
|
|
}
|
|
|
|
//加入申购车
|
|
|
|
const addShoppingCart = () => {
|
|
|
|
sgcInsert({
|
|
|
|
delFlag: '0',
|
|
|
|
resourceId: '8888888880000000001',
|
|
|
|
note1: selectedList.value,
|
|
|
|
// userId: userId.value,
|
|
|
|
}).then((res) => {
|
|
|
|
console.log(res)
|
|
|
|
message.success('添加申购车成功!')
|
|
|
|
mybus.emit('getSgcNum')
|
|
|
|
})
|
|
|
|
}
|
2022-06-25 13:34:24 +08:00
|
|
|
// 表格
|
2022-06-28 22:24:05 +08:00
|
|
|
const dataSource = ref([])
|
2022-06-25 13:34:24 +08:00
|
|
|
const columns = ref([
|
|
|
|
{
|
2022-06-28 22:24:05 +08:00
|
|
|
title: '名称',
|
|
|
|
dataIndex: 'channelName',
|
|
|
|
key: 'channelName',
|
2022-06-25 13:34:24 +08:00
|
|
|
},
|
|
|
|
{
|
2022-06-28 22:24:05 +08:00
|
|
|
title: '归属',
|
|
|
|
dataIndex: 'nodeName',
|
2022-06-29 18:36:50 +08:00
|
|
|
width: '60%',
|
2022-06-28 22:24:05 +08:00
|
|
|
key: 'nodeName',
|
2022-06-25 13:34:24 +08:00
|
|
|
},
|
2022-06-29 18:36:50 +08:00
|
|
|
{
|
|
|
|
title: '操作',
|
|
|
|
dataIndex: 'operation',
|
|
|
|
width: '10%',
|
|
|
|
key: 'channelId',
|
|
|
|
},
|
2022-06-25 13:34:24 +08:00
|
|
|
])
|
2022-06-25 15:26:42 +08:00
|
|
|
const allClick = ref([])
|
2022-06-28 22:24:05 +08:00
|
|
|
const onSelectChange = (selectedRowKeys, selectedRows) => {
|
|
|
|
console.log('hahhahah', selectedRowKeys, selectedRows)
|
|
|
|
selectedList.value = selectedRows
|
|
|
|
// allClick.value = selectedRowKeys
|
2022-06-25 15:26:42 +08:00
|
|
|
}
|
2022-06-25 13:34:24 +08:00
|
|
|
const handleTableChange = (val) => {
|
|
|
|
pagination.value.current = val.current
|
|
|
|
pagination.value.pageSize = val.pageSize
|
2022-06-28 22:24:05 +08:00
|
|
|
mapSearchParam.value.pageNum = val.current
|
|
|
|
mapSearchParam.value.pageSize = val.pageSize
|
|
|
|
getCamera()
|
2022-06-25 13:34:24 +08:00
|
|
|
// this.getTableList()
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
2022-06-27 09:43:37 +08:00
|
|
|
.infrastructrueBox {
|
2022-06-25 13:34:24 +08:00
|
|
|
padding: 0.2rem;
|
2022-06-27 18:53:51 +08:00
|
|
|
// background: #f3f5f9;
|
|
|
|
background: #ffffff;
|
|
|
|
/* padding: 0.16rem; */
|
|
|
|
border-bottom: 0.01rem solid rgba(150, 144, 144, 0.3);
|
2022-06-27 09:43:37 +08:00
|
|
|
.infrastructrue-tab {
|
2022-06-27 18:53:51 +08:00
|
|
|
// background: #ffffff;
|
|
|
|
// padding: 0.2rem;
|
|
|
|
// border-bottom: 0.01rem solid rgba(150, 144, 144, 0.3);
|
2022-06-27 09:43:37 +08:00
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
height: 0.24rem;
|
|
|
|
font-size: 0.14rem;
|
|
|
|
line-height: 0.24rem;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0.12rem;
|
|
|
|
margin-left: 0.1rem;
|
|
|
|
text-align: center;
|
2022-06-25 13:34:24 +08:00
|
|
|
color: #666666;
|
2022-06-27 09:43:37 +08:00
|
|
|
cursor: pointer;
|
|
|
|
padding: 0 0.08rem;
|
|
|
|
}
|
|
|
|
.leftType {
|
|
|
|
margin: 0.1rem 0;
|
|
|
|
}
|
|
|
|
.down {
|
|
|
|
background: #0087ff;
|
|
|
|
color: #ffffff;
|
2022-06-25 13:34:24 +08:00
|
|
|
}
|
2022-06-27 09:43:37 +08:00
|
|
|
.tabBox {
|
|
|
|
margin-bottom: 0.16rem;
|
2022-06-25 15:08:19 +08:00
|
|
|
}
|
2022-06-27 09:43:37 +08:00
|
|
|
.tabBox:last-of-type {
|
|
|
|
margin-bottom: 0;
|
2022-06-25 13:34:24 +08:00
|
|
|
}
|
|
|
|
}
|
2022-06-27 09:43:37 +08:00
|
|
|
.infrastructrue-content {
|
2022-06-25 13:34:24 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-06-27 09:43:37 +08:00
|
|
|
padding: 0.14rem 0.2rem 0.1rem;
|
|
|
|
background: #ffffff;
|
|
|
|
.contentNum {
|
|
|
|
position: relative;
|
2022-06-25 15:08:19 +08:00
|
|
|
display: flex;
|
2022-06-27 09:43:37 +08:00
|
|
|
p {
|
|
|
|
color: #666666;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
span {
|
|
|
|
color: #0087ff;
|
|
|
|
font-size: 0.2rem;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2022-06-25 15:08:19 +08:00
|
|
|
}
|
2022-06-27 09:43:37 +08:00
|
|
|
p:first-of-type {
|
|
|
|
padding-right: 0.16rem;
|
|
|
|
margin-right: 0.16rem;
|
2022-06-25 15:26:42 +08:00
|
|
|
}
|
2022-06-27 09:43:37 +08:00
|
|
|
.boundary {
|
|
|
|
position: absolute;
|
|
|
|
left: 0.9rem;
|
|
|
|
top: 0.07rem;
|
|
|
|
display: block;
|
|
|
|
width: 0.02rem;
|
|
|
|
border-radius: 0.01rem;
|
|
|
|
height: 0.2rem;
|
|
|
|
background: rgba(150, 144, 144, 0.3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.contentRight {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
.boundary {
|
|
|
|
position: absolute;
|
|
|
|
left: 3.74rem;
|
|
|
|
top: 0.07rem;
|
|
|
|
display: block;
|
|
|
|
width: 0.02rem;
|
|
|
|
border-radius: 0.01rem;
|
|
|
|
height: 0.2rem;
|
|
|
|
background: rgba(150, 144, 144, 0.3);
|
|
|
|
}
|
|
|
|
.searchInput {
|
|
|
|
display: flex;
|
|
|
|
margin-right: 0.2rem;
|
|
|
|
.ant-input-search {
|
|
|
|
max-width: 4rem;
|
|
|
|
}
|
|
|
|
:deep(.ant-input) {
|
|
|
|
width: 2rem;
|
2022-06-25 13:34:24 +08:00
|
|
|
height: 0.36rem;
|
2022-06-27 09:43:37 +08:00
|
|
|
font-size: 0.14rem;
|
|
|
|
color: #b2b2b2;
|
|
|
|
background: #f5f5f5;
|
|
|
|
}
|
|
|
|
:deep(.ant-input-group-addon) {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 0.1rem;
|
|
|
|
.ant-input-search-button {
|
|
|
|
width: 0.8rem;
|
|
|
|
height: 0.36rem;
|
|
|
|
background: #0558e1;
|
|
|
|
border-radius: 0.04rem;
|
|
|
|
font-size: 0.14rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
:deep(.ant-btn) {
|
2022-06-25 13:34:24 +08:00
|
|
|
background: #0558e1;
|
|
|
|
border-radius: 0.04rem;
|
|
|
|
}
|
|
|
|
}
|
2022-06-27 09:43:37 +08:00
|
|
|
.buttonAdd {
|
2022-06-25 13:34:24 +08:00
|
|
|
background: #0558e1;
|
|
|
|
border-radius: 0.04rem;
|
2022-06-27 09:43:37 +08:00
|
|
|
height: 0.36rem;
|
|
|
|
border-color: #0558e1;
|
|
|
|
margin-left: 0.1rem;
|
2022-06-25 13:34:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-27 09:43:37 +08:00
|
|
|
.infrastructrue-table {
|
|
|
|
.ant-table-striped :deep(.table-striped) td {
|
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
2022-06-25 15:26:42 +08:00
|
|
|
}
|
2022-06-27 18:53:51 +08:00
|
|
|
.map-contain {
|
|
|
|
// width: 9.46rem;
|
|
|
|
height: 4.1rem;
|
|
|
|
margin-left: 0.16rem;
|
|
|
|
position: relative;
|
|
|
|
}
|
2022-06-25 15:26:42 +08:00
|
|
|
}
|
2022-06-25 13:34:24 +08:00
|
|
|
</style>
|