123456789101112131415161718 |
- <template>
- <web-view :src="url"></web-view>
- </template>
- <script>
- import {h5BaseUrl} from '../utils/config'
- export default {
- data () {
- return {
- url:''
- }
- },
- onLoad(options) {
- const timestamp=new Date().getTime()
- this.url=`${h5BaseUrl}/hzyb/chart/detail?ChartInfoId=${options.chartInfoId}&token=${this.$store.state.user.token}&searchVal=${options.searchVal}&MyChartId=${options.MyChartId}&MyChartClassifyId=${options.MyChartClassifyId}×tamp=${timestamp}`
- }
- }
- </script>
|