index.vue 2.5 KB

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