|
@@ -19,7 +19,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
isEdit: false,
|
|
|
- isShowModel: 1,
|
|
|
+ isShowModel: null,
|
|
|
oldValue: {
|
|
|
positionInfo: {}
|
|
|
},
|
|
@@ -34,7 +34,11 @@ export default {
|
|
|
let val = JSON.parse(data[0].positionInfo);
|
|
|
this.oldValue.positionInfo = val.pageLoction;
|
|
|
this.isShowModel = val.model;
|
|
|
+ } else {
|
|
|
+ this.isShowModel = 1;
|
|
|
}
|
|
|
+ } else {
|
|
|
+ this.isShowModel = 1;
|
|
|
}
|
|
|
resolve && resolve();
|
|
|
});
|