| xqd
@@ -2,13 +2,14 @@
|
|
|
<app-layout :haveBackground="haveBackground">
|
|
|
<app-my-share
|
|
|
:shareInfo="shareInfo"
|
|
|
- :homePages="homePages"></app-my-share>
|
|
|
+ :tabBarNavs="tabBarNavs"
|
|
|
+ :fixed="shareFixed"></app-my-share>
|
|
|
<app-my-app v-if="config.is_add_app == 1"></app-my-app>
|
|
|
<template v-if="type === 'mall'">
|
|
|
- <app-index @buyProduct="buyProduct" v-if="destroy" :page-hide="pageHide" :home-pages="homePages" :is_storage="is_storage" :theme="themeObject" :page_id="page_id" :is_required="is_required" :coupon_req="coupon_req"></app-index>
|
|
|
+ <app-index @buyProduct="buyProduct" v-if="destroy" :shareFixed="shareFixed" :page-hide="pageHide" :home-pages="homePages" :is_storage="is_storage" :theme="themeObject" :page_id="page_id" :is_required="is_required" :coupon_req="coupon_req"></app-index>
|
|
|
</template>
|
|
|
<template v-else-if="type === 'diy'">
|
|
|
- <app-diy-page @buyProduct="buyProduct" v-if="destroy" :page-hide="pageHide" :home-pages="homePages" :is_storage="is_storage" :theme="getTheme" :page_id="page_id" :is_required="is_required" :coupon_req="coupon_req"></app-diy-page>
|
|
|
+ <app-diy-page @buyProduct="buyProduct" v-if="destroy" :shareFixed="shareFixed" :page-hide="pageHide" :home-pages="homePages" :is_storage="is_storage" :theme="getTheme" :page_id="page_id" :is_required="is_required" :coupon_req="coupon_req"></app-diy-page>
|
|
|
</template>
|
|
|
<app-buy-prompt v-if="config.is_purchase_frame === `1`"></app-buy-prompt>
|
|
|
<app-attr :goods="attrGoods.goods" :attrGroupList="attrGoods.goods.attr_groups" :theme="getTheme" :show="attrGoods.attrShow"></app-attr>
|
| xqd
@@ -52,7 +53,8 @@
|
|
|
goods: {},
|
|
|
attrShow: 0
|
|
|
},
|
|
|
- shareInfo:''
|
|
|
+ shareInfo:'',
|
|
|
+ shareFixed: true,
|
|
|
}
|
|
|
},
|
|
|
|