| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="page">
- <web-view
- :src="`https://life.baoxianzhanggui.com/custh5/#/packageF/pages/home/details-channel?productId=${categoryId}`"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- categoryId: "",
- }
- },
- onShow() {
- },
- onLoad(options) {
- this.categoryId = options.productId;
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|