index.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!-- 商城首页,支持店铺装修 -->
  2. <template>
  3. <view v-if="template">
  4. <s-layout title="首页" 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 android = computed(() => isAndroid());
  32. // const androidJiGuangId = computed(() => getAndroidJiGuangId());
  33. // const ios = computed(() => ());
  34. // const identifier = window.Android && window.Android.getIdentifier();
  35. // 在此处拦截改变一下首页轮播图 此处先写死后期复活 放到启动函数里
  36. // (async function() {
  37. // console.log('原代码首页定制化数据',template)
  38. // let {
  39. // data
  40. // } = await index2Api.decorate();
  41. // console.log('首页导航配置化过高无法兼容',JSON.parse(data[1].value))
  42. // 改变首页底部数据 但是没有通过数组id获取商品数据接口
  43. // let {
  44. // data: datas
  45. // } = await index2Api.spids();
  46. // template.value.data[9].data.goodsIds = datas.list.map(item => item.id);
  47. // template.value.data[0].data.list = JSON.parse(data[0].value).map(item => {
  48. // return {
  49. // src: item.picUrl,
  50. // url: item.url,
  51. // title: item.name,
  52. // type: "image"
  53. // }
  54. // })
  55. // }())
  56. onLoad((options) => {
  57. // #ifdef MP
  58. // 小程序识别二维码
  59. if (options.scene) {
  60. const sceneParams = decodeURIComponent(options.scene).split('=');
  61. options[sceneParams[0]] = sceneParams[1];
  62. }
  63. // #endif
  64. // 预览模板
  65. if (options.templateId) {
  66. sheep.$store('app').init(options.templateId);
  67. }
  68. // 解析分享信息
  69. if (options.spm) {
  70. $share.decryptSpm(options.spm);
  71. }
  72. // 进入指定页面(完整页面路径)
  73. if (options.page) {
  74. sheep.$router.go(decodeURIComponent(options.page));
  75. }
  76. // 支付成功回到首页,佣金弹窗
  77. if(options.points !== undefined || options.scoialStatus !== undefined){
  78. showWalletModal({points: options.points , socialStatus: options.socialStatus})
  79. }
  80. });
  81. // 下拉刷新
  82. onPullDownRefresh(() => {
  83. sheep.$store('app').init();
  84. setTimeout(function() {
  85. uni.stopPullDownRefresh();
  86. }, 800);
  87. });
  88. onPageScroll(() => {});
  89. </script>
  90. <style></style>