Commit 31dd2581 authored by 郭志伟's avatar 郭志伟

fix: 问题调试

parent 532c27cb
...@@ -54,6 +54,11 @@ export default class Activity extends Mixins(TransformStyleMixin, SaMixin) { ...@@ -54,6 +54,11 @@ export default class Activity extends Mixins(TransformStyleMixin, SaMixin) {
if (lastGridItemPoint.w > this.bottomInfo.w) { this.bottomInfo.w = lastGridItemPoint.w; } if (lastGridItemPoint.w > this.bottomInfo.w) { this.bottomInfo.w = lastGridItemPoint.w; }
this.bottomInfo.y = this.bottomInfo.y + lastGridItemPoint.y + lastGridItemPoint.h; this.bottomInfo.y = this.bottomInfo.y + lastGridItemPoint.y + lastGridItemPoint.h;
} }
if (isApp) {
this.$nextTick(() => {
setAppTitleColor(this.pageData.props.titleBgColor);
});
}
} }
@Watch('pageName', { immediate: true }) @Watch('pageName', { immediate: true })
...@@ -79,11 +84,6 @@ export default class Activity extends Mixins(TransformStyleMixin, SaMixin) { ...@@ -79,11 +84,6 @@ export default class Activity extends Mixins(TransformStyleMixin, SaMixin) {
this.targetEle = document.querySelector('body'); this.targetEle = document.querySelector('body');
this.showBackTop = true; this.showBackTop = true;
this.pageVisibilityChange(); this.pageVisibilityChange();
if (isApp) {
this.$nextTick(() => {
setAppTitleColor(this.pageData.props.titleBgColor);
});
}
} }
fetchApi(options) { fetchApi(options) {
const { store, route } = options; const { store, route } = options;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment