index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!-- 商城首页,支持店铺装修 -->
  2. <template>
  3. <view v-if="template">
  4. <s-layout :title="$t('common.home')" navbar="custom" tabbar="/pages/index/index" :bgStyle="template.page"
  5. :navbarStyle="template.style?.navbar" onShareAppMessage>
  6. <s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style">
  7. <s-block-item :type="item.id" :data="item.property" :styles="item.property.style" />
  8. </s-block>
  9. </s-layout>
  10. </view>
  11. </template>
  12. <script setup>
  13. import {
  14. computed
  15. } from 'vue';
  16. import {
  17. onLoad,
  18. onPageScroll,
  19. onPullDownRefresh
  20. } from '@dcloudio/uni-app';
  21. import sheep from '@/sheep';
  22. import $share from '@/sheep/platform/share';
  23. import { isAndroid,getAndroidJiGuangId } from '@/sheep/hooks/useApp'
  24. import {
  25. showWalletModal,
  26. colseWalletModal
  27. } from '@/sheep/hooks/useModal';
  28. // 隐藏原生tabBar
  29. uni.hideTabBar();
  30. const template = computed(() => sheep.$store('app').template?.home);
  31. // const identifier = window.Android && window.Android.getIdentifier();
  32. // 在此处拦截改变一下首页轮播图 此处先写死后期复活 放到启动函数里
  33. // (async function() {
  34. // console.log('原代码首页定制化数据',template)
  35. // let {
  36. // data
  37. // } = await index2Api.decorate();
  38. // console.log('首页导航配置化过高无法兼容',JSON.parse(data[1].value))
  39. // 改变首页底部数据 但是没有通过数组id获取商品数据接口
  40. // let {
  41. // data: datas
  42. // } = await index2Api.spids();
  43. // template.value.data[9].data.goodsIds = datas.list.map(item => item.id);
  44. // template.value.data[0].data.list = JSON.parse(data[0].value).map(item => {
  45. // return {
  46. // src: item.picUrl,
  47. // url: item.url,
  48. // title: item.name,
  49. // type: "image"
  50. // }
  51. // })
  52. // }())
  53. onLoad((options) => {
  54. // #ifdef MP
  55. // 小程序识别二维码
  56. if (options.scene) {
  57. const sceneParams = decodeURIComponent(options.scene).split('=');
  58. options[sceneParams[0]] = sceneParams[1];
  59. }
  60. // #endif
  61. // 预览模板
  62. if (options.templateId) {
  63. sheep.$store('app').init(options.templateId);
  64. }
  65. // 解析分享信息
  66. if (options.spm) {
  67. $share.decryptSpm(options.spm);
  68. }
  69. // 进入指定页面(完整页面路径)
  70. if (options.page) {
  71. sheep.$router.go(decodeURIComponent(options.page));
  72. }
  73. // 支付成功回到首页,佣金弹窗
  74. if(options.points !== undefined || options.scoialStatus !== undefined){
  75. showWalletModal({points: options.points , socialStatus: options.socialStatus})
  76. }
  77. });
  78. // 下拉刷新
  79. onPullDownRefresh(() => {
  80. sheep.$store('app').init();
  81. setTimeout(function() {
  82. uni.stopPullDownRefresh();
  83. }, 800);
  84. });
  85. onPageScroll(() => {});
  86. </script>
  87. <style></style>