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