|
@@ -1,6 +1,10 @@
|
|
|
<template>
|
|
|
<div class="denet-toolbox" :class="{ 'pre-view': pre_view }">
|
|
|
<div class="head">
|
|
|
+ <div class="handle">
|
|
|
+ <img :src="require('@/assets/svg/icon-iframe-left.svg')" />
|
|
|
+ <img :src="require('@/assets/svg/icon-iframe-right.svg')" />
|
|
|
+ </div>
|
|
|
<span></span>
|
|
|
<div v-show="state.show_btn && state.status == 'iframe'">
|
|
|
<img :src="require('@/assets/svg/icon-iframe-fixed.svg')" alt class="fixed" @click="clickFixed" />
|
|
@@ -175,7 +179,6 @@ const getDetail = () => {
|
|
|
state.detail = JSON.parse(res.data.postBizData)
|
|
|
console.log('postBizData', state.detail)
|
|
|
// 加载iframe
|
|
|
-
|
|
|
if (state.detail.viewBgImagePath) {
|
|
|
state.cover_url = state.detail.viewBgImagePath
|
|
|
}
|
|
@@ -365,6 +368,19 @@ const clickFull = () => {
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
|
|
|
+ .handle {
|
|
|
+ margin-left: 15px;
|
|
|
+
|
|
|
+ img:first-child {
|
|
|
+ margin-right: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .not {
|
|
|
+ opacity: 0.3;
|
|
|
+ cursor: auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
div {
|
|
|
display: flex;
|
|
|
justify-content: center;
|