index.vue 348 B

1234567891011121314151617181920
  1. <template>
  2. <view>
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. import configService from "@/common/service/config.service";
  8. export default {
  9. name: "index",
  10. data() {
  11. return {
  12. url: configService.apiUrl + '/downloadApp/download.html' // H5页面地址
  13. };
  14. }
  15. }
  16. </script>
  17. <style scoped lang="scss">
  18. </style>