index.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!-- 店铺首页,支持店铺装修 -->
  2. <template>
  3. <view v-if="template">
  4. <s-layout :title="shopName" navbar="normal" :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. ref
  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 PageApi from '@/sheep/api/promotion/page';
  25. // 隐藏原生tabBar
  26. uni.hideTabBar();
  27. const template = ref({})
  28. const shopName = ref('')
  29. // 在此处拦截改变一下首页轮播图 此处先写死后期复活 放到启动函数里
  30. // (async function() {
  31. // console.log('原代码首页定制化数据',template)
  32. // let {
  33. // data
  34. // } = await index2Api.decorate();
  35. // console.log('首页导航配置化过高无法兼容',JSON.parse(data[1].value))
  36. // 改变首页底部数据 但是没有通过数组id获取商品数据接口
  37. // let {
  38. // data: datas
  39. // } = await index2Api.spids();
  40. // template.value.data[9].data.goodsIds = datas.list.map(item => item.id);
  41. // template.value.data[0].data.list = JSON.parse(data[0].value).map(item => {
  42. // return {
  43. // src: item.picUrl,
  44. // url: item.url,
  45. // title: item.name,
  46. // type: "image"
  47. // }
  48. // })
  49. // }())
  50. onLoad(async(options) => {
  51. shopName.value = options.shopName
  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. const { code,data } = await PageApi.getPage({shopId:options.shopId,merchantId:options.merchantId});
  72. console.log(data)
  73. template.value = data.property
  74. });
  75. onPageScroll(() => {});
  76. </script>
  77. <style></style>