coursewareLearning.vue 517 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!-- 课件学习 -->
  2. <template>
  3. <view id="coursewareLearning-web-view">
  4. <web-view v-if="webViewType" :src="baseUrl + dataText"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name: "coursewareLearning-web-view",
  10. data() {
  11. return {
  12. webViewType: false,
  13. baseUrl: config.saoCodeTypeUrl,
  14. dataText:'',
  15. }
  16. },
  17. onLoad(option) {
  18. },
  19. mounted() {
  20. },
  21. methods: {
  22. },
  23. }
  24. </script>
  25. <style lang="stylus" scoped>
  26. #coursewareLearning-web-view {
  27. overflow:scroll;
  28. }
  29. </style>