securityAlarmGrid.vue 961 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div class="securityAlarmGrid">
  3. <Card title="宫格模式" style="height: 99%">
  4. <div style="height: 100%;margin: 0 15px 15px">
  5. <a-row style="height: 100%">
  6. <a-col :span="4" style="height: 90%">
  7. <div style="padding-left: 15px; height: 100%">
  8. <SecurityDeviceSelect></SecurityDeviceSelect>
  9. </div>
  10. </a-col>
  11. <a-col :span="20" style="height: 90%">
  12. <div style="height: 100%">
  13. <HkwsCamera />
  14. </div>
  15. </a-col>
  16. </a-row>
  17. </div>
  18. </Card>
  19. </div>
  20. </template>
  21. <script>
  22. import HkwsCamera from "@/components/security/camera/hkwsCamera.vue";
  23. import SecurityDeviceSelect from "@/components/security/common/securityDeviceSelect.vue";
  24. export default {
  25. components: {
  26. SecurityDeviceSelect,
  27. HkwsCamera
  28. }
  29. }
  30. </script>
  31. <style lang="less" scoped>
  32. .securityAlarmGrid {
  33. width: 100%;
  34. height: 100%;
  35. }
  36. </style>