|
@@ -31,7 +31,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="box-canvs">
|
|
|
- <div class="box-canvs-main">
|
|
|
+ <div class="box-canvs-main" :style="{ background: fromData.backgroundPictureUrl }">
|
|
|
<grid-layout
|
|
|
:layout.sync="pageArray"
|
|
|
:col-num="6"
|
|
@@ -43,6 +43,7 @@
|
|
|
:prevent-collision="true"
|
|
|
:margin="[10, 10]"
|
|
|
:use-css-transforms="true"
|
|
|
+ class="box-canvs-main-screen"
|
|
|
>
|
|
|
<grid-item
|
|
|
v-for="(item, index) in pageArray"
|
|
@@ -170,6 +171,7 @@ export default {
|
|
|
btnFromKey: 0,
|
|
|
currentCpn: '', //已选择的组件下标
|
|
|
isShowSeting:false,
|
|
|
+ baseUrl:process.env.VUE_APP_FILE_STATIC,
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -294,12 +296,12 @@ export default {
|
|
|
const {dialogType,rowData} = this
|
|
|
if(dialogType === 'add') {
|
|
|
this.pageArray = []
|
|
|
- this.initFormData({})
|
|
|
+ this.initFormData({ backgroundPictureUrl: '#fff' })
|
|
|
return
|
|
|
}
|
|
|
// 调接口获取详情
|
|
|
const res = await addTemplateApi.configDetail({ id: rowData.id });
|
|
|
- if (res.code !== 200) return this.initFormData({})
|
|
|
+ if (res.code !== 200) return this.initFormData({ backgroundPictureUrl: '#fff' })
|
|
|
const from = { ...res.data, baseId: res.data.baseId.toString() }
|
|
|
this.pageArray = JSON.parse(res.data.components).map((item, index) => ({
|
|
|
...item,
|
|
@@ -440,7 +442,6 @@ export default {
|
|
|
left: 20px;
|
|
|
width: 333px;
|
|
|
height: 585px;
|
|
|
- background: #fff;
|
|
|
border: 1px solid #000;
|
|
|
border-radius: 4px;
|
|
|
overflow-y: scroll;
|