rt-sim-training-client/src/views/system/iscsDraw/index.vue

79 lines
1.5 KiB
Vue
Raw Normal View History

2020-01-14 09:06:03 +08:00
<template>
<transition name="el-zoom-in-center">
<div class="mapPaint">
<div class="map-view">
2020-01-15 10:11:26 +08:00
<iscs-plate ref="iscsPlate" />
2020-01-14 09:06:03 +08:00
</div>
<div class="map-draft">
<iscs-operate ref="iscsOperate" @iscsChange="iscsChange" />
</div>
</div>
</transition>
</template>
<script>
import IscsPlate from '@/views/iscsSystem/index';
import IscsOperate from './iscsOperate/index';
export default {
name: 'IscsView',
components: {
IscsPlate,
IscsOperate
},
data() {
return {
size: {
width: this.$store.state.app.width - 521,
height: this.$store.state.app.height - 60
}
};
},
watch: {
2020-01-15 10:11:26 +08:00
2020-01-14 09:06:03 +08:00
},
created() {
},
mounted() {
this.$refs.iscsPlate.show();
this.$refs.iscsPlate.drawIscsInit();
},
beforeDestroy() {
},
methods: {
2020-01-15 13:27:07 +08:00
iscsChange() {
2020-01-14 09:06:03 +08:00
this.$refs.iscsPlate.drawIscsInit();
}
}
};
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
@import "src/styles/mixin.scss";
.map-draft{
/deep/{
.v-modal{
opacity: 0;
}
}
}
.map-view {
float: left;
width: 60%;
}
.mapPaint{
height: 100%;
overflow: hidden;
}
.map-draft {
float: right;
width: 520px;
// /deep/ .el-scrollbar__view {
// width: 510px !important;
// height: calc(100% - 40px);
// }
}
</style>