|
|
@ -6,17 +6,24 @@ |
|
|
|
<iframe id="myIframe" ref="myIframe" name="iframeMap" class="iframe_box" src="/webC/index.html" frameborder="0" scrolling="no" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<warehouse-warning :height="'calc(100vh - 235px)'" :storeroom-id="roomId" /> |
|
|
|
<!-- <warehouse-warning :height="'calc(100vh - 235px)'" :storeroom-id="roomId" /> --> |
|
|
|
<div class="warehouse-right"> |
|
|
|
<!-- 报警记录 --> |
|
|
|
<warehouse-warning :height="'calc(100% - 40px)'" :storeroom-id="roomId" /> |
|
|
|
<!-- 门禁记录 --> |
|
|
|
<security-door :height="'calc(100% - 40px)'" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import WarehouseWarning from '@/views/components/WarehouseWarning' |
|
|
|
import SecurityDoor from '@/views/components/SecurityDoor' |
|
|
|
import displayConfigApi from '@/api/storeManage/displayConfig' |
|
|
|
import thirdApi from '@/api/thirdApi' |
|
|
|
export default { |
|
|
|
name: 'ReadRoom', |
|
|
|
components: { WarehouseWarning }, |
|
|
|
components: { WarehouseWarning, SecurityDoor }, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
roomId: '9E0A527462BB8A060EB165', |
|
|
@ -147,4 +154,13 @@ export default { |
|
|
|
font-size: 16px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.container-wrap { |
|
|
|
min-height: auto; |
|
|
|
height: calc(100% / 2 - 10px); |
|
|
|
overflow: hidden; |
|
|
|
} |
|
|
|
.container-wrap { |
|
|
|
margin-bottom: 20px; |
|
|
|
} |
|
|
|
</style> |