baiqiu-cms-decoration2 1.4.3 → 1.4.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.
|
@@ -82413,7 +82413,10 @@ var simplyText_component = normalizeComponent(
|
|
|
82413
82413
|
methods: {
|
|
82414
82414
|
getCustom() {
|
|
82415
82415
|
let list = this.layOutData.componentList.filter(item => {
|
|
82416
|
-
|
|
82416
|
+
if (item.type > 100) {
|
|
82417
|
+
item.originalId = this.recordId;
|
|
82418
|
+
return item;
|
|
82419
|
+
}
|
|
82417
82420
|
});
|
|
82418
82421
|
return list;
|
|
82419
82422
|
},
|
|
@@ -83457,6 +83460,10 @@ var slideLayout_component = normalizeComponent(
|
|
|
83457
83460
|
},
|
|
83458
83461
|
path: {
|
|
83459
83462
|
type: String
|
|
83463
|
+
},
|
|
83464
|
+
needReport: {
|
|
83465
|
+
type: Boolean,
|
|
83466
|
+
default: true
|
|
83460
83467
|
}
|
|
83461
83468
|
},
|
|
83462
83469
|
data() {
|
|
@@ -83475,6 +83482,7 @@ var slideLayout_component = normalizeComponent(
|
|
|
83475
83482
|
};
|
|
83476
83483
|
},
|
|
83477
83484
|
mounted() {
|
|
83485
|
+
if (!this.needReport) return;
|
|
83478
83486
|
this.$nextTick(() => {
|
|
83479
83487
|
var commom = __webpack_require__("cf45");
|
|
83480
83488
|
commom.scroll(this);
|