2022-10-07 23:02:40 +09:00
|
|
|
<template>
|
|
|
|
<div class="preview-root">
|
|
|
|
<div class="preview-ctn">
|
2023-01-29 04:39:18 +09:00
|
|
|
<PreviewString :config="config.qft" :version="_version" />
|
|
|
|
<PreviewString v-for="mdp,i in (config.CustomizedDisplay || [])"
|
|
|
|
:key="'mdp'+i" :config="mdp" :version="_version" />
|
|
|
|
<PreviewString :config="config.PatternSelector" :version="_version" />
|
2022-10-07 23:02:40 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
config: {type: Object},
|
|
|
|
},
|
|
|
|
computed: {
|
2023-01-29 04:39:18 +09:00
|
|
|
_version() {
|
|
|
|
const {_version} = this.config
|
|
|
|
return _version;
|
2022-10-30 04:19:16 +09:00
|
|
|
},
|
2022-10-07 23:02:40 +09:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2023-01-29 04:39:18 +09:00
|
|
|
.preview-root {
|
2022-10-07 23:02:40 +09:00
|
|
|
position: relative;
|
|
|
|
width: 600px;
|
|
|
|
height: 448px;
|
|
|
|
background: url(/img/preview/background.png);
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2023-01-29 04:39:18 +09:00
|
|
|
.preview-ctn {
|
2022-10-07 23:02:40 +09:00
|
|
|
position: absolute;
|
|
|
|
top: -16px;
|
|
|
|
}
|
|
|
|
</style>
|