Commit c718c33a authored by zhengke's avatar zhengke

修改

parent 9da0d5a6
...@@ -222,7 +222,7 @@ ...@@ -222,7 +222,7 @@
</div> </div>
</div> </div>
</div> </div>
<el-dialog title="版面區塊設定" :visible.sync="isShowDialog" width="1000px"> <el-dialog :title="commonTitle" :visible.sync="isShowDialog" width="1000px">
<!--视频--> <!--视频-->
<plugvideodialog v-if="currentEditItem.Id=='white_label_video'" :plugData="currentEditItemData"></plugvideodialog> <plugvideodialog v-if="currentEditItem.Id=='white_label_video'" :plugData="currentEditItemData"></plugvideodialog>
<!--轮播图--> <!--轮播图-->
...@@ -305,7 +305,8 @@ ...@@ -305,7 +305,8 @@
currentEditItemData: {}, currentEditItemData: {},
//当前编号的插件 //当前编号的插件
currentEditItem: {}, currentEditItem: {},
dragging: null dragging: null,
commonTitle:''
}; };
}, },
created() {}, created() {},
...@@ -354,6 +355,7 @@ ...@@ -354,6 +355,7 @@
showDialog(item) { showDialog(item) {
this.isShowDialog = true; this.isShowDialog = true;
this.currentEditItem = item; this.currentEditItem = item;
this.commonTitle=item.plugData.Title;
this.currentEditItemData = JSON.parse(JSON.stringify(item.plugData)); this.currentEditItemData = JSON.parse(JSON.stringify(item.plugData));
}, },
//获取数据 //获取数据
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment