| 1234567891011121314151617181920 |
- <template>
- <view>
- <web-view :src="url"></web-view>
- </view>
- </template>
- <script>
- import configService from "@/common/service/config.service";
- export default {
- name: "index",
- data() {
- return {
- url: configService.apiUrl + '/downloadApp/download.html' // H5页面地址
- };
- }
- }
- </script>
- <style scoped lang="scss">
- </style>
|