locationFilter.vue 423 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="page">
  3. <web-view
  4. :src="`https://life.baoxianzhanggui.com/custh5/#/packageF/pages/home/details-channel?productId=${categoryId}`"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. categoryId: "",
  12. }
  13. },
  14. onShow() {
  15. },
  16. onLoad(options) {
  17. this.categoryId = options.productId;
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. </style>