index.vue 2.3 KB

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