meixioacomponent 0.2.68 → 0.2.69
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.
package/package.json
CHANGED
|
@@ -632,12 +632,14 @@ export default {
|
|
|
632
632
|
if (this.$props.screenList) {
|
|
633
633
|
let _screenListIndexItem =
|
|
634
634
|
this.$props.screenList.list[this.$props.screenList.index];
|
|
635
|
-
result[`keyword`] = this.module;
|
|
636
635
|
result[`${_screenListIndexItem.key}`] = _screenListIndexItem.value;
|
|
637
636
|
}
|
|
638
|
-
|
|
637
|
+
result[`keyword`] = this.module;
|
|
639
638
|
this.proScreenList.forEach((item) => {
|
|
640
|
-
|
|
639
|
+
const { key, value } = item;
|
|
640
|
+
if (typeof value == Number || typeof value == Boolean || value) {
|
|
641
|
+
result[`${key}`] = value;
|
|
642
|
+
}
|
|
641
643
|
});
|
|
642
644
|
result = Object.assign(result, this.$props.pageProps);
|
|
643
645
|
return result;
|