WechatOwnerService/pages/machine/monitorCamera.vue
2024-07-31 14:14:29 +08:00

158 lines
3.1 KiB
Vue

<template>
<view>
<view class="q-query flex justify-start flex-wrap">
<view class="q-item">
<input type="text" placeholder="输入监控名称" v-model="machineNameLike" confirm-type="search"></input>
</view>
<view class=" margin-left ">
<button class="cu-btn line-blue round q-input" @click="_loadMachines">搜索</button>
</view>
</view>
<view class="index-undo margin-top" v-if="machines && machines.length>0">
<view class="undo-title">
<text class="text-bold">监控相机</text>
</view>
<view class="cu-list grid " :class="'col-2'">
<view class="cu-item" @click="_toPlayVideo(item);" v-for="(item,index) in machines" :key="index">
<view>
<image :src="item.photoUrl" v-if="item.photoUrl" class="radius-sm" style="width: 90%;height: 200upx;"></image>
<image :src="defaultImg" class="radius-sm" v-else style="width: 90%;height: 200upx;"></image>
</view>
<view >
<text class="text-center">{{item.machineName}}</text>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import {
getOwnerCamera
} from '../../api/machine/machineApi.js';
import { getCommunityId } from '../../api/community/communityApi.js';
import config from '@/conf/config.js';
export default {
data() {
return {
machineNameLike: '',
machines: [],
defaultImg:''
}
},
onLoad() {
this.defaultImg = config.commonBaseUrl+"/h5/images/noPhoto.jpg"
this._loadMachines();
},
methods: {
_loadMachines: function() {
let _that = this;
getOwnerCamera({
page: 1,
row: 50,
communityId: getCommunityId(),
machineNameLike: this.machineNameLike,
}).then(_data => {
_that.machines = _data.data;
})
},
_toPlayVideo:function(_machine){
uni.navigateTo({
url:'/pages/machine/playVideo?communityId='+_machine.communityId+"&machineId="+_machine.machineId+"&machineName="+_machine.machineName+"&videoType=monitor"
})
}
}
}
</script>
<style lang="scss">
.q-query {
background-color: #FFF;
padding: 15upx;
.q-item {
width: 45%;
margin-left: 15upx;
padding: 10upx 15upx;
border-radius: 15upx;
background-color: #f1f1f1;
.q-input {
height: 40upx;
}
margin-bottom: 15upx;
}
.q-item-btn {
width: 100%;
margin-left: 15upx;
.q-input {
height: 60upx;
margin-right: 30upx;
}
}
}
.apply-title {
height: 60upx;
line-height: 50upx;
border-bottom: 1upx solid #F1F1F1;
}
.apply-content {
.item {
//width: 50%;
margin-top: 20upx;
image {
width: 180upx;
height: 180upx;
border-radius: 10upx;
}
}
}
.radius-sm {
border-radius: 16upx;
}
.index-undo {
background-color: #ffffff;
.undo-title {
padding: 20upx;
border-bottom: 1upx solid #F1F1F1;
}
.undo-menu {
padding: 20upx;
.menu-item {
width: 33.33%;
padding: 30upx;
text-align: center;
image {
width: 80upx;
height: 80upx;
}
border-bottom: 1upx solid #F1F1F1;
border-right: 1upx solid #F1F1F1;
}
.menu-item:nth-child(3n+3) {
border-right: none;
}
.menu-item:nth-child(n+4) {
border-bottom: none;
}
}
}
</style>