Procházet zdrojové kódy

智能布局编辑页

Karsa před 10 měsíci
rodič
revize
fe0ac0dce4

+ 212 - 0
src/views/report_manage/reportV2/components/chapterEditWrapper.vue

@@ -0,0 +1,212 @@
+<template>
+  <div class="left-chapter-box">
+    <div class="box-top">
+      <h3>研报标题</h3>
+
+      <ul class="handle-list">
+        <li>
+          <el-button type="text">基础信息</el-button>
+        </li>
+        <li>
+          <el-button type="text">预览</el-button>
+        </li>
+        <li>
+          <el-button type="text">存草稿</el-button>
+        </li>
+        <li>
+          <el-button type="text">提交</el-button>
+        </li>
+      </ul>
+    </div>
+
+    <div class="box-main">
+      <div class="main-top">
+        <h3>研报章节</h3>
+        <el-button type="primary" size="small" @click="openAddChapter">添加章节</el-button>
+      </div>
+      
+      <ul class="chapter-list">
+        <draggable
+            v-model="chapterList"
+            animation="300"
+            @start="dragStartHandler"
+            @update="dragenter"
+            @end="dragOverHandler"
+          >
+          <li v-for="(item,index) in chapterList" :key="index">
+            <div class="card-top">
+              <span>{{item.title}}</span>
+              <span class="editsty">编辑</span>
+            </div>
+            
+            <div class="card-bottom">
+              <span class="editsty">{{item.status}}</span>
+              <div>
+                <img
+                  src="~@/assets/img/data_m/move_ico.png"
+                  alt=""
+                  style="width: 14px; height: 14px; margin-right: 8px"
+                />
+                
+                <el-dropdown trigger="click">
+                  <span class="el-dropdown-link">
+                    <i class="el-icon-more"></i>
+                  </span>
+                  <el-dropdown-menu slot="dropdown">
+                    <el-dropdown-item>基础信息</el-dropdown-item>
+                    <el-dropdown-item>编辑</el-dropdown-item>
+                    <el-dropdown-item>删除</el-dropdown-item>
+                    <el-dropdown-item>添加标签</el-dropdown-item>
+                    <el-dropdown-item>上传录音</el-dropdown-item>
+                    <el-dropdown-item>微信分享</el-dropdown-item>
+                  </el-dropdown-menu>
+                </el-dropdown>
+              </div>
+            </div>
+          </li>
+        </draggable>  
+      </ul>
+    </div>
+
+    <!-- 添加章节弹窗 -->
+    <mDialog>
+      <div slot="footer">
+
+      </div>
+
+    </mDialog>
+  </div>
+</template>
+<script>
+import draggable from 'vuedraggable';
+import mDialog from '@/components/mDialog.vue';
+export default {
+  components: { draggable,mDialog },
+  data() {
+    return {
+      chapterList: [
+        { 
+          title: '章节1',
+          status: '已提交',
+        },
+        { 
+          title: '章节2',
+          status: '已提交',
+        },
+        { 
+          title: '章节3',
+          status: '已提交',
+        },
+        { 
+          title: '章节4',
+          status: '已提交',
+        },
+        { 
+          title: '章节4',
+          status: '已提交',
+        },
+        { 
+          title: '章节4',
+          status: '已提交',
+        },
+        { 
+          title: '章节4',
+          status: '已提交',
+        },
+      ],
+
+      startIndex: 0,
+      preIndex: 0,
+      nextIndex: 0
+    }
+  },
+  mounted(){
+
+  },
+  methods:{
+    openAddChapter() {
+
+    },
+
+    /* 拖动开始 记录位置 */
+    dragStartHandler({ oldIndex }) {
+      this.startIndex = this.chapterList[oldIndex].Id;
+    },
+
+    /* 拖动结束 替换  */
+    dragOverHandler() {
+      // mychartInterface
+      //   .move({
+      //     MyChartId: this.startIndex,
+      //     MyChartClassifyId: this.select_classify,
+      //     PrevMyChartId: this.preIndex || 0,
+      //     NextMyChartId: this.nextIndex || 0,   
+      //   })
+      //   .then((res) => {
+      //     if (res.Ret !== 200) return;
+      //   });
+    },
+
+    /* 移动后的上一个位置id 若移到第一位则取0 获取后一个id 若是最后一个取0*/
+    dragenter({ newIndex }) {
+      console.log(newIndex)
+      this.preIndex = newIndex > 0 ? this.chapterList[newIndex - 1].Id : 0;
+      this.nextIndex = newIndex ===  this.chapterList.length - 1 ? 0 : this.chapterList[newIndex + 1].Id
+    },
+  },
+}
+</script>
+<style scoped lang='scss'>
+*{box-sizing: border-box;}
+.left-chapter-box {
+  margin-right: 20px;
+  .box-top,.box-main {
+    padding: 15px;
+    background: #fff;
+    border-radius: 4px;
+  }
+
+  .box-top {
+    margin-bottom: 15px;
+    padding-bottom: 0;
+    .handle-list {
+      margin-top: 30px;
+      display: flex;
+      gap: 20px;
+    }
+  }
+  .box-main {
+    padding-right: 0;
+    .main-top {
+      padding-right: 15px;
+      display: flex;
+      justify-content: space-between;
+      align-items: center;
+    }
+  }
+
+  .chapter-list {
+    margin-top: 20px;
+    padding-right: 15px;
+    height: calc(100vh - 240px);
+    overflow-y: auto;
+    li {
+      padding: 15px;
+      background: #eee;
+      border-radius: 4px;
+      margin-bottom: 15px;
+
+      .card-top {
+        display: flex;
+        justify-content: space-between;
+      }
+
+      .card-bottom {
+        display: flex;
+        justify-content: space-between;
+        margin-top: 30px;
+      }
+    }
+  }
+}
+</style>

+ 1 - 2
src/views/report_manage/reportV2/normalReport/components/insertContent.vue

@@ -68,8 +68,7 @@ export default {
 		background-color: #fff;
 		cursor: pointer;
 		position: absolute;
-		top: 50%;
-		transform: translateY(-50%);
+		top: 40%;
 		z-index: 99;
     left: -15px;
 		&:hover {

+ 34 - 2
src/views/report_manage/reportV2/normalReport/editReport.vue

@@ -1,5 +1,20 @@
 <template>
 	<div id="editreport">
+		
+		<!-- 章节编辑区 -->
+		<div class="left-wrap">
+			<chapterWrapper
+				v-show="isLeftWrapShow"
+			/>
+
+			<span
+					class="slide-btn-icon"
+					:class="{'slide-left':isLeftWrapShow,'slide-right':!isLeftWrapShow}"
+					@click="isLeftWrapShow = !isLeftWrapShow"
+			>
+					<i :class="{'el-icon-d-arrow-left':isLeftWrapShow,'el-icon-d-arrow-right':!isLeftWrapShow}"></i>
+			</span>
+		</div>
 
 		<div class="editor-wrapper">
 			<!-- 顶部操作栏 -->
@@ -31,7 +46,7 @@
 
 				<!-- 可插入内容 -->
 				<insertContent
-					v-if="activeTab"
+					v-show="activeTab"
 					:actTab="activeTab"
 					@slide="activeTab=''"
 					@insertHtml="insertHtml"
@@ -95,9 +110,10 @@ import reportMixin from './mixins/reportMixin';
 import reportApproveConfig from "@/mixins/reportApproveConfig.js"
 import editHeader from '../components/reportEditHeader.vue';
 import insertContent from './components/insertContent.vue';
+import chapterWrapper from '../components/chapterEditWrapper.vue'
 export default {
 	mixins:[mixinMsg,reportMixin,reportApproveConfig],
-	components: {editHeader,insertContent},
+	components: {editHeader,insertContent,chapterWrapper},
 	data() {
 		var that = this;
 		return {
@@ -124,6 +140,8 @@ export default {
 			ThsMsgIsSend:'',//是否推送过客群
 
 			showReportBaseInfo: false,
+
+			isLeftWrapShow: true,//展开章节区
 		};
 	},
 	mounted() {
@@ -585,6 +603,20 @@ export default {
 		overflow: hidden;
 	}
 
+	.left-wrap {
+		position: relative;
+		.slide-btn-icon {
+			&.slide-left{
+					right:5px;
+					left: auto;
+			}
+			&.slide-right{
+					left: 0;
+					right: auto;
+			}
+		}
+	}
+
 	.fixed-insert-wrapper {
 		width: 90px;
 		background: #fff;

+ 3 - 3
src/views/report_manage/reportV2/normalReport/mixins/reportMixin.js

@@ -215,7 +215,7 @@ export default {
       formItemArray: [],
       
       activeTab: '',
-      chart_source: 1, //图表来源 1 eta 2 商品价格
+      chart_source: 1, //图表来源 1 eta 2 商品价格...
 
       //截面散点设置英文props
       enChartInfo: {},
@@ -296,7 +296,7 @@ export default {
       this.$nextTick(() => {
         this.editor.html.insert(
           `<p style='text-align:left; margin-top:10px;'>
-            <span style='font-size:17px'>${item.ExcelName}</span>
+            <span style='font-size:17px;padding-left:10px;'>${item.ExcelName}</span>
             <iframe 
               src='${LINK_URL}?code=${item.UniqueCode}&fromScene=2' 
               width='100%' 
@@ -587,7 +587,7 @@ export default {
     },
 
     handleClearContent() {
-
+      this.aeForm.content = ''
     }
   },
 

+ 238 - 196
src/views/report_manage/reportV2/smartReport/editReport.vue

@@ -1,214 +1,231 @@
 <template>
-    <div class="edit-smart-report-page">
-        <!-- 顶部操作栏 -->
-        <editHeader
-            :reportInfo="{Title: reportInfo.title}"
-            @handleClearContent="handleClearContent"
-            @openBaseInfo="showReportBaseInfo=true"
-            @handleRefreshAllChart="handleRefreshAllChart"
-            @handlePreviewReport="handlePreviewReport"
-            @handleSaveContent="handleSaveContent"
-            @handlePublishOpt="handlePublishOpt"
-        />
-        
-        <div class="main-wrap">
-            <div class="report-action-wrap">
-                <ul class="top-type-list">
-                    <li class="item" v-for="item in topTypeList" :key="item.name" @click="handleShowRight(item)">
-                        <img class="icon" :src="item.icon" alt="">
-                        <span>{{item.name}}</span>
-                    </li>
-                </ul>
-                <!-- 公共组件 -->
-                <draggable
-                    :list="compList"
-                    :group="{ name: 'component', pull: 'clone', put: false }"
-                    class="report-comp-wrap"
-                    animation="300"
-                    :sort="false"
-                    tag="ul"
-                    filter='.unDrag'
-                >
-                    <li class="comp-item" :comp-data="JSON.stringify(comp)" v-for="comp in compList" :key="comp.id">
-                        <img :src="comp.icon">
-                    </li>
-                    <li class="comp-item unDrag" style="cursor: pointer;">
-                        <el-color-picker v-model="bgColor" @change="handleBgColorChange"></el-color-picker>
-                    </li>
-                </draggable>
-
-                <div class="report-content-box" id="report-content-box" :style="{backgroundColor:bgColor}">
-                    <div class="html-head-img-box">
-                        <div class="opt-btn-box" style="display: none;">
-                            <div class="del-btn" @click.stop="deleteLayoutPic(1)"></div>
-                        </div>
-                        <img :src="headImg" alt="" style="display:block;width:100%">
-                        <div class="head-layout-item" v-for="item in headImgStyle" :key="item.value"
-                        :style="{fontFamily:item.family,fontSize:(item.size*2)+'px',fontWeight:item.weight,textAlign:item.align,color:item.color,
-                            width:item.width,height:item.height,left:item.left,top:item.top
-                        }">
-                            {{ layoutBaseInfo[item.value] }}
-                        </div>
-                    </div>
+    <div class="edit-smart-box">
+        <!-- 章节编辑区 -->
+		<div class="left-wrap">
+			<chapterWrapper
+				v-show="isLeftWrapShow"
+			/>
+
+			<span
+                class="slide-btn-icon"
+                :class="{'slide-left':isLeftWrapShow,'slide-right':!isLeftWrapShow}"
+                @click="isLeftWrapShow = !isLeftWrapShow"
+			>
+                <i :class="{'el-icon-d-arrow-left':isLeftWrapShow,'el-icon-d-arrow-right':!isLeftWrapShow}"></i>
+			</span>
+		</div>
+
+        <div class="edit-smart-report-page">
+            <!-- 顶部操作栏 -->
+            <editHeader
+                :reportInfo="{Title: reportInfo&&reportInfo.title}"
+                @handleClearContent="handleClearContent"
+                @openBaseInfo="showReportBaseInfo=true"
+                @handleRefreshAllChart="handleRefreshAllChart"
+                @handlePreviewReport="handlePreviewReport"
+                @handleSaveContent="handleSaveContent"
+                @handlePublishOpt="handlePublishOpt"
+            />
+            
+            <div class="main-wrap">
+                <div class="report-action-wrap">
+                    <ul class="top-type-list">
+                        <li class="item" v-for="item in topTypeList" :key="item.name" @click="handleShowRight(item)">
+                            <img class="icon" :src="item.icon" alt="">
+                            <span>{{item.name}}</span>
+                        </li>
+                    </ul>
+                    <!-- 公共组件 -->
                     <draggable
-                        :list="conList"
-                        :group="{ name: 'component', pull: true, put: true }"
-                        class="report-html-wrap"
-                        id="report-html-content"
+                        :list="compList"
+                        :group="{ name: 'component', pull: 'clone', put: false }"
+                        class="report-comp-wrap"
                         animation="300"
-                        tag="div"
-                        handle=".drag-btn_p"
-                        @add="handleParentAdd"
-                        @remove="handleParentRemove"
-                        :move="handleParentMove"
+                        :sort="false"
+                        tag="ul"
+                        filter='.unDrag'
                     >
-                        <div 
-                            :class="[
-                                'report-drag-item-wrap',
-                                activeId===item.id?'blue-bg':'',
-                                item.child&&!item.child.length?'report-drag-item-out':''
-                            ]"
-                            v-for="item,index in conList" 
-                            :key="item.id"
-                            :comp-type="item.compType"
-                            @click="handleChoose(item,index)"
-                            :style="item.style"
-                        >
-                            <!-- 缩放的盒子 -->
-                            <div class="resize-drag-box" @mousedown.stop="handleResizeP($event,index)"></div>
+                        <li class="comp-item" :comp-data="JSON.stringify(comp)" v-for="comp in compList" :key="comp.id">
+                            <img :src="comp.icon">
+                        </li>
+                        <li class="comp-item unDrag" style="cursor: pointer;">
+                            <el-color-picker v-model="bgColor" @change="handleBgColorChange"></el-color-picker>
+                        </li>
+                    </draggable>
+
+                    <div class="report-content-box" id="report-content-box" :style="{backgroundColor:bgColor}">
+                        <div class="html-head-img-box">
                             <div class="opt-btn-box" style="display: none;">
-                                <div class="drag-btn drag-btn_p"></div>
-                                <div class="del-btn" @click.stop="handleDelItem(index,-1)"></div>
+                                <div class="del-btn" @click.stop="deleteLayoutPic(1)"></div>
                             </div>
-                            <div 
-                                v-if="item.child&&!item.child.length"
-                                class="report-drag-item-wrap_content"
-                                style="width:100%;height:100%"
-                                :data-id="item.id"
-                            >
-                                <component :is="getComponentName(item)" :compData="item"/>
+                            <img :src="headImg" alt="" style="display:block;width:100%">
+                            <div class="head-layout-item" v-for="item in headImgStyle" :key="item.value"
+                            :style="{fontFamily:item.family,fontSize:(item.size*2)+'px',fontWeight:item.weight,textAlign:item.align,color:item.color,
+                                width:item.width,height:item.height,left:item.left,top:item.top
+                            }">
+                                {{ layoutBaseInfo[item.value] }}
                             </div>
-                            <draggable
-                                :list="item.child"
-                                :group="{ name: 'component', pull: true, put: item.child&&item.child.length<3?true:false }"
-                                animation="300"
-                                tag="div"
-                                class="report-drag-item-wrap_child-wrap"
-                                @add="handleChildAdd($event,item,index)"
-                                @remove="handleChildRemove($event,item.child)"
-                                handle=".drag-btn_c"
-                                style="display: flex;gap: 3px;align-items: flex-start;"
+                        </div>
+                        <draggable
+                            :list="conList"
+                            :group="{ name: 'component', pull: true, put: true }"
+                            class="report-html-wrap"
+                            id="report-html-content"
+                            animation="300"
+                            tag="div"
+                            handle=".drag-btn_p"
+                            @add="handleParentAdd"
+                            @remove="handleParentRemove"
+                            :move="handleParentMove"
+                        >
+                            <div 
+                                :class="[
+                                    'report-drag-item-wrap',
+                                    activeId===item.id?'blue-bg':'',
+                                    item.child&&!item.child.length?'report-drag-item-out':''
+                                ]"
+                                v-for="item,index in conList" 
+                                :key="item.id"
+                                :comp-type="item.compType"
+                                @click="handleChoose(item,index)"
+                                :style="item.style"
                             >
+                                <!-- 缩放的盒子 -->
+                                <div class="resize-drag-box" @mousedown.stop="handleResizeP($event,index)"></div>
+                                <div class="opt-btn-box" style="display: none;">
+                                    <div class="drag-btn drag-btn_p"></div>
+                                    <div class="del-btn" @click.stop="handleDelItem(index,-1)"></div>
+                                </div>
                                 <div 
-                                    :class="['report-drag-item-wrap_child_content',activeId===child.id?'blue-bg':'']" 
-                                    v-for="child,cindex in item.child" 
-                                    :key="child.id"
-                                    :comp-type="child.compType"
-                                    :data-id="child.id"
-                                    @click.stop="handleChoose(child,index,cindex)"
-                                    style="flex:1"
-                                    :style="child.style"
+                                    v-if="item.child&&!item.child.length"
+                                    class="report-drag-item-wrap_content"
+                                    style="width:100%;height:100%"
+                                    :data-id="item.id"
                                 >
-                                    <div class="opt-btn-box2" style="display: none;">
-                                        <div class="drag-btn drag-btn_c"></div>
-                                        <div class="del-btn" @click.stop="handleDelItem(index,cindex)"></div>
-                                    </div>
-                                    <!-- 拖动按钮 -->
-                                    <div class="resize-drag-box_lb" @mousedown.stop="handleResizeC($event,index,cindex,'lb')"></div>
-                                    <div class="resize-drag-box_rb" @mousedown.stop="handleResizeC($event,index,cindex,'rb')"></div>
-                                    <component :is="getComponentName(child)" :compData="child"/>
-                                    <!--  -->
-                                    <div class="mark-box" v-if="isDragResize" style="position: absolute;left:0;right:0;top:0;bottom: 0;z-index: 10;"></div>
+                                    <component :is="getComponentName(item)" :compData="item"/>
                                 </div>
-                            </draggable>
-                        </div>
-                    </draggable>
+                                <draggable
+                                    :list="item.child"
+                                    :group="{ name: 'component', pull: true, put: item.child&&item.child.length<3?true:false }"
+                                    animation="300"
+                                    tag="div"
+                                    class="report-drag-item-wrap_child-wrap"
+                                    @add="handleChildAdd($event,item,index)"
+                                    @remove="handleChildRemove($event,item.child)"
+                                    handle=".drag-btn_c"
+                                    style="display: flex;gap: 3px;align-items: flex-start;"
+                                >
+                                    <div 
+                                        :class="['report-drag-item-wrap_child_content',activeId===child.id?'blue-bg':'']" 
+                                        v-for="child,cindex in item.child" 
+                                        :key="child.id"
+                                        :comp-type="child.compType"
+                                        :data-id="child.id"
+                                        @click.stop="handleChoose(child,index,cindex)"
+                                        style="flex:1"
+                                        :style="child.style"
+                                    >
+                                        <div class="opt-btn-box2" style="display: none;">
+                                            <div class="drag-btn drag-btn_c"></div>
+                                            <div class="del-btn" @click.stop="handleDelItem(index,cindex)"></div>
+                                        </div>
+                                        <!-- 拖动按钮 -->
+                                        <div class="resize-drag-box_lb" @mousedown.stop="handleResizeC($event,index,cindex,'lb')"></div>
+                                        <div class="resize-drag-box_rb" @mousedown.stop="handleResizeC($event,index,cindex,'rb')"></div>
+                                        <component :is="getComponentName(child)" :compData="child"/>
+                                        <!--  -->
+                                        <div class="mark-box" v-if="isDragResize" style="position: absolute;left:0;right:0;top:0;bottom: 0;z-index: 10;"></div>
+                                    </div>
+                                </draggable>
+                            </div>
+                        </draggable>
 
-                    <div class="html-end-img-box">
-                        <div class="opt-btn-box" style="display: none;">
-                            <div class="del-btn" @click.stop="endImg=''"></div>
-                        </div>
-                        <img :src="endImg" alt="" style="display:block;width:100%">
-                        <div class="head-layout-item" v-for="item in endImgStyle" :key="item.value"
-                        :style="{fontFamily:item.family,fontSize:(item.size*2)+'px',fontWeight:item.weight,textAlign:item.align,color:item.color,
-                            width:item.width,height:item.height,left:item.left,top:item.top
-                        }">
-                            {{ layoutBaseInfo[item.value] }}
+                        <div class="html-end-img-box">
+                            <div class="opt-btn-box" style="display: none;">
+                                <div class="del-btn" @click.stop="endImg=''"></div>
+                            </div>
+                            <img :src="endImg" alt="" style="display:block;width:100%">
+                            <div class="head-layout-item" v-for="item in endImgStyle" :key="item.value"
+                            :style="{fontFamily:item.family,fontSize:(item.size*2)+'px',fontWeight:item.weight,textAlign:item.align,color:item.color,
+                                width:item.width,height:item.height,left:item.left,top:item.top
+                            }">
+                                {{ layoutBaseInfo[item.value] }}
+                            </div>
                         </div>
                     </div>
                 </div>
-            </div>
 
-            <div class="right-action-wrap" v-show="showRight">
-                <div class="close-icon" @click="handleCloseRight">
-                    <img src="~@/assets/img/smartReport/icon14.png" alt="">
-                </div>
-                <div style="overflow-x:auto;height:calc(100% + 12px);">
-                <div style="min-width:800px;height: 100%;">
-                <TextEdit 
-                    v-if="rightType==='text'"
-                    :key="activeId"
-                    :content="activeContent" 
-                    @textChange="handleTextChange" 
-                />
-                <ImgEdit 
-                    v-if="rightType==='img'"
-                    :key="activeId"
-                    :content="activeContent" 
-                    @imgChange="handleTextChange" 
-                />
-                <!-- 图库插入 -->
-                <ETAChart 
-                    v-if="rightType==='etaChart'"
-                    @handleImportMyChart="handleImportMyChart"
-                />
-                <!-- ETA表格 -->
-                <ETASheet v-if="rightType==='etaSheet'"/>
-                <!-- 统计分析 -->
-                <StatisticAnalysis v-if="rightType==='statisticAnalysis'"/>
-                <!-- 商品价格曲线 -->
-                <ETAPriceChart v-if="rightType==='etaPriceChart'"/>
-                <!-- 沙盘图 -->
-                <ETASandBox v-if="rightType==='etaSandBox'"/>
-                <!-- 语义分析 -->
-                <SemanticAnalysis v-if="rightType==='semanticAnalysis'"/>
-                <!-- 版图资源库 -->
-                <ImgSource v-if="rightType==='imgSource'" @change="handleInsertImgSource" @close="handleCloseRight"/>
-                </div>
+                <div class="right-action-wrap" v-show="showRight">
+                    <div class="close-icon" @click="handleCloseRight">
+                        <img src="~@/assets/img/smartReport/icon14.png" alt="">
+                    </div>
+                    <div style="overflow-x:auto;height:calc(100% + 12px);">
+                    <div style="min-width:800px;height: 100%;">
+                    <TextEdit 
+                        v-if="rightType==='text'"
+                        :key="activeId"
+                        :content="activeContent" 
+                        @textChange="handleTextChange" 
+                    />
+                    <ImgEdit 
+                        v-if="rightType==='img'"
+                        :key="activeId"
+                        :content="activeContent" 
+                        @imgChange="handleTextChange" 
+                    />
+                    <!-- 图库插入 -->
+                    <ETAChart 
+                        v-if="rightType==='etaChart'"
+                        @handleImportMyChart="handleImportMyChart"
+                    />
+                    <!-- ETA表格 -->
+                    <ETASheet v-if="rightType==='etaSheet'"/>
+                    <!-- 统计分析 -->
+                    <StatisticAnalysis v-if="rightType==='statisticAnalysis'"/>
+                    <!-- 商品价格曲线 -->
+                    <ETAPriceChart v-if="rightType==='etaPriceChart'"/>
+                    <!-- 沙盘图 -->
+                    <ETASandBox v-if="rightType==='etaSandBox'"/>
+                    <!-- 语义分析 -->
+                    <SemanticAnalysis v-if="rightType==='semanticAnalysis'"/>
+                    <!-- 版图资源库 -->
+                    <ImgSource v-if="rightType==='imgSource'" @change="handleInsertImgSource" @close="handleCloseRight"/>
+                    </div>
+                    </div>
                 </div>
             </div>
-        </div>
 
-        <!-- 报告基础信息 -->
-        <BaseInfo  v-model="showReportBaseInfo" :id="$route.query.id" @save="handleReportEdit" />
-
-        <!-- 定时发布弹窗 -->
-		<el-dialog 
-			v-dialogDrag 
-			:append-to-body="true" 
-			:visible.sync="showDSFB" 
-			width="500px" 
-			:title="$t('ReportManage.ReportList.scheduled_publish_btn')"
-		>
-			<div>
-				<div>
-					<span>{{$t('ReportManage.ReportList.publish_time')}}</span>
-					<el-date-picker
-						v-model="taskTime"
-						type="datetime"
-						:placeholder="$t('ReportManage.ReportList.select_date_and_time')"
-						value-format="yyyy-MM-dd HH:mm"
-						:picker-options="timePickerOpt"
-					/>
-				</div>
-				<p style="margin:15px 0">{{$t('ReportManage.ReportList.the_report_will_be_posted_on_time')}}</p>
-				<div style="text-align:right;margin:20px 0">
-					<el-button type="primary" plain @click="showDSFB=false">{{$t('Dialog.cancel_btn')}}</el-button>
-					<el-button type="primary" @click="handleSetReportPrepublish">{{$t('Dialog.confirm_btn')}}</el-button>
-				</div>
-			</div>
-		</el-dialog>
+            <!-- 报告基础信息 -->
+            <BaseInfo  v-model="showReportBaseInfo" :id="$route.query.id" @save="handleReportEdit" />
+
+            <!-- 定时发布弹窗 -->
+            <el-dialog 
+                v-dialogDrag 
+                :append-to-body="true" 
+                :visible.sync="showDSFB" 
+                width="500px" 
+                :title="$t('ReportManage.ReportList.scheduled_publish_btn')"
+            >
+                <div>
+                    <div>
+                        <span>{{$t('ReportManage.ReportList.publish_time')}}</span>
+                        <el-date-picker
+                            v-model="taskTime"
+                            type="datetime"
+                            :placeholder="$t('ReportManage.ReportList.select_date_and_time')"
+                            value-format="yyyy-MM-dd HH:mm"
+                            :picker-options="timePickerOpt"
+                        />
+                    </div>
+                    <p style="margin:15px 0">{{$t('ReportManage.ReportList.the_report_will_be_posted_on_time')}}</p>
+                    <div style="text-align:right;margin:20px 0">
+                        <el-button type="primary" plain @click="showDSFB=false">{{$t('Dialog.cancel_btn')}}</el-button>
+                        <el-button type="primary" @click="handleSetReportPrepublish">{{$t('Dialog.confirm_btn')}}</el-button>
+                    </div>
+                </div>
+            </el-dialog>
 
+        </div>
     </div>
 </template>
 
@@ -237,6 +254,7 @@ import { getUrlParams } from '@/utils/common'
 import reportApproveConfig from "@/mixins/reportApproveConfig.js"
 import ImgSource from './components/ImgSource.vue'
 import editHeader from '../components/reportEditHeader.vue';
+import chapterWrapper from '../components/chapterEditWrapper.vue';
 export default {
     mixins:[reportApproveConfig],
     name:"smartReportEdit",
@@ -256,7 +274,8 @@ export default {
         ETASandBox,
         SemanticAnalysis,
         ImgSource,
-        editHeader
+        editHeader,
+        chapterWrapper
     },
     watch:{
         'taskTime'(){
@@ -343,7 +362,9 @@ export default {
                 研报标题:'',
                 研报作者:'',
                 创建时间:''
-            }
+            },
+
+            isLeftWrapShow: true,//展开章节区
         }
     },
     methods: {
@@ -502,7 +523,7 @@ export default {
             let iframeDom = document.getElementsByClassName(`iframe${code}`);
             // console.log(iframeDom);
             iframeDom.forEach((ele) => {
-                ele.height = `${height + 45}px`;
+                ele.height = `${height + 1}px`;
             });
         },
 
@@ -1228,10 +1249,31 @@ export default {
 div{
     box-sizing: border-box;
 }
-.edit-smart-report-page{
+.edit-smart-box {  
+    display: flex;
+	overflow: hidden;
     background: var(--unnamed, #F2F6FA);
-    min-width: 100vw;
+
+    .left-wrap {
+        position: relative;
+		.slide-btn-icon {
+			&.slide-left{
+					right:5px;
+					left: auto;
+			}
+			&.slide-right{
+					left: 0;
+					right: auto;
+			}
+		}
+    }
+}
+
+.edit-smart-report-page{
+    /* min-width: 100vw; */
     min-height: 100vh;
+    flex: 1;
+    overflow: auto;
     .top-action-wrap{
         position: sticky;
         top: 0px;