index.vue 2.7 KB

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