baiqiu-cms-decoration2 2.0.3 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -82322,9 +82322,10 @@ var simplyText_component = normalizeComponent(
|
|
|
82322
82322
|
},
|
|
82323
82323
|
methods: {
|
|
82324
82324
|
getCustom() {
|
|
82325
|
-
let list = this.layOutData.componentList.filter(item => {
|
|
82326
|
-
if (item.type > 100) {
|
|
82325
|
+
let list = this.layOutData.componentList.filter((item, i) => {
|
|
82326
|
+
if (item.type > 100 && item.displayType == 1) {
|
|
82327
82327
|
item.originalId = this.recordId;
|
|
82328
|
+
item.zIndex = i;
|
|
82328
82329
|
return item;
|
|
82329
82330
|
}
|
|
82330
82331
|
});
|
|
@@ -82331,9 +82331,10 @@ var simplyText_component = normalizeComponent(
|
|
|
82331
82331
|
},
|
|
82332
82332
|
methods: {
|
|
82333
82333
|
getCustom() {
|
|
82334
|
-
let list = this.layOutData.componentList.filter(item => {
|
|
82335
|
-
if (item.type > 100) {
|
|
82334
|
+
let list = this.layOutData.componentList.filter((item, i) => {
|
|
82335
|
+
if (item.type > 100 && item.displayType == 1) {
|
|
82336
82336
|
item.originalId = this.recordId;
|
|
82337
|
+
item.zIndex = i;
|
|
82337
82338
|
return item;
|
|
82338
82339
|
}
|
|
82339
82340
|
});
|