| 1234567891011121314151617181920212223242526272829303132333435 |
- <!-- 课程学习 -->
- <template>
- <view id="courseLearning-web-view">
- <web-view v-if="webViewType" :src="baseUrl + dataText"></web-view>
- </view>
- </template>
- <script>
- export default {
- name: "courseLearning-web-view",
- data() {
- return {
- webViewType: false,
- baseUrl: config.saoCodeTypeUrl,
- dataText:'',
- }
- },
- onLoad(option) {
-
- },
- mounted() {
- },
- methods: {
-
- },
- }
- </script>
- <style lang="stylus" scoped>
- #courseLearning-web-view {
- overflow:scroll;
- }
- </style>
|