| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="">
- <loading ref="loading" type="3"/>
- <web-view :src="src"></web-view>
- </view>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
- src: ''
- };
- },
- onLoad(options) {
- this.$refs.loading.showLoading()
- this.src=options.url +'?goodsId='+options.goodsId
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss" scoped>
- </style>
|