| | |
| | | }" |
| | | > |
| | | <div class="d-frame-title" v-drag="fullScreen" @click="frameClick"> |
| | | <div class="icon iconfont back" @click="back"></div> |
| | | <div class="icon iconfont back" @click="back" v-if="isShowBack"> |
| | |  |
| | | </div> |
| | | <div class="d-frame-title-operation"> |
| | | <i |
| | | class="icon-minus d-frame-operation-minus" |
| | |
| | | props: { |
| | | data: Object, |
| | | }, |
| | | created() { |
| | | window.addEventListener("message", (e) => { |
| | | if (e.data.msg === "showBack") { |
| | | this.isShowBack = true; |
| | | } |
| | | }); |
| | | }, |
| | | data() { |
| | | return { |
| | | publicPath: process.env.BASE_URL, |
| | |
| | | mouY: 0, |
| | | resizeLock: false, |
| | | }, |
| | | isShowBack: false, |
| | | }; |
| | | }, |
| | | watch: { |