diff --git a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page-content/coreshop-page-content.vue b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page-content/coreshop-page-content.vue index 7c03905d..9a92d4cd 100644 --- a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page-content/coreshop-page-content.vue +++ b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page-content/coreshop-page-content.vue @@ -19,17 +19,18 @@ const _useLoginStore = useLoginStore(); const props = withDefaults(defineProps<{ - isBack : boolean, - bgColor : string, - titleColor : string, - mode : "left" | "center", - title : string, - isShowStatusBarHeight : boolean; - customStyle : any; - contentStyle : any; - handleCustomRouteJump : () => void | null, - showLoginModalDom : boolean; - placeholder : boolean; + isBack ?: boolean, + bgColor ?: string, + titleColor ?: string, + mode ?: "left" | "center", + title ?: string, + isShowStatusBarHeight ?: boolean; + customStyle ?: any; + contentStyle ?: any; + handleCustomRouteJump ?: () => void, + showLoginModalDom ?: boolean; + placeholder ?: boolean; + }>(), { isBack: true, bgColor: '#eef2f6', @@ -39,7 +40,6 @@ isShowStatusBarHeight: true, customStyle: {}, contentStyle: {}, - handleCustomRouteJump: null, showLoginModalDom: false, placeholder: true, }); diff --git a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-page.vue b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-page.vue index 05e3c4ee..a6b32f99 100644 --- a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-page.vue +++ b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-page.vue @@ -20,26 +20,27 @@